Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 412 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer From | 23628083 | 136 days ago | IN | 0 ETH | 0.00006634 | ||||
| Set Approval For... | 23180605 | 198 days ago | IN | 0 ETH | 0.00003057 | ||||
| Set Approval For... | 22681423 | 268 days ago | IN | 0 ETH | 0.00038487 | ||||
| Set Approval For... | 21809396 | 390 days ago | IN | 0 ETH | 0.00009233 | ||||
| Set Approval For... | 21778635 | 394 days ago | IN | 0 ETH | 0.000044 | ||||
| Set Approval For... | 21778628 | 394 days ago | IN | 0 ETH | 0.00006999 | ||||
| Safe Transfer Fr... | 21536799 | 428 days ago | IN | 0 ETH | 0.00172349 | ||||
| Safe Transfer Fr... | 20757339 | 537 days ago | IN | 0 ETH | 0.00029114 | ||||
| Set Approval For... | 20175680 | 618 days ago | IN | 0 ETH | 0.00020304 | ||||
| Set Approval For... | 20061748 | 634 days ago | IN | 0 ETH | 0.00083298 | ||||
| Set Approval For... | 19885091 | 659 days ago | IN | 0 ETH | 0.00021487 | ||||
| Safe Transfer Fr... | 19885084 | 659 days ago | IN | 0 ETH | 0.00056496 | ||||
| Set Approval For... | 19339452 | 735 days ago | IN | 0 ETH | 0.00211218 | ||||
| Set Approval For... | 18691670 | 826 days ago | IN | 0 ETH | 0.00227578 | ||||
| Set Approval For... | 18650744 | 832 days ago | IN | 0 ETH | 0.00097192 | ||||
| Set Approval For... | 18540759 | 847 days ago | IN | 0 ETH | 0.00140859 | ||||
| Safe Transfer Fr... | 18533776 | 848 days ago | IN | 0 ETH | 0.00368609 | ||||
| Safe Transfer Fr... | 18533773 | 848 days ago | IN | 0 ETH | 0.00365965 | ||||
| Set Approval For... | 18070132 | 913 days ago | IN | 0 ETH | 0.0005389 | ||||
| Set Approval For... | 18070093 | 913 days ago | IN | 0 ETH | 0.00049082 | ||||
| Set Approval For... | 17947372 | 930 days ago | IN | 0 ETH | 0.00029822 | ||||
| Set Approval For... | 17896843 | 937 days ago | IN | 0 ETH | 0.00058055 | ||||
| Set Approval For... | 17721028 | 962 days ago | IN | 0 ETH | 0.00209404 | ||||
| Set Approval For... | 17693294 | 966 days ago | IN | 0 ETH | 0.00102102 | ||||
| Set Approval For... | 17402748 | 1007 days ago | IN | 0 ETH | 0.00094431 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
XPlanet
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT
//solhint-disable no-empty-blocks
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract XPlanet is ERC721Enumerable, Ownable {
using Strings for uint256;
using SafeERC20 for IERC20;
IERC20 usdc;
mapping(address => uint256) private maxMintsPerAddress;
mapping(address => mapping(uint256 => uint256)) private holdingStart;
address[] public teamPayments = [
0x509F082695496a07e577965D0F5C48A8bD288d4f, // Founder
0x9444E845311c0d247eaE0FE0122E53Ffec357848 // Dev2,
];
uint256[] public teamPaymentShares = [
980, // Founder: 98%
20 // Dev: 2%
];
uint256 public MINT_PRICE = 1000;
uint256 public constant MAX_SUPPLY = 888;
uint256 public constant MAX_WHITELIST_MINT = 3;
uint256 public MAX_PUBLIC_MINT = 3;
uint256 public MAX_MINT_PHASE = 444;
bool public whitelistSale = false;
bool public publicSale = false;
bool public phase2Active = false;
bool public isBaseURILocked = false;
string private baseURI;
bytes32 public whitelistMerkleRoot;
bytes32 public whitelist2MerkleRoot;
bytes32 public reservedlistMerkleRoot;
constructor(address _usdc, string memory _name, string memory _symbol) ERC721( _name, _symbol) {
usdc = IERC20(_usdc);
}
function setPrice(uint256 _price ) external onlyOwner{
MINT_PRICE = _price;
}
function setMaxMintPhase(uint256 _qty ) external onlyOwner{
MAX_MINT_PHASE = _qty;
}
function updateWhitelistMerkleRoot(bytes32 _newMerkleRoot)
external
onlyOwner{
whitelistMerkleRoot = _newMerkleRoot;
}
function updateWhitelist2MerkleRoot(bytes32 _newMerkleRoot)
external
onlyOwner{
whitelist2MerkleRoot = _newMerkleRoot;
}
function updateReservedlistMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner{
reservedlistMerkleRoot = _newMerkleRoot;
}
function setBaseURI(string memory newURI) public onlyOwner {
require(!isBaseURILocked, "locked-base-uri");
baseURI = newURI;
}
function flipSaleState() external onlyOwner {
publicSale = !publicSale;
}
function flipWhitelistState() external onlyOwner {
whitelistSale = !whitelistSale;
}
function flipPhase2State() external onlyOwner {
phase2Active = !phase2Active;
}
function balanceOfUsdc(address _address) public view returns (uint256){
return usdc.balanceOf(_address);
}
function allowed() external view returns (uint256){
return usdc.allowance(address(this), msg.sender);
}
function allow(uint256 _price ) external returns (address){
usdc.approve(address(this), _price );
return msg.sender;
}
function withdraw() external onlyOwner{
uint _balance = usdc.balanceOf(address(this));
for (uint256 i = 0; i < teamPayments.length; i++) {
uint256 _shares = (_balance / 1000) * teamPaymentShares[i];
uint256 _currentBalance = usdc.balanceOf(address(this));
_shares = (_shares < _currentBalance) ? _shares : _currentBalance;
usdc.transfer( teamPayments[i], _shares);
}
}
function getSmartContractBalance() external view returns(uint) {
return usdc.balanceOf(address(this));
}
function isContract(address account) internal view returns (bool) {
uint256 size;
assembly { size := extcodesize(account) }
return size > 0;
}
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(_exists(tokenId), "non-existent-token");
string memory _base = _baseURI();
return string(abi.encodePacked(_base, tokenId.toString()));
}
// Allow minting to everyone. Phase 1. Max 444
function publicMint(uint256 _numberOfTokens) external {
address _user = _msgSender();
uint256 _amount = MINT_PRICE * _numberOfTokens * 1000000;
require(publicSale, "sale-not-active");
require( totalSupply() + _numberOfTokens <= MAX_SUPPLY, "max-supply-reached" );
require( totalSupply() + _numberOfTokens <= MAX_MINT_PHASE, "max-supply-reached" );
require( balanceOfUsdc(_user) >= _amount, "not-enough-usdc" );
require( !isContract(_user), "mint-via-contract");
require( _numberOfTokens > 0 && _numberOfTokens <= MAX_PUBLIC_MINT, "mint-number-out-of-range" );
require( maxMintsPerAddress[_user] + _numberOfTokens <= MAX_PUBLIC_MINT, "max-mint-limit" );
usdc.transferFrom(_user, address(this), _amount );
for (uint256 i = 0; i < _numberOfTokens; i++) {
if (totalSupply() < MAX_MINT_PHASE) {
_safeMint(_user, totalSupply());
maxMintsPerAddress[_user]++;
} else {
usdc.transfer( _user, (_numberOfTokens - i) * MINT_PRICE * 1000000 );
break;
}
}
}
// Allow minting to whitelisted addresses only. Phase 1. Max 444
function whitelistMint(uint256 _numberOfTokens, bytes32[] calldata merkleProof ) external {
address _user = _msgSender();
uint256 _amount = MINT_PRICE * _numberOfTokens * 1000000;
require(whitelistSale, "sale-not-active");
require( totalSupply() + _numberOfTokens <= MAX_SUPPLY, "max-supply-reached" );
require( balanceOfUsdc(_user) >= _amount, "not-enough-usdc" );
require( !isContract(_user), "mint-via-contract" );
require( totalSupply() + _numberOfTokens <= MAX_MINT_PHASE, "max-supply-reached" );
require( maxMintsPerAddress[_user] + _numberOfTokens <= MAX_WHITELIST_MINT, "max-mint-limit" );
bool isWhitelisted = MerkleProof.verify(
merkleProof,
whitelistMerkleRoot,
keccak256(abi.encodePacked(_user))
);
require( isWhitelisted, "invalid-proof");
usdc.transferFrom(_user, address(this), _amount );
for (uint256 i = 0; i < _numberOfTokens; i++) {
if (totalSupply() < MAX_MINT_PHASE) {
_safeMint(_user, totalSupply());
maxMintsPerAddress[_user]++;
} else {
usdc.transfer( _user, (_numberOfTokens - i) * MINT_PRICE * 1000000 );
break;
}
}
}
// Allow minting to reserved people only (crew)
function reservedMint(uint256 _numberOfTokens, bytes32[] calldata merkleProof ) external {
address _user = _msgSender();
require( !isContract(_user), "mint-via-contract" );
require( totalSupply() + _numberOfTokens <= MAX_SUPPLY, "max-supply-reached" );
bool isWhitelisted = MerkleProof.verify( merkleProof, reservedlistMerkleRoot, keccak256(abi.encodePacked(_user)) );
require( isWhitelisted, "invalid-proof" );
for (uint256 i = 0; i < _numberOfTokens; i++) {
if (totalSupply() < MAX_SUPPLY) {
_safeMint(_user, totalSupply());
maxMintsPerAddress[_user]++;
} else {
break;
}
}
}
// Allow minting to whitelisted only. Phase 2
function mint( bytes32[] calldata merkleProof ) external {
address _user = _msgSender();
uint256 _amount = MINT_PRICE * 1000000;
require( phase2Active, "sale-not-active");
require( balanceOfUsdc(_user) >= _amount, "not-enough-usdc" );
require( !isContract(_user), "mint-via-contract" );
require( totalSupply() + 1 <= MAX_SUPPLY, "max-supply-reached" );
require( maxMintsPerAddress[_user] == 0, "max-mint-limit" );
bool isWhitelisted = MerkleProof.verify( merkleProof, whitelist2MerkleRoot, keccak256(abi.encodePacked(_user)) );
require( isWhitelisted, "invalid-proof");
usdc.transferFrom(_user, address(this), _amount);
_safeMint(_user, totalSupply());
maxMintsPerAddress[_user]++;
}
function airDrop( uint256 _numberOfTokens, address _user ) public onlyOwner{
require( totalSupply() + _numberOfTokens <= MAX_SUPPLY, "max-supply-reached" );
require( !isContract(_user), "mint-via-contract" );
for (uint256 i = 0; i < _numberOfTokens; i++) {
if (totalSupply() < MAX_SUPPLY) {
_safeMint(_user, totalSupply());
} else {
break;
}
}
}
// STACKING
function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override {
holdingStart[from][tokenId] = 0;
holdingStart[to][tokenId] = block.timestamp;
super._beforeTokenTransfer(from, to, tokenId);
}
function holdingTime(address _owner, uint256 _tokenId) external view returns (uint256 _time) {
if (holdingStart[_owner][_tokenId] == 0) return 0;
_time = block.timestamp - holdingStart[_owner][_tokenId];
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
* consuming from one or the other at each step according to the instructions given by
* `proofFlags`.
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}{
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"optimizer": {
"enabled": true,
"runs": 1000
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_usdc","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","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":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"allow","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"balanceOfUsdc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPhase2State","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSmartContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"holdingTime","outputs":[{"internalType":"uint256","name":"_time","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":"isBaseURILocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"setMaxMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"teamPaymentShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"teamPayments","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateReservedlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateWhitelist2MerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelist2MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405273509f082695496a07e577965d0f5c48a8bd288d4f6080908152739444e845311c0d247eae0fe0122e53ffec35784860a0526200004690600e90600262000186565b50604080518082019091526103d48152601460208201526200006d90600f906002620001f0565b506103e860105560036011556101bc6012556013805463ffffffff191690553480156200009957600080fd5b5060405162003b0738038062003b07833981016040819052620000bc9162000395565b815182908290620000d590600090602085019062000234565b508051620000eb90600190602084019062000234565b50505062000108620001026200013060201b60201c565b62000134565b5050600b80546001600160a01b0319166001600160a01b03929092169190911790556200045c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620001de579160200282015b82811115620001de57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620001a7565b50620001ec929150620002b1565b5090565b828054828255906000526020600020908101928215620001de579160200282015b82811115620001de578251829061ffff1690559160200191906001019062000211565b82805462000242906200041f565b90600052602060002090601f016020900481019282620002665760008555620001de565b82601f106200028157805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de57825182559160200191906001019062000294565b5b80821115620001ec5760008155600101620002b2565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002f057600080fd5b81516001600160401b03808211156200030d576200030d620002c8565b604051601f8301601f19908116603f01168101908282118183101715620003385762000338620002c8565b816040528381526020925086838588010111156200035557600080fd5b600091505b838210156200037957858201830151818301840152908201906200035a565b838211156200038b5760008385830101525b9695505050505050565b600080600060608486031215620003ab57600080fd5b83516001600160a01b0381168114620003c357600080fd5b60208501519093506001600160401b0380821115620003e157600080fd5b620003ef87838801620002de565b935060408601519150808211156200040657600080fd5b506200041586828701620002de565b9150509250925092565b600181811c908216806200043457607f821691505b602082108114156200045657634e487b7160e01b600052602260045260246000fd5b50919050565b61369b806200046c6000396000f3fe608060405234801561001057600080fd5b50600436106103575760003560e01c8063710821d0116101c8578063b88d4fde11610104578063d2cab056116100a2578063e83588311161007c578063e835883114610689578063e985e9c51461069c578063f2fde38b146106d8578063f6fa26ab146106eb57600080fd5b8063d2cab05614610650578063d8a64bf314610663578063ddad12a01461067657600080fd5b8063c002d23d116100de578063c002d23d14610623578063c08dfd3c1461062c578063c87b56dd14610634578063cc7e643e1461064757600080fd5b8063b88d4fde146105f4578063ba29acfd14610607578063ba70e0751461061a57600080fd5b806395d89b4111610171578063aa98e0c61161014b578063aa98e0c6146105b2578063aecbabf8146105bb578063aed38015146105ce578063b77a147b146105e157600080fd5b806395d89b4114610584578063a22cb4651461058c578063a6ba15be1461059f57600080fd5b806378f1fefc116101a257806378f1fefc1461054c5780638da5cb5b1461056057806391b7f5ed1461057157600080fd5b8063710821d01461051e578063715018a614610531578063722221c51461053957600080fd5b806333bc1c5c116102975780634f6ccce7116102405780636352211e1161021a5780636352211e146104dc57806365f13097146104ef5780636957637b146104f857806370a082311461050b57600080fd5b80634f6ccce7146104ae5780635145cbc0146104c157806355f804b3146104c957600080fd5b80634211d377116102715780634211d3771461048a57806342842e0e1461049257806347e4502e146104a557600080fd5b806333bc1c5c1461046857806334918dfd1461047a5780633ccfd60b1461048257600080fd5b80631f0e3bde116103045780632db11544116102de5780632db115441461042c5780632f745c591461043f57806331ffd6f11461045257806332cb6b0c1461045f57600080fd5b80631f0e3bde146103f357806321b810631461040657806323b872dd1461041957600080fd5b8063095ea7b311610335578063095ea7b3146103c457806318160ddd146103d957806319e1fca4146103eb57600080fd5b806301ffc9a71461035c57806306fdde0314610384578063081812fc14610399575b600080fd5b61036f61036a36600461307f565b6106f3565b60405190151581526020015b60405180910390f35b61038c610737565b60405161037b91906130f4565b6103ac6103a7366004613107565b6107c9565b6040516001600160a01b03909116815260200161037b565b6103d76103d236600461313c565b6107f0565b005b6008545b60405190815260200161037b565b6103dd610927565b6103d7610401366004613107565b6109c8565b6103ac610414366004613107565b6109d5565b6103d7610427366004613166565b610a7b565b6103d761043a366004613107565b610b02565b6103dd61044d36600461313c565b610f2e565b60135461036f9060ff1681565b6103dd61037881565b60135461036f90610100900460ff1681565b6103d7610fd6565b6103d7610ffb565b6103d761122b565b6103d76104a0366004613166565b611252565b6103dd60125481565b6103dd6104bc366004613107565b61126d565b6103dd611311565b6103d76104d736600461322e565b611342565b6103ac6104ea366004613107565b6113b7565b6103dd60115481565b6103d7610506366004613107565b61141c565b6103dd610519366004613277565b611429565b6103d761052c3660046132de565b6114c3565b6103d7611690565b6103dd610547366004613277565b6116a4565b60135461036f906301000000900460ff1681565b600a546001600160a01b03166103ac565b6103d761057f366004613107565b611722565b61038c61172f565b6103d761059a366004613338565b61173e565b6103ac6105ad366004613107565b611749565b6103dd60155481565b6103d76105c9366004613107565b611773565b6103d76105dc36600461336f565b611780565b6103d76105ef36600461339b565b611861565b6103d76106023660046133dd565b611b6c565b6103d7610615366004613107565b611bf4565b6103dd60165481565b6103dd60105481565b6103dd600381565b61038c610642366004613107565b611c01565b6103dd60175481565b6103d761065e3660046132de565b611ca6565b60135461036f9062010000900460ff1681565b6103dd61068436600461313c565b61210e565b6103dd610697366004613107565b612173565b61036f6106aa366004613459565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103d76106e6366004613277565b612194565b6103d7612224565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610731575061073182612240565b92915050565b60606000805461074690613483565b80601f016020809104026020016040519081016040528092919081815260200182805461077290613483565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b60006107d4826122db565b506000908152600460205260409020546001600160a01b031690565b60006107fb826113b7565b9050806001600160a01b0316836001600160a01b0316141561088a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806108a657506108a681336106aa565b6109185760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610881565b610922838361233f565b505050565b600b546040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201523360248201526000916001600160a01b03169063dd62ed3e906044015b60206040518083038186803b15801561098b57600080fd5b505afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c391906134be565b905090565b6109d06123ba565b601255565b600b546040517f095ea7b3000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000916001600160a01b03169063095ea7b390604401602060405180830381600087803b158015610a3b57600080fd5b505af1158015610a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7391906134d7565b503392915050565b610a853382612414565b610af75760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610881565b610922838383612493565b6010543390600090610b1590849061350a565b610b2290620f424061350a565b601354909150610100900460ff16610b6e5760405162461bcd60e51b815260206004820152600f60248201526e73616c652d6e6f742d61637469766560881b6044820152606401610881565b61037883610b7b60085490565b610b859190613529565b1115610bc85760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b60125483610bd560085490565b610bdf9190613529565b1115610c225760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b80610c2c836116a4565b1015610c6c5760405162461bcd60e51b815260206004820152600f60248201526e6e6f742d656e6f7567682d7573646360881b6044820152606401610881565b813b15610caf5760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b600083118015610cc157506011548311155b610d0d5760405162461bcd60e51b815260206004820152601860248201527f6d696e742d6e756d6265722d6f75742d6f662d72616e676500000000000000006044820152606401610881565b6011546001600160a01b0383166000908152600c6020526040902054610d34908590613529565b1115610d735760405162461bcd60e51b815260206004820152600e60248201526d1b585e0b5b5a5b9d0b5b1a5b5a5d60921b6044820152606401610881565b600b546040516323b872dd60e01b81526001600160a01b03848116600483015230602483015260448201849052909116906323b872dd90606401602060405180830381600087803b158015610dc757600080fd5b505af1158015610ddb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dff91906134d7565b5060005b83811015610f28576012546008541015610e5757610e2983610e2460085490565b612678565b6001600160a01b0383166000908152600c60205260408120805491610e4d83613541565b9190505550610f16565b600b546010546001600160a01b039091169063a9059cbb908590610e7b858961355c565b610e85919061350a565b610e9290620f424061350a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610ed857600080fd5b505af1158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1091906134d7565b50610f28565b80610f2081613541565b915050610e03565b50505050565b6000610f3983611429565b8210610fad5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610881565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610fde6123ba565b6013805461ff001981166101009182900460ff1615909102179055565b6110036123ba565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561104757600080fd5b505afa15801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f91906134be565b905060005b600e54811015611227576000600f82815481106110a3576110a3613573565b90600052602060002001546103e8846110bc919061359f565b6110c6919061350a565b600b546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561110f57600080fd5b505afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114791906134be565b90508082106111565780611158565b815b600b54600e80549294506001600160a01b039091169163a9059cbb91908690811061118557611185613573565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b03909116600482015260248101859052604401602060405180830381600087803b1580156111d957600080fd5b505af11580156111ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121191906134d7565b505050808061121f90613541565b915050611084565b5050565b6112336123ba565b6013805462ff0000198116620100009182900460ff1615909102179055565b61092283838360405180602001604052806000815250611b6c565b600061127860085490565b82106112ec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610881565b600882815481106112ff576112ff613573565b90600052602060002001549050919050565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401610973565b61134a6123ba565b6013546301000000900460ff16156113a45760405162461bcd60e51b815260206004820152600f60248201527f6c6f636b65642d626173652d75726900000000000000000000000000000000006044820152606401610881565b8051611227906014906020840190612fd0565b6000818152600260205260408120546001600160a01b0316806107315760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610881565b6114246123ba565b601555565b60006001600160a01b0382166114a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610881565b506001600160a01b031660009081526003602052604090205490565b33803b156115075760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b6103788461151460085490565b61151e9190613529565b11156115615760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b60006115da848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017546040516bffffffffffffffffffffffff19606089901b16602082015290925060340190505b60405160208183030381529060405280519060200120612692565b9050806116195760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b216b83937b7b360991b6044820152606401610881565b60005b858110156116885761037861163060085490565b10156116715761164383610e2460085490565b6001600160a01b0383166000908152600c6020526040812080549161166783613541565b9190505550611676565b611688565b8061168081613541565b91505061161c565b505050505050565b6116986123ba565b6116a260006126a8565b565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b1580156116ea57600080fd5b505afa1580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073191906134be565b61172a6123ba565b601055565b60606001805461074690613483565b611227338383612707565b600e818154811061175957600080fd5b6000918252602090912001546001600160a01b0316905081565b61177b6123ba565b601655565b6117886123ba565b6103788261179560085490565b61179f9190613529565b11156117e25760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b803b156118255760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b60005b828110156109225761037861183c60085490565b10156109225761184f82610e2460085490565b8061185981613541565b915050611828565b601054339060009061187690620f424061350a565b60135490915062010000900460ff166118c35760405162461bcd60e51b815260206004820152600f60248201526e73616c652d6e6f742d61637469766560881b6044820152606401610881565b806118cd836116a4565b101561190d5760405162461bcd60e51b815260206004820152600f60248201526e6e6f742d656e6f7567682d7573646360881b6044820152606401610881565b813b156119505760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b61037861195c60085490565b611967906001613529565b11156119aa5760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b6001600160a01b0382166000908152600c602052604090205415611a015760405162461bcd60e51b815260206004820152600e60248201526d1b585e0b5b5a5b9d0b5b1a5b5a5d60921b6044820152606401610881565b6000611a63858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016546040516bffffffffffffffffffffffff1960608a901b16602082015290925060340190506115bf565b905080611aa25760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b216b83937b7b360991b6044820152606401610881565b600b546040516323b872dd60e01b81526001600160a01b03858116600483015230602483015260448201859052909116906323b872dd90606401602060405180830381600087803b158015611af657600080fd5b505af1158015611b0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2e91906134d7565b50611b3c83610e2460085490565b6001600160a01b0383166000908152600c60205260408120805491611b6083613541565b91905055505050505050565b611b763383612414565b611be85760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610881565b610f28848484846127d6565b611bfc6123ba565b601755565b6000818152600260205260409020546060906001600160a01b0316611c685760405162461bcd60e51b815260206004820152601260248201527f6e6f6e2d6578697374656e742d746f6b656e00000000000000000000000000006044820152606401610881565b6000611c72612854565b905080611c7e84612863565b604051602001611c8f9291906135b3565b604051602081830303815290604052915050919050565b6010543390600090611cb990869061350a565b611cc690620f424061350a565b60135490915060ff16611d0d5760405162461bcd60e51b815260206004820152600f60248201526e73616c652d6e6f742d61637469766560881b6044820152606401610881565b61037885611d1a60085490565b611d249190613529565b1115611d675760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b80611d71836116a4565b1015611db15760405162461bcd60e51b815260206004820152600f60248201526e6e6f742d656e6f7567682d7573646360881b6044820152606401610881565b813b15611df45760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b60125485611e0160085490565b611e0b9190613529565b1115611e4e5760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b6001600160a01b0382166000908152600c6020526040902054600390611e75908790613529565b1115611eb45760405162461bcd60e51b815260206004820152600e60248201526d1b585e0b5b5a5b9d0b5b1a5b5a5d60921b6044820152606401610881565b6000611f16858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff1960608a901b16602082015290925060340190506115bf565b905080611f555760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b216b83937b7b360991b6044820152606401610881565b600b546040516323b872dd60e01b81526001600160a01b03858116600483015230602483015260448201859052909116906323b872dd90606401602060405180830381600087803b158015611fa957600080fd5b505af1158015611fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe191906134d7565b5060005b868110156121055760125460085410156120345761200684610e2460085490565b6001600160a01b0384166000908152600c6020526040812080549161202a83613541565b91905055506120f3565b600b546010546001600160a01b039091169063a9059cbb908690612058858c61355c565b612062919061350a565b61206f90620f424061350a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156120b557600080fd5b505af11580156120c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ed91906134d7565b50612105565b806120fd81613541565b915050611fe5565b50505050505050565b6001600160a01b0382166000908152600d6020908152604080832084845290915281205461213e57506000610731565b6001600160a01b0383166000908152600d6020908152604080832085845290915290205461216c904261355c565b9392505050565b600f818154811061218357600080fd5b600091825260209091200154905081565b61219c6123ba565b6001600160a01b0381166122185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610881565b612221816126a8565b50565b61222c6123ba565b6013805460ff19811660ff90911615179055565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806122a357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610731565b6000818152600260205260409020546001600160a01b03166122215760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610881565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612381826113b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b031633146116a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610881565b600080612420836113b7565b9050806001600160a01b0316846001600160a01b0316148061246757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061248b5750836001600160a01b0316612480846107c9565b6001600160a01b0316145b949350505050565b826001600160a01b03166124a6826113b7565b6001600160a01b0316146125225760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610881565b6001600160a01b03821661259d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610881565b6125a8838383612995565b6125b360008261233f565b6001600160a01b03831660009081526003602052604081208054600192906125dc90849061355c565b90915550506001600160a01b038216600090815260036020526040812080546001929061260a908490613529565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112278282604051806020016040528060008152506129db565b60008261269f8584612a59565b14949350505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156127695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610881565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6127e1848484612493565b6127ed84848484612aa6565b610f285760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610881565b60606014805461074690613483565b6060816128a357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156128cd57806128b781613541565b91506128c69050600a8361359f565b91506128a7565b60008167ffffffffffffffff8111156128e8576128e86131a2565b6040519080825280601f01601f191660200182016040528015612912576020820181803683370190505b5090505b841561248b5761292760018361355c565b9150612934600a866135e2565b61293f906030613529565b60f81b81838151811061295457612954613573565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061298e600a8661359f565b9450612916565b6001600160a01b038084166000908152600d6020818152604080842086855282528084208490559386168352908152828220848352905220429055610922838383612bfe565b6129e58383612cb6565b6129f26000848484612aa6565b6109225760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610881565b600081815b8451811015612a9e57612a8a82868381518110612a7d57612a7d613573565b6020026020010151612e11565b915080612a9681613541565b915050612a5e565b509392505050565b60006001600160a01b0384163b15612bf357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612aea9033908990889088906004016135f6565b602060405180830381600087803b158015612b0457600080fd5b505af1925050508015612b34575060408051601f3d908101601f19168201909252612b3191810190613632565b60015b612bd9573d808015612b62576040519150601f19603f3d011682016040523d82523d6000602084013e612b67565b606091505b508051612bd15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610881565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061248b565b506001949350505050565b6001600160a01b038316612c5957612c5481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612c7c565b816001600160a01b0316836001600160a01b031614612c7c57612c7c8382612e40565b6001600160a01b038216612c935761092281612edd565b826001600160a01b0316826001600160a01b031614610922576109228282612f8c565b6001600160a01b038216612d0c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610881565b6000818152600260205260409020546001600160a01b031615612d715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610881565b612d7d60008383612995565b6001600160a01b0382166000908152600360205260408120805460019290612da6908490613529565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310612e2d57600082815260208490526040902061216c565b600083815260208390526040902061216c565b60006001612e4d84611429565b612e57919061355c565b600083815260076020526040902054909150808214612eaa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612eef9060019061355c565b60008381526009602052604081205460088054939450909284908110612f1757612f17613573565b906000526020600020015490508060088381548110612f3857612f38613573565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f7057612f7061364f565b6001900381819060005260206000200160009055905550505050565b6000612f9783611429565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612fdc90613483565b90600052602060002090601f016020900481019282612ffe5760008555613044565b82601f1061301757805160ff1916838001178555613044565b82800160010185558215613044579182015b82811115613044578251825591602001919060010190613029565b50613050929150613054565b5090565b5b808211156130505760008155600101613055565b6001600160e01b03198116811461222157600080fd5b60006020828403121561309157600080fd5b813561216c81613069565b60005b838110156130b757818101518382015260200161309f565b83811115610f285750506000910152565b600081518084526130e081602086016020860161309c565b601f01601f19169290920160200192915050565b60208152600061216c60208301846130c8565b60006020828403121561311957600080fd5b5035919050565b80356001600160a01b038116811461313757600080fd5b919050565b6000806040838503121561314f57600080fd5b61315883613120565b946020939093013593505050565b60008060006060848603121561317b57600080fd5b61318484613120565b925061319260208501613120565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156131d3576131d36131a2565b604051601f8501601f19908116603f011681019082821181831017156131fb576131fb6131a2565b8160405280935085815286868601111561321457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561324057600080fd5b813567ffffffffffffffff81111561325757600080fd5b8201601f8101841361326857600080fd5b61248b848235602084016131b8565b60006020828403121561328957600080fd5b61216c82613120565b60008083601f8401126132a457600080fd5b50813567ffffffffffffffff8111156132bc57600080fd5b6020830191508360208260051b85010111156132d757600080fd5b9250929050565b6000806000604084860312156132f357600080fd5b83359250602084013567ffffffffffffffff81111561331157600080fd5b61331d86828701613292565b9497909650939450505050565b801515811461222157600080fd5b6000806040838503121561334b57600080fd5b61335483613120565b915060208301356133648161332a565b809150509250929050565b6000806040838503121561338257600080fd5b8235915061339260208401613120565b90509250929050565b600080602083850312156133ae57600080fd5b823567ffffffffffffffff8111156133c557600080fd5b6133d185828601613292565b90969095509350505050565b600080600080608085870312156133f357600080fd5b6133fc85613120565b935061340a60208601613120565b925060408501359150606085013567ffffffffffffffff81111561342d57600080fd5b8501601f8101871361343e57600080fd5b61344d878235602084016131b8565b91505092959194509250565b6000806040838503121561346c57600080fd5b61347583613120565b915061339260208401613120565b600181811c9082168061349757607f821691505b602082108114156134b857634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156134d057600080fd5b5051919050565b6000602082840312156134e957600080fd5b815161216c8161332a565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613524576135246134f4565b500290565b6000821982111561353c5761353c6134f4565b500190565b6000600019821415613555576135556134f4565b5060010190565b60008282101561356e5761356e6134f4565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826135ae576135ae613589565b500490565b600083516135c581846020880161309c565b8351908301906135d981836020880161309c565b01949350505050565b6000826135f1576135f1613589565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261362860808301846130c8565b9695505050505050565b60006020828403121561364457600080fd5b815161216c81613069565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203ff66f943effedfdb20b5997b7cb055c744f7ec57c92f5e320b4d82368248c2a64736f6c63430008090033000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000c582d506c616e6574204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000758504c414e455400000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103575760003560e01c8063710821d0116101c8578063b88d4fde11610104578063d2cab056116100a2578063e83588311161007c578063e835883114610689578063e985e9c51461069c578063f2fde38b146106d8578063f6fa26ab146106eb57600080fd5b8063d2cab05614610650578063d8a64bf314610663578063ddad12a01461067657600080fd5b8063c002d23d116100de578063c002d23d14610623578063c08dfd3c1461062c578063c87b56dd14610634578063cc7e643e1461064757600080fd5b8063b88d4fde146105f4578063ba29acfd14610607578063ba70e0751461061a57600080fd5b806395d89b4111610171578063aa98e0c61161014b578063aa98e0c6146105b2578063aecbabf8146105bb578063aed38015146105ce578063b77a147b146105e157600080fd5b806395d89b4114610584578063a22cb4651461058c578063a6ba15be1461059f57600080fd5b806378f1fefc116101a257806378f1fefc1461054c5780638da5cb5b1461056057806391b7f5ed1461057157600080fd5b8063710821d01461051e578063715018a614610531578063722221c51461053957600080fd5b806333bc1c5c116102975780634f6ccce7116102405780636352211e1161021a5780636352211e146104dc57806365f13097146104ef5780636957637b146104f857806370a082311461050b57600080fd5b80634f6ccce7146104ae5780635145cbc0146104c157806355f804b3146104c957600080fd5b80634211d377116102715780634211d3771461048a57806342842e0e1461049257806347e4502e146104a557600080fd5b806333bc1c5c1461046857806334918dfd1461047a5780633ccfd60b1461048257600080fd5b80631f0e3bde116103045780632db11544116102de5780632db115441461042c5780632f745c591461043f57806331ffd6f11461045257806332cb6b0c1461045f57600080fd5b80631f0e3bde146103f357806321b810631461040657806323b872dd1461041957600080fd5b8063095ea7b311610335578063095ea7b3146103c457806318160ddd146103d957806319e1fca4146103eb57600080fd5b806301ffc9a71461035c57806306fdde0314610384578063081812fc14610399575b600080fd5b61036f61036a36600461307f565b6106f3565b60405190151581526020015b60405180910390f35b61038c610737565b60405161037b91906130f4565b6103ac6103a7366004613107565b6107c9565b6040516001600160a01b03909116815260200161037b565b6103d76103d236600461313c565b6107f0565b005b6008545b60405190815260200161037b565b6103dd610927565b6103d7610401366004613107565b6109c8565b6103ac610414366004613107565b6109d5565b6103d7610427366004613166565b610a7b565b6103d761043a366004613107565b610b02565b6103dd61044d36600461313c565b610f2e565b60135461036f9060ff1681565b6103dd61037881565b60135461036f90610100900460ff1681565b6103d7610fd6565b6103d7610ffb565b6103d761122b565b6103d76104a0366004613166565b611252565b6103dd60125481565b6103dd6104bc366004613107565b61126d565b6103dd611311565b6103d76104d736600461322e565b611342565b6103ac6104ea366004613107565b6113b7565b6103dd60115481565b6103d7610506366004613107565b61141c565b6103dd610519366004613277565b611429565b6103d761052c3660046132de565b6114c3565b6103d7611690565b6103dd610547366004613277565b6116a4565b60135461036f906301000000900460ff1681565b600a546001600160a01b03166103ac565b6103d761057f366004613107565b611722565b61038c61172f565b6103d761059a366004613338565b61173e565b6103ac6105ad366004613107565b611749565b6103dd60155481565b6103d76105c9366004613107565b611773565b6103d76105dc36600461336f565b611780565b6103d76105ef36600461339b565b611861565b6103d76106023660046133dd565b611b6c565b6103d7610615366004613107565b611bf4565b6103dd60165481565b6103dd60105481565b6103dd600381565b61038c610642366004613107565b611c01565b6103dd60175481565b6103d761065e3660046132de565b611ca6565b60135461036f9062010000900460ff1681565b6103dd61068436600461313c565b61210e565b6103dd610697366004613107565b612173565b61036f6106aa366004613459565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103d76106e6366004613277565b612194565b6103d7612224565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610731575061073182612240565b92915050565b60606000805461074690613483565b80601f016020809104026020016040519081016040528092919081815260200182805461077290613483565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b60006107d4826122db565b506000908152600460205260409020546001600160a01b031690565b60006107fb826113b7565b9050806001600160a01b0316836001600160a01b0316141561088a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806108a657506108a681336106aa565b6109185760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610881565b610922838361233f565b505050565b600b546040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201523360248201526000916001600160a01b03169063dd62ed3e906044015b60206040518083038186803b15801561098b57600080fd5b505afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c391906134be565b905090565b6109d06123ba565b601255565b600b546040517f095ea7b3000000000000000000000000000000000000000000000000000000008152306004820152602481018390526000916001600160a01b03169063095ea7b390604401602060405180830381600087803b158015610a3b57600080fd5b505af1158015610a4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7391906134d7565b503392915050565b610a853382612414565b610af75760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610881565b610922838383612493565b6010543390600090610b1590849061350a565b610b2290620f424061350a565b601354909150610100900460ff16610b6e5760405162461bcd60e51b815260206004820152600f60248201526e73616c652d6e6f742d61637469766560881b6044820152606401610881565b61037883610b7b60085490565b610b859190613529565b1115610bc85760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b60125483610bd560085490565b610bdf9190613529565b1115610c225760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b80610c2c836116a4565b1015610c6c5760405162461bcd60e51b815260206004820152600f60248201526e6e6f742d656e6f7567682d7573646360881b6044820152606401610881565b813b15610caf5760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b600083118015610cc157506011548311155b610d0d5760405162461bcd60e51b815260206004820152601860248201527f6d696e742d6e756d6265722d6f75742d6f662d72616e676500000000000000006044820152606401610881565b6011546001600160a01b0383166000908152600c6020526040902054610d34908590613529565b1115610d735760405162461bcd60e51b815260206004820152600e60248201526d1b585e0b5b5a5b9d0b5b1a5b5a5d60921b6044820152606401610881565b600b546040516323b872dd60e01b81526001600160a01b03848116600483015230602483015260448201849052909116906323b872dd90606401602060405180830381600087803b158015610dc757600080fd5b505af1158015610ddb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dff91906134d7565b5060005b83811015610f28576012546008541015610e5757610e2983610e2460085490565b612678565b6001600160a01b0383166000908152600c60205260408120805491610e4d83613541565b9190505550610f16565b600b546010546001600160a01b039091169063a9059cbb908590610e7b858961355c565b610e85919061350a565b610e9290620f424061350a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610ed857600080fd5b505af1158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1091906134d7565b50610f28565b80610f2081613541565b915050610e03565b50505050565b6000610f3983611429565b8210610fad5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610881565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610fde6123ba565b6013805461ff001981166101009182900460ff1615909102179055565b6110036123ba565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561104757600080fd5b505afa15801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f91906134be565b905060005b600e54811015611227576000600f82815481106110a3576110a3613573565b90600052602060002001546103e8846110bc919061359f565b6110c6919061350a565b600b546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561110f57600080fd5b505afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114791906134be565b90508082106111565780611158565b815b600b54600e80549294506001600160a01b039091169163a9059cbb91908690811061118557611185613573565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b03909116600482015260248101859052604401602060405180830381600087803b1580156111d957600080fd5b505af11580156111ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121191906134d7565b505050808061121f90613541565b915050611084565b5050565b6112336123ba565b6013805462ff0000198116620100009182900460ff1615909102179055565b61092283838360405180602001604052806000815250611b6c565b600061127860085490565b82106112ec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610881565b600882815481106112ff576112ff613573565b90600052602060002001549050919050565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401610973565b61134a6123ba565b6013546301000000900460ff16156113a45760405162461bcd60e51b815260206004820152600f60248201527f6c6f636b65642d626173652d75726900000000000000000000000000000000006044820152606401610881565b8051611227906014906020840190612fd0565b6000818152600260205260408120546001600160a01b0316806107315760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610881565b6114246123ba565b601555565b60006001600160a01b0382166114a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610881565b506001600160a01b031660009081526003602052604090205490565b33803b156115075760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b6103788461151460085490565b61151e9190613529565b11156115615760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b60006115da848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506017546040516bffffffffffffffffffffffff19606089901b16602082015290925060340190505b60405160208183030381529060405280519060200120612692565b9050806116195760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b216b83937b7b360991b6044820152606401610881565b60005b858110156116885761037861163060085490565b10156116715761164383610e2460085490565b6001600160a01b0383166000908152600c6020526040812080549161166783613541565b9190505550611676565b611688565b8061168081613541565b91505061161c565b505050505050565b6116986123ba565b6116a260006126a8565b565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b1580156116ea57600080fd5b505afa1580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073191906134be565b61172a6123ba565b601055565b60606001805461074690613483565b611227338383612707565b600e818154811061175957600080fd5b6000918252602090912001546001600160a01b0316905081565b61177b6123ba565b601655565b6117886123ba565b6103788261179560085490565b61179f9190613529565b11156117e25760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b803b156118255760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b60005b828110156109225761037861183c60085490565b10156109225761184f82610e2460085490565b8061185981613541565b915050611828565b601054339060009061187690620f424061350a565b60135490915062010000900460ff166118c35760405162461bcd60e51b815260206004820152600f60248201526e73616c652d6e6f742d61637469766560881b6044820152606401610881565b806118cd836116a4565b101561190d5760405162461bcd60e51b815260206004820152600f60248201526e6e6f742d656e6f7567682d7573646360881b6044820152606401610881565b813b156119505760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b61037861195c60085490565b611967906001613529565b11156119aa5760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b6001600160a01b0382166000908152600c602052604090205415611a015760405162461bcd60e51b815260206004820152600e60248201526d1b585e0b5b5a5b9d0b5b1a5b5a5d60921b6044820152606401610881565b6000611a63858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016546040516bffffffffffffffffffffffff1960608a901b16602082015290925060340190506115bf565b905080611aa25760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b216b83937b7b360991b6044820152606401610881565b600b546040516323b872dd60e01b81526001600160a01b03858116600483015230602483015260448201859052909116906323b872dd90606401602060405180830381600087803b158015611af657600080fd5b505af1158015611b0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2e91906134d7565b50611b3c83610e2460085490565b6001600160a01b0383166000908152600c60205260408120805491611b6083613541565b91905055505050505050565b611b763383612414565b611be85760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610881565b610f28848484846127d6565b611bfc6123ba565b601755565b6000818152600260205260409020546060906001600160a01b0316611c685760405162461bcd60e51b815260206004820152601260248201527f6e6f6e2d6578697374656e742d746f6b656e00000000000000000000000000006044820152606401610881565b6000611c72612854565b905080611c7e84612863565b604051602001611c8f9291906135b3565b604051602081830303815290604052915050919050565b6010543390600090611cb990869061350a565b611cc690620f424061350a565b60135490915060ff16611d0d5760405162461bcd60e51b815260206004820152600f60248201526e73616c652d6e6f742d61637469766560881b6044820152606401610881565b61037885611d1a60085490565b611d249190613529565b1115611d675760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b80611d71836116a4565b1015611db15760405162461bcd60e51b815260206004820152600f60248201526e6e6f742d656e6f7567682d7573646360881b6044820152606401610881565b813b15611df45760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d0b5d9a584b58dbdb9d1c9858dd607a1b6044820152606401610881565b60125485611e0160085490565b611e0b9190613529565b1115611e4e5760405162461bcd60e51b81526020600482015260126024820152711b585e0b5cdd5c1c1b1e4b5c995858da195960721b6044820152606401610881565b6001600160a01b0382166000908152600c6020526040902054600390611e75908790613529565b1115611eb45760405162461bcd60e51b815260206004820152600e60248201526d1b585e0b5b5a5b9d0b5b1a5b5a5d60921b6044820152606401610881565b6000611f16858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff1960608a901b16602082015290925060340190506115bf565b905080611f555760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b216b83937b7b360991b6044820152606401610881565b600b546040516323b872dd60e01b81526001600160a01b03858116600483015230602483015260448201859052909116906323b872dd90606401602060405180830381600087803b158015611fa957600080fd5b505af1158015611fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe191906134d7565b5060005b868110156121055760125460085410156120345761200684610e2460085490565b6001600160a01b0384166000908152600c6020526040812080549161202a83613541565b91905055506120f3565b600b546010546001600160a01b039091169063a9059cbb908690612058858c61355c565b612062919061350a565b61206f90620f424061350a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156120b557600080fd5b505af11580156120c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ed91906134d7565b50612105565b806120fd81613541565b915050611fe5565b50505050505050565b6001600160a01b0382166000908152600d6020908152604080832084845290915281205461213e57506000610731565b6001600160a01b0383166000908152600d6020908152604080832085845290915290205461216c904261355c565b9392505050565b600f818154811061218357600080fd5b600091825260209091200154905081565b61219c6123ba565b6001600160a01b0381166122185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610881565b612221816126a8565b50565b61222c6123ba565b6013805460ff19811660ff90911615179055565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806122a357506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610731565b6000818152600260205260409020546001600160a01b03166122215760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610881565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612381826113b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b031633146116a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610881565b600080612420836113b7565b9050806001600160a01b0316846001600160a01b0316148061246757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061248b5750836001600160a01b0316612480846107c9565b6001600160a01b0316145b949350505050565b826001600160a01b03166124a6826113b7565b6001600160a01b0316146125225760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610881565b6001600160a01b03821661259d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610881565b6125a8838383612995565b6125b360008261233f565b6001600160a01b03831660009081526003602052604081208054600192906125dc90849061355c565b90915550506001600160a01b038216600090815260036020526040812080546001929061260a908490613529565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112278282604051806020016040528060008152506129db565b60008261269f8584612a59565b14949350505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156127695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610881565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6127e1848484612493565b6127ed84848484612aa6565b610f285760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610881565b60606014805461074690613483565b6060816128a357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156128cd57806128b781613541565b91506128c69050600a8361359f565b91506128a7565b60008167ffffffffffffffff8111156128e8576128e86131a2565b6040519080825280601f01601f191660200182016040528015612912576020820181803683370190505b5090505b841561248b5761292760018361355c565b9150612934600a866135e2565b61293f906030613529565b60f81b81838151811061295457612954613573565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061298e600a8661359f565b9450612916565b6001600160a01b038084166000908152600d6020818152604080842086855282528084208490559386168352908152828220848352905220429055610922838383612bfe565b6129e58383612cb6565b6129f26000848484612aa6565b6109225760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610881565b600081815b8451811015612a9e57612a8a82868381518110612a7d57612a7d613573565b6020026020010151612e11565b915080612a9681613541565b915050612a5e565b509392505050565b60006001600160a01b0384163b15612bf357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612aea9033908990889088906004016135f6565b602060405180830381600087803b158015612b0457600080fd5b505af1925050508015612b34575060408051601f3d908101601f19168201909252612b3191810190613632565b60015b612bd9573d808015612b62576040519150601f19603f3d011682016040523d82523d6000602084013e612b67565b606091505b508051612bd15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610881565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061248b565b506001949350505050565b6001600160a01b038316612c5957612c5481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612c7c565b816001600160a01b0316836001600160a01b031614612c7c57612c7c8382612e40565b6001600160a01b038216612c935761092281612edd565b826001600160a01b0316826001600160a01b031614610922576109228282612f8c565b6001600160a01b038216612d0c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610881565b6000818152600260205260409020546001600160a01b031615612d715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610881565b612d7d60008383612995565b6001600160a01b0382166000908152600360205260408120805460019290612da6908490613529565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310612e2d57600082815260208490526040902061216c565b600083815260208390526040902061216c565b60006001612e4d84611429565b612e57919061355c565b600083815260076020526040902054909150808214612eaa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612eef9060019061355c565b60008381526009602052604081205460088054939450909284908110612f1757612f17613573565b906000526020600020015490508060088381548110612f3857612f38613573565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f7057612f7061364f565b6001900381819060005260206000200160009055905550505050565b6000612f9783611429565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612fdc90613483565b90600052602060002090601f016020900481019282612ffe5760008555613044565b82601f1061301757805160ff1916838001178555613044565b82800160010185558215613044579182015b82811115613044578251825591602001919060010190613029565b50613050929150613054565b5090565b5b808211156130505760008155600101613055565b6001600160e01b03198116811461222157600080fd5b60006020828403121561309157600080fd5b813561216c81613069565b60005b838110156130b757818101518382015260200161309f565b83811115610f285750506000910152565b600081518084526130e081602086016020860161309c565b601f01601f19169290920160200192915050565b60208152600061216c60208301846130c8565b60006020828403121561311957600080fd5b5035919050565b80356001600160a01b038116811461313757600080fd5b919050565b6000806040838503121561314f57600080fd5b61315883613120565b946020939093013593505050565b60008060006060848603121561317b57600080fd5b61318484613120565b925061319260208501613120565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156131d3576131d36131a2565b604051601f8501601f19908116603f011681019082821181831017156131fb576131fb6131a2565b8160405280935085815286868601111561321457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561324057600080fd5b813567ffffffffffffffff81111561325757600080fd5b8201601f8101841361326857600080fd5b61248b848235602084016131b8565b60006020828403121561328957600080fd5b61216c82613120565b60008083601f8401126132a457600080fd5b50813567ffffffffffffffff8111156132bc57600080fd5b6020830191508360208260051b85010111156132d757600080fd5b9250929050565b6000806000604084860312156132f357600080fd5b83359250602084013567ffffffffffffffff81111561331157600080fd5b61331d86828701613292565b9497909650939450505050565b801515811461222157600080fd5b6000806040838503121561334b57600080fd5b61335483613120565b915060208301356133648161332a565b809150509250929050565b6000806040838503121561338257600080fd5b8235915061339260208401613120565b90509250929050565b600080602083850312156133ae57600080fd5b823567ffffffffffffffff8111156133c557600080fd5b6133d185828601613292565b90969095509350505050565b600080600080608085870312156133f357600080fd5b6133fc85613120565b935061340a60208601613120565b925060408501359150606085013567ffffffffffffffff81111561342d57600080fd5b8501601f8101871361343e57600080fd5b61344d878235602084016131b8565b91505092959194509250565b6000806040838503121561346c57600080fd5b61347583613120565b915061339260208401613120565b600181811c9082168061349757607f821691505b602082108114156134b857634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156134d057600080fd5b5051919050565b6000602082840312156134e957600080fd5b815161216c8161332a565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613524576135246134f4565b500290565b6000821982111561353c5761353c6134f4565b500190565b6000600019821415613555576135556134f4565b5060010190565b60008282101561356e5761356e6134f4565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826135ae576135ae613589565b500490565b600083516135c581846020880161309c565b8351908301906135d981836020880161309c565b01949350505050565b6000826135f1576135f1613589565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261362860808301846130c8565b9695505050505050565b60006020828403121561364457600080fd5b815161216c81613069565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203ff66f943effedfdb20b5997b7cb055c744f7ec57c92f5e320b4d82368248c2a64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000c582d506c616e6574204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000758504c414e455400000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _usdc (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [1] : _name (string): X-Planet NFT
Arg [2] : _symbol (string): XPLANET
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 582d506c616e6574204e46540000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 58504c414e455400000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.