Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 57 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Flip Mint State | 15446207 | 841 days ago | IN | 0 ETH | 0.00052387 | ||||
Withdraw | 15406514 | 848 days ago | IN | 0 ETH | 0.00063621 | ||||
Mint | 15387890 | 851 days ago | IN | 0.1 ETH | 0.00115036 | ||||
Mint | 15386576 | 851 days ago | IN | 0.1 ETH | 0.00092618 | ||||
Withdraw | 15384846 | 851 days ago | IN | 0 ETH | 0.00123364 | ||||
Mint | 15384042 | 851 days ago | IN | 0 ETH | 0.00040464 | ||||
White List Mint | 15383931 | 851 days ago | IN | 0 ETH | 0.00102903 | ||||
Mint | 15381151 | 852 days ago | IN | 0.1 ETH | 0.00066697 | ||||
Mint | 15379261 | 852 days ago | IN | 0.2 ETH | 0.00259231 | ||||
Mint | 15379153 | 852 days ago | IN | 0.1 ETH | 0.00300234 | ||||
Safe Transfer Fr... | 15378144 | 852 days ago | IN | 0 ETH | 0.00070962 | ||||
Mint | 15378092 | 852 days ago | IN | 0.2 ETH | 0.00095541 | ||||
Mint | 15376098 | 852 days ago | IN | 0.1 ETH | 0.00054718 | ||||
Mint | 15376029 | 852 days ago | IN | 0.1 ETH | 0.00099382 | ||||
Mint | 15375858 | 853 days ago | IN | 0.1 ETH | 0.00088798 | ||||
Mint | 15375192 | 853 days ago | IN | 0.1 ETH | 0.00076872 | ||||
Mint | 15375158 | 853 days ago | IN | 0.1 ETH | 0.00069998 | ||||
White List Mint | 15375156 | 853 days ago | IN | 0 ETH | 0.00046641 | ||||
Mint | 15375147 | 853 days ago | IN | 0.1 ETH | 0.0006697 | ||||
Safe Transfer Fr... | 15375120 | 853 days ago | IN | 0 ETH | 0.00041042 | ||||
Mint | 15375115 | 853 days ago | IN | 0.1 ETH | 0.0007413 | ||||
Mint | 15375088 | 853 days ago | IN | 0.1 ETH | 0.00072843 | ||||
Mint | 15374785 | 853 days ago | IN | 0.1 ETH | 0.00072366 | ||||
Mint | 15374560 | 853 days ago | IN | 0.1 ETH | 0.00124456 | ||||
Mint | 15374553 | 853 days ago | IN | 0.2 ETH | 0.00156233 |
Loading...
Loading
Contract Name:
PhunkForce1
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ____ __ ____ ___ ____ __ __________ ____ ____________ ___ / __ \/ / / / / / / | / / //_/ / ____/ __ \/ __ \/ ____/ ____/ < / / /_/ / /_/ / / / / |/ / ,< / /_ / / / / /_/ / / / __/ / / / ____/ __ / /_/ / /| / /| | / __/ / /_/ / _, _/ /___/ /___ / / /_/ /_/ /_/\____/_/ |_/_/ |_| /_/ \____/_/ |_|\____/_____/ /_/ by TEJI */ // SPDX-License-Identifier: MIT pragma solidity 0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "../contracts/ERC721K.sol"; contract PhunkForce1 is Ownable, ERC721K { uint256 public nextIndexToAssign = 0; uint256 private mintPrice = 0.2 ether; uint256 private discountPrice = 0.1 ether; bool public mintState = false; //existing contracts for discount IERC721 private tejiverse = ERC721(0x74FDce4a5AbAA0c8C6933e80Ad4fEc50A0270D11); IERC721 private nhike = ERC721(0x28D0a1D3125f9132Efa6C1c09Ab446b8c63f3dDf); IERC721 private phlv = ERC721(0xA3088D8a04071974b86f910A4058f077aC34D386); IERC721 private rrt = ERC721(0x28BE4f6E3B41e483A0bbaD5e52A1e0af1cabCDAa); IERC721 private phunks = ERC721(0xf07468eAd8cf26c752C676E43C814FEe9c8CF402); mapping(address => bool) private _allowList; address[] private whiteList; constructor() ERC721K("PHUNK FORCE 1 by TEJI", "CPLVN") {} function flipMintState() public onlyOwner { mintState = !mintState; } function setWhiteList(address[] memory addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _allowList[addresses[i]] = true; whiteList.push(addresses[i]); } } function getWhiteList() external view returns (address[] memory){ return whiteList; } function whiteListMint() external { require (mintState, "Mint is not active"); require (_allowList[msg.sender] == true, "not on whitelist"); require (super.totalSupply() < 500, "No mints remaining"); _allowList[msg.sender] = false; super._mint(msg.sender, nextIndexToAssign); nextIndexToAssign++; } function mint(uint _amount) public payable { require (mintState, "Mint is not active"); require (_amount < 6, "Quantity exceeded. Maximum is 5"); require (super.totalSupply() < 500, "No mints remaining"); if (tejiverse.balanceOf(msg.sender) > 0 || nhike.balanceOf(msg.sender) > 0 || phlv.balanceOf(msg.sender) > 0 || phunks.balanceOf(msg.sender) > 0 || rrt.balanceOf(msg.sender) > 0) { require(msg.value == (discountPrice * _amount), "Exact payment is required"); for (uint i; i < _amount; i++) { super._mint(msg.sender, nextIndexToAssign); nextIndexToAssign++; } } else { require(msg.value == (mintPrice * _amount), "Exact payment is required"); for (uint i; i < _amount; i++) { super._mint(msg.sender, nextIndexToAssign); nextIndexToAssign++; } } } address constant tejiAddress = 0xBacA88029D2b4c3E7e06af8E5d7dF2E3AC8C46c9; address constant kenobiAddress = 0x68b6Ba6385a5d395c1ff73c79c9cB2bD2D614dBC; address constant saintmaxiAddress = 0x70E93674A2f0eE65a5f16baDa5B13952C6671188; function withdraw() external { require(address(this).balance > 0, "Nothing to withdraw"); uint total = address(this).balance; uint five = (total * 5) / 100; uint ten = (total * 10) / 100; Address.sendValue(payable(saintmaxiAddress), five); // 5% to saintmaxi Address.sendValue(payable(kenobiAddress), ten); // 10% of mint to kenobi Address.sendValue(payable(tejiAddress), total - (ten + five)); //85% of mint to Teji } }
// 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 /******************************** * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░██████████████████████░░░ * * ░░░██░░░░░░██░░░░░░████░░░░░ * * ░░░██░░░░░░██░░░░░░██░░░░░░░ * * ░░░██████████████████░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * ************************♥tt****/ pragma solidity ^0.8.9 <0.9.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; /** * @title ERC721K * @dev * A modification of ERC721F by FrankNFT.eth * Extends ERC721 Non-Fungible Token Standard basic implementation. * Optimized by to no longer use ERC721Enumerable , but still provide a totalSupply() and walletOfOwner(address _owner) implementation. * ERC721K Extends ERC721URIStorage Token Stanadard with modification to tokenURI() to mint individual NFTs * set BaseURI to point collection to CID + tokenId to assist permanent archive of collection before renounce. * @author ogkenobi.eth * */ contract ERC721K is Ownable, ERC721, ERC721URIStorage{ using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenSupply; // Base URI for Meta data string private _baseTokenURI; mapping(uint256 => string) private _tokenURIs; constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) { } /** * @dev walletofOwner * @return tokens id owned by the given address * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function walletOfOwner(address _owner) external view returns (uint256[] memory){ uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; while ( ownedTokenIndex < ownerTokenCount && currentTokenId < _tokenSupply.current() ) { if (ownerOf(currentTokenId) == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; unchecked{ ownedTokenIndex++;} } unchecked{ currentTokenId++;} } return ownedTokenIds; } /** * To change the starting tokenId, override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /** * @dev Set the base token URI. * Only call this before completing collection! * Move images and metadata to pinned IPFS folder * Set baseURI = link with CID metadata folder. */ function setBaseTokenURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } /** * * @dev Mints `tokenId` and transfers it to `to`. * */ function _mint(address to, uint256 tokenId) internal virtual override { super._mint(to, tokenId); _tokenSupply.increment(); } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _tokenSupply.current(); } /** * Helper method to allow ETH withdraws. */ function _withdraw(address _address, uint256 _amount) internal { (bool success, ) = _address.call{ value: _amount }(""); require(success, "Failed to widthdraw Ether"); } // contract can recieve Ether receive() external payable { } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length < 5) { return _tokenURI; } else { return string(abi.encodePacked(base)); } } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// 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 (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.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // 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 (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 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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextIndexToAssign","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhiteList","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600b556702c68af0bb140000600c5567016345785d8a0000600d55600e80547474fdce4a5abaa0c8c6933e80ad4fec50a0270d11006001600160a81b0319909116179055600f80546001600160a01b03199081167328d0a1d3125f9132efa6c1c09ab446b8c63f3ddf1790915560108054821673a3088d8a04071974b86f910a4058f077ac34d3861790556011805482167328be4f6e3b41e483a0bbad5e52a1e0af1cabcdaa1790556012805490911673f07468ead8cf26c752c676e43c814fee9c8cf402179055348015620000db57600080fd5b506040518060400160405280601581526020017f5048554e4b20464f52434520312062792054454a4900000000000000000000008152506040518060400160405280600581526020016421a8262b2760d91b81525081816200014c620001466200017460201b60201c565b62000178565b60016200015a83826200026d565b5060026200016982826200026d565b505050505062000339565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001f357607f821691505b6020821081036200021457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026857600081815260208120601f850160051c81016020861015620002435750805b601f850160051c820191505b8181101562000264578281556001016200024f565b5050505b505050565b81516001600160401b03811115620002895762000289620001c8565b620002a1816200029a8454620001de565b846200021a565b602080601f831160018114620002d95760008415620002c05750858301515b600019600386901b1c1916600185901b17855562000264565b600085815260208120601f198616915b828110156200030a57888601518255948401946001909101908401620002e9565b5085821015620003295787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6122c080620003496000396000f3fe6080604052600436106101a05760003560e01c80636352211e116100ec578063a22cb4651161008a578063c051e38a11610064578063c051e38a1461047f578063c87b56dd14610499578063e985e9c5146104b9578063f2fde38b1461050257600080fd5b8063a22cb46514610429578063b70d7e5914610449578063b88d4fde1461045f57600080fd5b8063775b9c13116100c6578063775b9c13146103c35780638da5cb5b146103e357806395d89b4114610401578063a0712d681461041657600080fd5b80636352211e1461036e57806370a082311461038e578063715018a6146103ae57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102f7578063438b63001461031757806359c74f29146103445780635dc89b341461035957600080fd5b806323b872dd146102a257806330176e13146102c25780633ccfd60b146102e257600080fd5b806301ffc9a7146101ac57806306fdde03146101e1578063081812fc14610203578063095ea7b31461023b57806309a9d76c1461025d57806318160ddd1461027f57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611b14565b610522565b60405190151581526020015b60405180910390f35b3480156101ed57600080fd5b506101f6610574565b6040516101d89190611b90565b34801561020f57600080fd5b5061022361021e366004611ba3565b610606565b6040516001600160a01b0390911681526020016101d8565b34801561024757600080fd5b5061025b610256366004611bd8565b61062d565b005b34801561026957600080fd5b50610272610747565b6040516101d89190611c02565b34801561028b57600080fd5b506102946107a8565b6040519081526020016101d8565b3480156102ae57600080fd5b5061025b6102bd366004611c4f565b6107b8565b3480156102ce57600080fd5b5061025b6102dd366004611d2a565b6107e9565b3480156102ee57600080fd5b5061025b610801565b34801561030357600080fd5b5061025b610312366004611c4f565b6108eb565b34801561032357600080fd5b50610337610332366004611d73565b610906565b6040516101d89190611d8e565b34801561035057600080fd5b5061025b6109cd565b34801561036557600080fd5b5061025b6109e9565b34801561037a57600080fd5b50610223610389366004611ba3565b610b0f565b34801561039a57600080fd5b506102946103a9366004611d73565b610b6f565b3480156103ba57600080fd5b5061025b610bf5565b3480156103cf57600080fd5b5061025b6103de366004611dc6565b610c09565b3480156103ef57600080fd5b506000546001600160a01b0316610223565b34801561040d57600080fd5b506101f6610cd5565b61025b610424366004611ba3565b610ce4565b34801561043557600080fd5b5061025b610444366004611e73565b611145565b34801561045557600080fd5b50610294600b5481565b34801561046b57600080fd5b5061025b61047a366004611eaf565b611150565b34801561048b57600080fd5b50600e546101cc9060ff1681565b3480156104a557600080fd5b506101f66104b4366004611ba3565b611188565b3480156104c557600080fd5b506101cc6104d4366004611f2b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561050e57600080fd5b5061025b61051d366004611d73565b611272565b60006001600160e01b031982166380ac58cd60e01b148061055357506001600160e01b03198216635b5e139f60e01b145b8061056e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461058390611f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546105af90611f5e565b80156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b5050505050905090565b6000610611826112e8565b506000908152600560205260409020546001600160a01b031690565b600061063882610b0f565b9050806001600160a01b0316836001600160a01b0316036106aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106c657506106c681336104d4565b6107385760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016106a1565b6107428383611347565b505050565b606060148054806020026020016040519081016040528092919081815260200182805480156105fc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610781575050505050905090565b60006107b360085490565b905090565b6107c233826113b5565b6107de5760405162461bcd60e51b81526004016106a190611f98565b610742838383611434565b6107f16115d0565b60096107fd8282612034565b5050565b600047116108475760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b60448201526064016106a1565b476000606461085783600561210a565b6108619190612129565b90506000606461087284600a61210a565b61087c9190612129565b905061089c7370e93674a2f0ee65a5f16bada5b13952c66711888361162a565b6108ba7368b6ba6385a5d395c1ff73c79c9cb2bd2d614dbc8261162a565b61074273baca88029d2b4c3e7e06af8e5d7df2e3ac8c46c96108dc848461214b565b6108e69086612163565b61162a565b61074283838360405180602001604052806000815250611150565b6060600061091383610b6f565b905060008167ffffffffffffffff81111561093057610930611c8b565b604051908082528060200260200182016040528015610959578160200160208202803683370190505b5090506000805b8381108015610970575060085482105b156109c357856001600160a01b031661098883610b0f565b6001600160a01b0316036109b857818382815181106109a9576109a961217a565b60209081029190910101526001015b600190910190610960565b5090949350505050565b6109d56115d0565b600e805460ff19811660ff90911615179055565b600e5460ff16610a305760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b60448201526064016106a1565b3360009081526013602052604090205460ff161515600114610a875760405162461bcd60e51b815260206004820152601060248201526f1b9bdd081bdb881dda1a5d195b1a5cdd60821b60448201526064016106a1565b6101f4610a926107a8565b10610ad45760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b60448201526064016106a1565b336000818152601360205260409020805460ff19169055600b54610af89190611743565b600b8054906000610b0883612190565b9190505550565b6000818152600360205260408120546001600160a01b03168061056e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a1565b60006001600160a01b038216610bd95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106a1565b506001600160a01b031660009081526004602052604090205490565b610bfd6115d0565b610c07600061175b565b565b610c116115d0565b60005b81518110156107fd57600160136000848481518110610c3557610c3561217a565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506014828281518110610c8857610c8861217a565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580610ccd81612190565b915050610c14565b60606002805461058390611f5e565b600e5460ff16610d2b5760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b60448201526064016106a1565b60068110610d7b5760405162461bcd60e51b815260206004820152601f60248201527f5175616e746974792065786365656465642e204d6178696d756d20697320350060448201526064016106a1565b6101f4610d866107a8565b10610dc85760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b60448201526064016106a1565b600e546040516370a0823160e01b815233600482015260009161010090046001600160a01b0316906370a0823190602401602060405180830381865afa158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a91906121a9565b1180610eb05750600f546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610e8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eae91906121a9565b115b80610f2557506010546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610eff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2391906121a9565b115b80610f9a57506012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9891906121a9565b115b8061100f57506011546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610fe9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100d91906121a9565b115b156110ab5780600d54611022919061210a565b341461106c5760405162461bcd60e51b8152602060048201526019602482015278115e1858dd081c185e5b595b9d081a5cc81c995c5d5a5c9959603a1b60448201526064016106a1565b60005b818110156107fd5761108333600b54611743565b600b805490600061109383612190565b919050555080806110a390612190565b91505061106f565b80600c546110b9919061210a565b34146111035760405162461bcd60e51b8152602060048201526019602482015278115e1858dd081c185e5b595b9d081a5cc81c995c5d5a5c9959603a1b60448201526064016106a1565b60005b818110156107fd5761111a33600b54611743565b600b805490600061112a83612190565b9190505550808061113a90612190565b915050611106565b50565b6107fd3383836117ab565b61115a33836113b5565b6111765760405162461bcd60e51b81526004016106a190611f98565b61118284848484611879565b50505050565b6060611193826112e8565b6000828152600a6020526040812080546111ac90611f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546111d890611f5e565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b5050505050905060006112366118ac565b9050600581511015611249575092915050565b8060405160200161125a91906121c2565b60405160208183030381529060405292505050919050565b61127a6115d0565b6001600160a01b0381166112df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a1565b6111428161175b565b6000818152600360205260409020546001600160a01b03166111425760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a1565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137c82610b0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113c183610b0f565b9050806001600160a01b0316846001600160a01b0316148061140857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b8061142c5750836001600160a01b031661142184610606565b6001600160a01b0316145b949350505050565b826001600160a01b031661144782610b0f565b6001600160a01b0316146114ab5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106a1565b6001600160a01b03821661150d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a1565b611518600082611347565b6001600160a01b0383166000908152600460205260408120805460019290611541908490612163565b90915550506001600160a01b038216600090815260046020526040812080546001929061156f90849061214b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a1565b8047101561167a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106a1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116c7576040519150601f19603f3d011682016040523d82523d6000602084013e6116cc565b606091505b50509050806107425760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106a1565b61174d82826118bb565b6107fd600880546001019055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03160361180c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a1565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611884848484611434565b611890848484846119fd565b6111825760405162461bcd60e51b81526004016106a1906121de565b60606009805461058390611f5e565b6001600160a01b0382166119115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a1565b6000818152600360205260409020546001600160a01b0316156119765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a1565b6001600160a01b038216600090815260046020526040812080546001929061199f90849061214b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611af357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a41903390899088908890600401612230565b6020604051808303816000875af1925050508015611a7c575060408051601f3d908101601f19168201909252611a799181019061226d565b60015b611ad9573d808015611aaa576040519150601f19603f3d011682016040523d82523d6000602084013e611aaf565b606091505b508051600003611ad15760405162461bcd60e51b81526004016106a1906121de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061142c565b506001949350505050565b6001600160e01b03198116811461114257600080fd5b600060208284031215611b2657600080fd5b8135611b3181611afe565b9392505050565b60005b83811015611b53578181015183820152602001611b3b565b838111156111825750506000910152565b60008151808452611b7c816020860160208601611b38565b601f01601f19169290920160200192915050565b602081526000611b316020830184611b64565b600060208284031215611bb557600080fd5b5035919050565b80356001600160a01b0381168114611bd357600080fd5b919050565b60008060408385031215611beb57600080fd5b611bf483611bbc565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015611c435783516001600160a01b031683529284019291840191600101611c1e565b50909695505050505050565b600080600060608486031215611c6457600080fd5b611c6d84611bbc565b9250611c7b60208501611bbc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611cca57611cca611c8b565b604052919050565b600067ffffffffffffffff831115611cec57611cec611c8b565b611cff601f8401601f1916602001611ca1565b9050828152838383011115611d1357600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d3c57600080fd5b813567ffffffffffffffff811115611d5357600080fd5b8201601f81018413611d6457600080fd5b61142c84823560208401611cd2565b600060208284031215611d8557600080fd5b611b3182611bbc565b6020808252825182820181905260009190848201906040850190845b81811015611c4357835183529284019291840191600101611daa565b60006020808385031215611dd957600080fd5b823567ffffffffffffffff80821115611df157600080fd5b818501915085601f830112611e0557600080fd5b813581811115611e1757611e17611c8b565b8060051b9150611e28848301611ca1565b8181529183018401918481019088841115611e4257600080fd5b938501935b83851015611e6757611e5885611bbc565b82529385019390850190611e47565b98975050505050505050565b60008060408385031215611e8657600080fd5b611e8f83611bbc565b915060208301358015158114611ea457600080fd5b809150509250929050565b60008060008060808587031215611ec557600080fd5b611ece85611bbc565b9350611edc60208601611bbc565b925060408501359150606085013567ffffffffffffffff811115611eff57600080fd5b8501601f81018713611f1057600080fd5b611f1f87823560208401611cd2565b91505092959194509250565b60008060408385031215611f3e57600080fd5b611f4783611bbc565b9150611f5560208401611bbc565b90509250929050565b600181811c90821680611f7257607f821691505b602082108103611f9257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b601f82111561074257600081815260208120601f850160051c8101602086101561200d5750805b601f850160051c820191505b8181101561202c57828155600101612019565b505050505050565b815167ffffffffffffffff81111561204e5761204e611c8b565b6120628161205c8454611f5e565b84611fe6565b602080601f831160018114612097576000841561207f5750858301515b600019600386901b1c1916600185901b17855561202c565b600085815260208120601f198616915b828110156120c6578886015182559484019460019091019084016120a7565b50858210156120e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612124576121246120f4565b500290565b60008261214657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561215e5761215e6120f4565b500190565b600082821015612175576121756120f4565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600182016121a2576121a26120f4565b5060010190565b6000602082840312156121bb57600080fd5b5051919050565b600082516121d4818460208701611b38565b9190910192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226390830184611b64565b9695505050505050565b60006020828403121561227f57600080fd5b8151611b3181611afe56fea26469706673582212206f2ad5ecd5a900803e4fa4eabac3db89b202d3a8405dbfda957e1df982fa220c64736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c80636352211e116100ec578063a22cb4651161008a578063c051e38a11610064578063c051e38a1461047f578063c87b56dd14610499578063e985e9c5146104b9578063f2fde38b1461050257600080fd5b8063a22cb46514610429578063b70d7e5914610449578063b88d4fde1461045f57600080fd5b8063775b9c13116100c6578063775b9c13146103c35780638da5cb5b146103e357806395d89b4114610401578063a0712d681461041657600080fd5b80636352211e1461036e57806370a082311461038e578063715018a6146103ae57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102f7578063438b63001461031757806359c74f29146103445780635dc89b341461035957600080fd5b806323b872dd146102a257806330176e13146102c25780633ccfd60b146102e257600080fd5b806301ffc9a7146101ac57806306fdde03146101e1578063081812fc14610203578063095ea7b31461023b57806309a9d76c1461025d57806318160ddd1461027f57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101cc6101c7366004611b14565b610522565b60405190151581526020015b60405180910390f35b3480156101ed57600080fd5b506101f6610574565b6040516101d89190611b90565b34801561020f57600080fd5b5061022361021e366004611ba3565b610606565b6040516001600160a01b0390911681526020016101d8565b34801561024757600080fd5b5061025b610256366004611bd8565b61062d565b005b34801561026957600080fd5b50610272610747565b6040516101d89190611c02565b34801561028b57600080fd5b506102946107a8565b6040519081526020016101d8565b3480156102ae57600080fd5b5061025b6102bd366004611c4f565b6107b8565b3480156102ce57600080fd5b5061025b6102dd366004611d2a565b6107e9565b3480156102ee57600080fd5b5061025b610801565b34801561030357600080fd5b5061025b610312366004611c4f565b6108eb565b34801561032357600080fd5b50610337610332366004611d73565b610906565b6040516101d89190611d8e565b34801561035057600080fd5b5061025b6109cd565b34801561036557600080fd5b5061025b6109e9565b34801561037a57600080fd5b50610223610389366004611ba3565b610b0f565b34801561039a57600080fd5b506102946103a9366004611d73565b610b6f565b3480156103ba57600080fd5b5061025b610bf5565b3480156103cf57600080fd5b5061025b6103de366004611dc6565b610c09565b3480156103ef57600080fd5b506000546001600160a01b0316610223565b34801561040d57600080fd5b506101f6610cd5565b61025b610424366004611ba3565b610ce4565b34801561043557600080fd5b5061025b610444366004611e73565b611145565b34801561045557600080fd5b50610294600b5481565b34801561046b57600080fd5b5061025b61047a366004611eaf565b611150565b34801561048b57600080fd5b50600e546101cc9060ff1681565b3480156104a557600080fd5b506101f66104b4366004611ba3565b611188565b3480156104c557600080fd5b506101cc6104d4366004611f2b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561050e57600080fd5b5061025b61051d366004611d73565b611272565b60006001600160e01b031982166380ac58cd60e01b148061055357506001600160e01b03198216635b5e139f60e01b145b8061056e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461058390611f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546105af90611f5e565b80156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b5050505050905090565b6000610611826112e8565b506000908152600560205260409020546001600160a01b031690565b600061063882610b0f565b9050806001600160a01b0316836001600160a01b0316036106aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106c657506106c681336104d4565b6107385760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016106a1565b6107428383611347565b505050565b606060148054806020026020016040519081016040528092919081815260200182805480156105fc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610781575050505050905090565b60006107b360085490565b905090565b6107c233826113b5565b6107de5760405162461bcd60e51b81526004016106a190611f98565b610742838383611434565b6107f16115d0565b60096107fd8282612034565b5050565b600047116108475760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b60448201526064016106a1565b476000606461085783600561210a565b6108619190612129565b90506000606461087284600a61210a565b61087c9190612129565b905061089c7370e93674a2f0ee65a5f16bada5b13952c66711888361162a565b6108ba7368b6ba6385a5d395c1ff73c79c9cb2bd2d614dbc8261162a565b61074273baca88029d2b4c3e7e06af8e5d7df2e3ac8c46c96108dc848461214b565b6108e69086612163565b61162a565b61074283838360405180602001604052806000815250611150565b6060600061091383610b6f565b905060008167ffffffffffffffff81111561093057610930611c8b565b604051908082528060200260200182016040528015610959578160200160208202803683370190505b5090506000805b8381108015610970575060085482105b156109c357856001600160a01b031661098883610b0f565b6001600160a01b0316036109b857818382815181106109a9576109a961217a565b60209081029190910101526001015b600190910190610960565b5090949350505050565b6109d56115d0565b600e805460ff19811660ff90911615179055565b600e5460ff16610a305760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b60448201526064016106a1565b3360009081526013602052604090205460ff161515600114610a875760405162461bcd60e51b815260206004820152601060248201526f1b9bdd081bdb881dda1a5d195b1a5cdd60821b60448201526064016106a1565b6101f4610a926107a8565b10610ad45760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b60448201526064016106a1565b336000818152601360205260409020805460ff19169055600b54610af89190611743565b600b8054906000610b0883612190565b9190505550565b6000818152600360205260408120546001600160a01b03168061056e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a1565b60006001600160a01b038216610bd95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106a1565b506001600160a01b031660009081526004602052604090205490565b610bfd6115d0565b610c07600061175b565b565b610c116115d0565b60005b81518110156107fd57600160136000848481518110610c3557610c3561217a565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506014828281518110610c8857610c8861217a565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580610ccd81612190565b915050610c14565b60606002805461058390611f5e565b600e5460ff16610d2b5760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b60448201526064016106a1565b60068110610d7b5760405162461bcd60e51b815260206004820152601f60248201527f5175616e746974792065786365656465642e204d6178696d756d20697320350060448201526064016106a1565b6101f4610d866107a8565b10610dc85760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b60448201526064016106a1565b600e546040516370a0823160e01b815233600482015260009161010090046001600160a01b0316906370a0823190602401602060405180830381865afa158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a91906121a9565b1180610eb05750600f546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610e8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eae91906121a9565b115b80610f2557506010546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610eff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2391906121a9565b115b80610f9a57506012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9891906121a9565b115b8061100f57506011546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610fe9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100d91906121a9565b115b156110ab5780600d54611022919061210a565b341461106c5760405162461bcd60e51b8152602060048201526019602482015278115e1858dd081c185e5b595b9d081a5cc81c995c5d5a5c9959603a1b60448201526064016106a1565b60005b818110156107fd5761108333600b54611743565b600b805490600061109383612190565b919050555080806110a390612190565b91505061106f565b80600c546110b9919061210a565b34146111035760405162461bcd60e51b8152602060048201526019602482015278115e1858dd081c185e5b595b9d081a5cc81c995c5d5a5c9959603a1b60448201526064016106a1565b60005b818110156107fd5761111a33600b54611743565b600b805490600061112a83612190565b9190505550808061113a90612190565b915050611106565b50565b6107fd3383836117ab565b61115a33836113b5565b6111765760405162461bcd60e51b81526004016106a190611f98565b61118284848484611879565b50505050565b6060611193826112e8565b6000828152600a6020526040812080546111ac90611f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546111d890611f5e565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b5050505050905060006112366118ac565b9050600581511015611249575092915050565b8060405160200161125a91906121c2565b60405160208183030381529060405292505050919050565b61127a6115d0565b6001600160a01b0381166112df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a1565b6111428161175b565b6000818152600360205260409020546001600160a01b03166111425760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106a1565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137c82610b0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113c183610b0f565b9050806001600160a01b0316846001600160a01b0316148061140857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b8061142c5750836001600160a01b031661142184610606565b6001600160a01b0316145b949350505050565b826001600160a01b031661144782610b0f565b6001600160a01b0316146114ab5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106a1565b6001600160a01b03821661150d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106a1565b611518600082611347565b6001600160a01b0383166000908152600460205260408120805460019290611541908490612163565b90915550506001600160a01b038216600090815260046020526040812080546001929061156f90849061214b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a1565b8047101561167a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106a1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116c7576040519150601f19603f3d011682016040523d82523d6000602084013e6116cc565b606091505b50509050806107425760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106a1565b61174d82826118bb565b6107fd600880546001019055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03160361180c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a1565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611884848484611434565b611890848484846119fd565b6111825760405162461bcd60e51b81526004016106a1906121de565b60606009805461058390611f5e565b6001600160a01b0382166119115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a1565b6000818152600360205260409020546001600160a01b0316156119765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a1565b6001600160a01b038216600090815260046020526040812080546001929061199f90849061214b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611af357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a41903390899088908890600401612230565b6020604051808303816000875af1925050508015611a7c575060408051601f3d908101601f19168201909252611a799181019061226d565b60015b611ad9573d808015611aaa576040519150601f19603f3d011682016040523d82523d6000602084013e611aaf565b606091505b508051600003611ad15760405162461bcd60e51b81526004016106a1906121de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061142c565b506001949350505050565b6001600160e01b03198116811461114257600080fd5b600060208284031215611b2657600080fd5b8135611b3181611afe565b9392505050565b60005b83811015611b53578181015183820152602001611b3b565b838111156111825750506000910152565b60008151808452611b7c816020860160208601611b38565b601f01601f19169290920160200192915050565b602081526000611b316020830184611b64565b600060208284031215611bb557600080fd5b5035919050565b80356001600160a01b0381168114611bd357600080fd5b919050565b60008060408385031215611beb57600080fd5b611bf483611bbc565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015611c435783516001600160a01b031683529284019291840191600101611c1e565b50909695505050505050565b600080600060608486031215611c6457600080fd5b611c6d84611bbc565b9250611c7b60208501611bbc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611cca57611cca611c8b565b604052919050565b600067ffffffffffffffff831115611cec57611cec611c8b565b611cff601f8401601f1916602001611ca1565b9050828152838383011115611d1357600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d3c57600080fd5b813567ffffffffffffffff811115611d5357600080fd5b8201601f81018413611d6457600080fd5b61142c84823560208401611cd2565b600060208284031215611d8557600080fd5b611b3182611bbc565b6020808252825182820181905260009190848201906040850190845b81811015611c4357835183529284019291840191600101611daa565b60006020808385031215611dd957600080fd5b823567ffffffffffffffff80821115611df157600080fd5b818501915085601f830112611e0557600080fd5b813581811115611e1757611e17611c8b565b8060051b9150611e28848301611ca1565b8181529183018401918481019088841115611e4257600080fd5b938501935b83851015611e6757611e5885611bbc565b82529385019390850190611e47565b98975050505050505050565b60008060408385031215611e8657600080fd5b611e8f83611bbc565b915060208301358015158114611ea457600080fd5b809150509250929050565b60008060008060808587031215611ec557600080fd5b611ece85611bbc565b9350611edc60208601611bbc565b925060408501359150606085013567ffffffffffffffff811115611eff57600080fd5b8501601f81018713611f1057600080fd5b611f1f87823560208401611cd2565b91505092959194509250565b60008060408385031215611f3e57600080fd5b611f4783611bbc565b9150611f5560208401611bbc565b90509250929050565b600181811c90821680611f7257607f821691505b602082108103611f9257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b601f82111561074257600081815260208120601f850160051c8101602086101561200d5750805b601f850160051c820191505b8181101561202c57828155600101612019565b505050505050565b815167ffffffffffffffff81111561204e5761204e611c8b565b6120628161205c8454611f5e565b84611fe6565b602080601f831160018114612097576000841561207f5750858301515b600019600386901b1c1916600185901b17855561202c565b600085815260208120601f198616915b828110156120c6578886015182559484019460019091019084016120a7565b50858210156120e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612124576121246120f4565b500290565b60008261214657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561215e5761215e6120f4565b500190565b600082821015612175576121756120f4565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600182016121a2576121a26120f4565b5060010190565b6000602082840312156121bb57600080fd5b5051919050565b600082516121d4818460208701611b38565b9190910192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226390830184611b64565b9695505050505050565b60006020828403121561227f57600080fd5b8151611b3181611afe56fea26469706673582212206f2ad5ecd5a900803e4fa4eabac3db89b202d3a8405dbfda957e1df982fa220c64736f6c634300080f0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.