ERC-721
Overview
Max Total Supply
569 BLOCKPASS
Holders
262
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 BLOCKPASSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Blockpass
Compiler Version
v0.8.1+commit.df193b15
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Creator: https://cojodi.com pragma solidity ^0.8.0; import "cojodi/contracts/MerkleTreeWhitelist.sol"; import "cojodi/contracts/ERC721MaxSupply.sol"; import "cojodi/contracts/BasicSellOne.sol"; contract Blockpass is ERC721MaxSupply, MerkleTreeWhitelist, BasicSellOne { address private dev; address private projectOwner; constructor(address projectOwner_) ERC721MaxSupply("Blockpass", "BLOCKPASS", 569, "https://minting.dns.army/blockagents/mintpass/") MerkleTreeWhitelist(0x19f7ee195f53728ff36c0db27382d1a35ffc92e54fa09290e724d4f8378ca7d5) BasicSellOne(0.2 ether) { dev = msg.sender; projectOwner = projectOwner_; } function mintWhitelist(bytes32[] calldata merkleProof_) external payable isWhitelisted(merkleProof_) isPaymentOk { _safeMint(msg.sender); } function mintPublic() external payable isPublic isPaymentOk { _safeMint(msg.sender); } function mintOwner(address receiver, uint256 amount) external onlyOwner { for (uint256 i = 0; i < amount; ++i) _safeMint(receiver); } function withdraw() external { require(msg.sender == dev || msg.sender == projectOwner, "not allowed"); uint256 balance = address(this).balance; payable(dev).transfer((balance * 5) / 100); payable(projectOwner).transfer((balance * 95) / 100); } }
// SPDX-License-Identifier: MIT // Creator: https://cojodi.com pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./AbstractWhitelist.sol"; contract MerkleTreeWhitelist is AbstractWhitelist { mapping(address => bool) public whitelistClaimed; bytes32 public merkleRoot; constructor(bytes32 merkleRoot_) { merkleRoot = merkleRoot_; } function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { merkleRoot = merkleRoot_; } modifier isWhitelisted(bytes32[] calldata merkleProof_) { require(isWhitelistSale, "not whitelist sale"); require(!whitelistClaimed[msg.sender], "whitelist claimed"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(merkleProof_, merkleRoot, leaf), "invalid proof"); // perform mint _; whitelistClaimed[msg.sender] = true; } }
// SPDX-License-Identifier: MIT // Creator: https://cojodi.com pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract ERC721MaxSupply is ERC721, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; string public baseURI; uint256 public maxSupply; Counters.Counter private _totalSupply; constructor( string memory name_, string memory symbol_, uint256 maxSupply_, string memory baseURI_ ) ERC721(name_, symbol_) { maxSupply = maxSupply_; baseURI = baseURI_; } function _safeMint(address to) internal virtual { uint256 newId = Counters.current(_totalSupply).add(1); require(newId <= maxSupply, "max supply reached"); ERC721._safeMint(to, newId); Counters.increment(_totalSupply); } function totalSupply() external view returns (uint256) { return Counters.current(_totalSupply); } function setBaseURI(string memory uri_) external onlyOwner { baseURI = uri_; } function _baseURI() internal view override returns (string memory) { return baseURI; } }
// SPDX-License-Identifier: MIT // Creator: https://cojodi.com pragma solidity ^0.8.0; import "./AbstractBasicSell.sol"; contract BasicSellOne is AbstractBasicSell { constructor(uint256 price_) AbstractBasicSell(price_) {} modifier isPaymentOk() { require(msg.value == price, "wrong amount paid"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // Creator: https://cojodi.com pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; abstract contract AbstractWhitelist is Ownable { bool public isWhitelistSale = false; bool public isPublicSale = false; function toggleWhitelistSale() external onlyOwner { isWhitelistSale = !isWhitelistSale; if (isPublicSale) isPublicSale = false; } function togglePublicSale() external onlyOwner { isPublicSale = !isPublicSale; if (isWhitelistSale) isWhitelistSale = false; } modifier isPublic() { require(isPublicSale, "not public sale"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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 v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// 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.5.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _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 a {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 a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 `IERC721.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.5.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 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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // 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 // Creator: https://cojodi.com pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract AbstractBasicSell is Ownable { uint256 public price; constructor(uint256 price_) { price = price_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } }
{ "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":[{"internalType":"address","name":"projectOwner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","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":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a805461ffff191690553480156200001c57600080fd5b5060405162002608380380620026088339810160408190526200003f9162000273565b6702c68af0bb140000807f19f7ee195f53728ff36c0db27382d1a35ffc92e54fa09290e724d4f8378ca7d560001b60405180604001604052806009815260200168426c6f636b7061737360b81b81525060405180604001604052806009815260200168424c4f434b5041535360b81b8152506102396040518060600160405280602e8152602001620025da602e9139835184908490620000e7906000906020850190620001cd565b508051620000fd906001906020840190620001cd565b5050506200011a620001146200017760201b60201c565b6200017b565b6008829055805162000134906007906020840190620001cd565b505050600c929092555050600d5550600e8054336001600160a01b031991821617909155600f80549091166001600160a01b0392909216919091179055620002e0565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001db90620002a3565b90600052602060002090601f016020900481019282620001ff57600085556200024a565b82601f106200021a57805160ff19168380011785556200024a565b828001600101855582156200024a579182015b828111156200024a5782518255916020019190600101906200022d565b50620002589291506200025c565b5090565b5b808211156200025857600081556001016200025d565b60006020828403121562000285578081fd5b81516001600160a01b03811681146200029c578182fd5b9392505050565b600281046001821680620002b857607f821691505b60208210811415620002da57634e487b7160e01b600052602260045260246000fd5b50919050565b6122ea80620002f06000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610509578063db4bec441461051e578063e222c7f91461053e578063e985e9c514610553578063f2fde38b14610573576101ee565b8063a22cb46514610494578063a5a865dc146104b4578063b88d4fde146104c9578063c87b56dd146104e9576101ee565b80638da5cb5b116100dc5780638da5cb5b1461043557806391b7f5ed1461044a57806395d89b411461046a578063a035b1fe1461047f576101ee565b806370a08231146103d8578063715018a6146103f85780637cb647591461040d5780638c874ebd1461042d576101ee565b80633ccfd60b1161018557806355f804b31161015457806355f804b31461036e57806359eda1b51461038e5780636352211e146103a35780636c0360eb146103c3576101ee565b80633ccfd60b14610306578063408cbf941461031b57806342842e0e1461033b57806344d843811461035b576101ee565b80631455b1e2116101c15780631455b1e21461029a57806318160ddd146102af57806323b872dd146102d15780632eb4a7ab146102f1576101ee565b806301ffc9a7146101f357806306fdde0314610229578063081812fc1461024b578063095ea7b314610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a71565b610593565b6040516102209190611bb8565b60405180910390f35b34801561023557600080fd5b5061023e6105db565b6040516102209190611bcc565b34801561025757600080fd5b5061026b610266366004611a59565b61066d565b6040516102209190611b67565b34801561028457600080fd5b506102986102933660046119c1565b6106b9565b005b3480156102a657600080fd5b50610213610751565b3480156102bb57600080fd5b506102c461075a565b6040516102209190611bc3565b3480156102dd57600080fd5b506102986102ec3660046118d3565b61076b565b3480156102fd57600080fd5b506102c46107a3565b34801561031257600080fd5b506102986107a9565b34801561032757600080fd5b506102986103363660046119c1565b61088b565b34801561034757600080fd5b506102986103563660046118d3565b6108ee565b6102986103693660046119ea565b610909565b34801561037a57600080fd5b50610298610389366004611aa9565b610a32565b34801561039a57600080fd5b50610298610a84565b3480156103af57600080fd5b5061026b6103be366004611a59565b610af1565b3480156103cf57600080fd5b5061023e610b26565b3480156103e457600080fd5b506102c46103f3366004611887565b610bb4565b34801561040457600080fd5b50610298610bf8565b34801561041957600080fd5b50610298610428366004611a59565b610c41565b610298610c85565b34801561044157600080fd5b5061026b610cd6565b34801561045657600080fd5b50610298610465366004611a59565b610ce5565b34801561047657600080fd5b5061023e610d29565b34801561048b57600080fd5b506102c4610d38565b3480156104a057600080fd5b506102986104af366004611987565b610d3e565b3480156104c057600080fd5b50610213610d50565b3480156104d557600080fd5b506102986104e436600461190e565b610d5e565b3480156104f557600080fd5b5061023e610504366004611a59565b610d9d565b34801561051557600080fd5b506102c4610e20565b34801561052a57600080fd5b50610213610539366004611887565b610e26565b34801561054a57600080fd5b50610298610e3b565b34801561055f57600080fd5b5061021361056e3660046118a1565b610eab565b34801561057f57600080fd5b5061029861058e366004611887565b610ed9565b60006001600160e01b031982166380ac58cd60e01b14806105c457506001600160e01b03198216635b5e139f60e01b145b806105d357506105d382610f4a565b90505b919050565b6060600080546105ea906121f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610616906121f2565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b600061067882610f63565b61069d5760405162461bcd60e51b815260040161069490611f5c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c482610af1565b9050806001600160a01b0316836001600160a01b031614156106f85760405162461bcd60e51b8152600401610694906120ab565b806001600160a01b031661070a610f80565b6001600160a01b0316148061072657506107268161056e610f80565b6107425760405162461bcd60e51b815260040161069490611e0b565b61074c8383610f84565b505050565b600a5460ff1681565b60006107666009610ff2565b905090565b61077c610776610f80565b82610ff6565b6107985760405162461bcd60e51b8152600401610694906120ec565b61074c83838361107b565b600c5481565b600e546001600160a01b03163314806107cc5750600f546001600160a01b031633145b6107e85760405162461bcd60e51b815260040161069490611dba565b600e5447906001600160a01b03166108fc6064610806846005612190565b610810919061217c565b6040518115909202916000818181858888f19350505050158015610838573d6000803e3d6000fd5b50600f546001600160a01b03166108fc606461085584605f612190565b61085f919061217c565b6040518115909202916000818181858888f19350505050158015610887573d6000803e3d6000fd5b5050565b610893610f80565b6001600160a01b03166108a4610cd6565b6001600160a01b0316146108ca5760405162461bcd60e51b815260040161069490611fd3565b60005b8181101561074c576108de836111ae565b6108e78161222d565b90506108cd565b61074c83838360405180602001604052806000815250610d5e565b600a548290829060ff1661092f5760405162461bcd60e51b815260040161069490611ddf565b336000908152600b602052604090205460ff161561095f5760405162461bcd60e51b815260040161069490611fa8565b6000336040516020016109729190611b1b565b6040516020818303038152906040528051906020012090506109cb83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506111fd565b6109e75760405162461bcd60e51b81526004016106949061213d565b600d543414610a085760405162461bcd60e51b815260040161069490612080565b610a11336111ae565b5050336000908152600b60205260409020805460ff19166001179055505050565b610a3a610f80565b6001600160a01b0316610a4b610cd6565b6001600160a01b031614610a715760405162461bcd60e51b815260040161069490611fd3565b8051610887906007906020840190611761565b610a8c610f80565b6001600160a01b0316610a9d610cd6565b6001600160a01b031614610ac35760405162461bcd60e51b815260040161069490611fd3565b600a805460ff19811660ff9182161517918290556101009091041615610aef57600a805461ff00191690555b565b6000818152600260205260408120546001600160a01b0316806105d35760405162461bcd60e51b815260040161069490611eb2565b60078054610b33906121f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906121f2565b8015610bac5780601f10610b8157610100808354040283529160200191610bac565b820191906000526020600020905b815481529060010190602001808311610b8f57829003601f168201915b505050505081565b60006001600160a01b038216610bdc5760405162461bcd60e51b815260040161069490611e68565b506001600160a01b031660009081526003602052604090205490565b610c00610f80565b6001600160a01b0316610c11610cd6565b6001600160a01b031614610c375760405162461bcd60e51b815260040161069490611fd3565b610aef6000611213565b610c49610f80565b6001600160a01b0316610c5a610cd6565b6001600160a01b031614610c805760405162461bcd60e51b815260040161069490611fd3565b600c55565b600a54610100900460ff16610cac5760405162461bcd60e51b815260040161069490612057565b600d543414610ccd5760405162461bcd60e51b815260040161069490612080565b610aef336111ae565b6006546001600160a01b031690565b610ced610f80565b6001600160a01b0316610cfe610cd6565b6001600160a01b031614610d245760405162461bcd60e51b815260040161069490611fd3565b600d55565b6060600180546105ea906121f2565b600d5481565b610887610d49610f80565b8383611265565b600a54610100900460ff1681565b610d6f610d69610f80565b83610ff6565b610d8b5760405162461bcd60e51b8152600401610694906120ec565b610d9784848484611308565b50505050565b6060610da882610f63565b610dc45760405162461bcd60e51b815260040161069490612008565b6000610dce61133b565b90506000815111610dee5760405180602001604052806000815250610e19565b80610df88461134a565b604051602001610e09929190611b38565b6040516020818303038152906040525b9392505050565b60085481565b600b6020526000908152604090205460ff1681565b610e43610f80565b6001600160a01b0316610e54610cd6565b6001600160a01b031614610e7a5760405162461bcd60e51b815260040161069490611fd3565b600a805460ff6101008083048216150261ff001990921691909117918290551615610aef57600a805460ff19169055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ee1610f80565b6001600160a01b0316610ef2610cd6565b6001600160a01b031614610f185760405162461bcd60e51b815260040161069490611fd3565b6001600160a01b038116610f3e5760405162461bcd60e51b815260040161069490611c31565b610f4781611213565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fb982610af1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b600061100182610f63565b61101d5760405162461bcd60e51b815260040161069490611d6e565b600061102883610af1565b9050806001600160a01b0316846001600160a01b031614806110635750836001600160a01b03166110588461066d565b6001600160a01b0316145b8061107357506110738185610eab565b949350505050565b826001600160a01b031661108e82610af1565b6001600160a01b0316146110b45760405162461bcd60e51b815260040161069490611c77565b6001600160a01b0382166110da5760405162461bcd60e51b815260040161069490611cf3565b6110e583838361074c565b6110f0600082610f84565b6001600160a01b03831660009081526003602052604081208054600192906111199084906121af565b90915550506001600160a01b0382166000908152600360205260408120805460019290611147908490612164565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a461074c83838361074c565b60006111c560016111bf6009610ff2565b90611465565b90506008548111156111e95760405162461bcd60e51b815260040161069490611efb565b6111f38282611471565b610887600961148b565b60008261120a8584611494565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112975760405162461bcd60e51b815260040161069490611d37565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906112fb908590611bb8565b60405180910390a3505050565b61131384848461107b565b61131f8484848461150e565b610d975760405162461bcd60e51b815260040161069490611bdf565b6060600780546105ea906121f2565b60608161136f57506040805180820190915260018152600360fc1b60208201526105d6565b8160005b811561139957806113838161222d565b91506113929050600a8361217c565b9150611373565b60008167ffffffffffffffff8111156113c257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113ec576020820181803683370190505b5090505b8415611073576114016001836121af565b915061140e600a86612248565b611419906030612164565b60f81b81838151811061143c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061145e600a8661217c565b94506113f0565b6000610e198284612164565b610887828260405180602001604052806000815250611629565b80546001019055565b600081815b84518110156115065760008582815181106114c457634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116114e6576114df838261165c565b92506114f3565b6114f0818461165c565b92505b50806114fe8161222d565b915050611499565b509392505050565b6000611522846001600160a01b031661166b565b1561161e57836001600160a01b031663150b7a0261153e610f80565b8786866040518563ffffffff1660e01b81526004016115609493929190611b7b565b602060405180830381600087803b15801561157a57600080fd5b505af19250505080156115aa575060408051601f3d908101601f191682019092526115a791810190611a8d565b60015b611604573d8080156115d8576040519150601f19603f3d011682016040523d82523d6000602084013e6115dd565b606091505b5080516115fc5760405162461bcd60e51b815260040161069490611bdf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611073565b506001949350505050565b611633838361167a565b611640600084848461150e565b61074c5760405162461bcd60e51b815260040161069490611bdf565b60009182526020526040902090565b6001600160a01b03163b151590565b6001600160a01b0382166116a05760405162461bcd60e51b815260040161069490611f27565b6116a981610f63565b156116c65760405162461bcd60e51b815260040161069490611cbc565b6116d26000838361074c565b6001600160a01b03821660009081526003602052604081208054600192906116fb908490612164565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46108876000838361074c565b82805461176d906121f2565b90600052602060002090601f01602090048101928261178f57600085556117d5565b82601f106117a857805160ff19168380011785556117d5565b828001600101855582156117d5579182015b828111156117d55782518255916020019190600101906117ba565b506117e19291506117e5565b5090565b5b808211156117e157600081556001016117e6565b600067ffffffffffffffff8084111561181557611815612288565b604051601f8501601f19908116603f0116810190828211818310171561183d5761183d612288565b8160405280935085815286868601111561185657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146105d657600080fd5b600060208284031215611898578081fd5b610e1982611870565b600080604083850312156118b3578081fd5b6118bc83611870565b91506118ca60208401611870565b90509250929050565b6000806000606084860312156118e7578081fd5b6118f084611870565b92506118fe60208501611870565b9150604084013590509250925092565b60008060008060808587031215611923578081fd5b61192c85611870565b935061193a60208601611870565b925060408501359150606085013567ffffffffffffffff81111561195c578182fd5b8501601f8101871361196c578182fd5b61197b878235602084016117fa565b91505092959194509250565b60008060408385031215611999578182fd5b6119a283611870565b9150602083013580151581146119b6578182fd5b809150509250929050565b600080604083850312156119d3578182fd5b6119dc83611870565b946020939093013593505050565b600080602083850312156119fc578182fd5b823567ffffffffffffffff80821115611a13578384fd5b818501915085601f830112611a26578384fd5b813581811115611a34578485fd5b8660208083028501011115611a47578485fd5b60209290920196919550909350505050565b600060208284031215611a6a578081fd5b5035919050565b600060208284031215611a82578081fd5b8135610e198161229e565b600060208284031215611a9e578081fd5b8151610e198161229e565b600060208284031215611aba578081fd5b813567ffffffffffffffff811115611ad0578182fd5b8201601f81018413611ae0578182fd5b611073848235602084016117fa565b60008151808452611b078160208601602086016121c6565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351611b4a8184602088016121c6565b835190830190611b5e8183602088016121c6565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bae90830184611aef565b9695505050505050565b901515815260200190565b90815260200190565b600060208252610e196020830184611aef565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600b908201526a1b9bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252601290820152716e6f742077686974656c6973742073616c6560701b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601290820152711b585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601190820152701dda1a5d195b1a5cdd0818db185a5b5959607a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252600f908201526e6e6f74207075626c69632073616c6560881b604082015260600190565b6020808252601190820152701ddc9bdb99c8185b5bdd5b9d081c185a59607a1b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b600082198211156121775761217761225c565b500190565b60008261218b5761218b612272565b500490565b60008160001904831182151516156121aa576121aa61225c565b500290565b6000828210156121c1576121c161225c565b500390565b60005b838110156121e15781810151838201526020016121c9565b83811115610d975750506000910152565b60028104600182168061220657607f821691505b6020821081141561222757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122415761224161225c565b5060010190565b60008261225757612257612272565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f4757600080fdfea264697066735822122067e44dac5d881251aadf529dda8739a9c1e540b31ab3e84d7c1de4ef9d87a50964736f6c6343000801003368747470733a2f2f6d696e74696e672e646e732e61726d792f626c6f636b6167656e74732f6d696e74706173732f00000000000000000000000011874b5115849131943352616b317154b5fc79eb
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610509578063db4bec441461051e578063e222c7f91461053e578063e985e9c514610553578063f2fde38b14610573576101ee565b8063a22cb46514610494578063a5a865dc146104b4578063b88d4fde146104c9578063c87b56dd146104e9576101ee565b80638da5cb5b116100dc5780638da5cb5b1461043557806391b7f5ed1461044a57806395d89b411461046a578063a035b1fe1461047f576101ee565b806370a08231146103d8578063715018a6146103f85780637cb647591461040d5780638c874ebd1461042d576101ee565b80633ccfd60b1161018557806355f804b31161015457806355f804b31461036e57806359eda1b51461038e5780636352211e146103a35780636c0360eb146103c3576101ee565b80633ccfd60b14610306578063408cbf941461031b57806342842e0e1461033b57806344d843811461035b576101ee565b80631455b1e2116101c15780631455b1e21461029a57806318160ddd146102af57806323b872dd146102d15780632eb4a7ab146102f1576101ee565b806301ffc9a7146101f357806306fdde0314610229578063081812fc1461024b578063095ea7b314610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a71565b610593565b6040516102209190611bb8565b60405180910390f35b34801561023557600080fd5b5061023e6105db565b6040516102209190611bcc565b34801561025757600080fd5b5061026b610266366004611a59565b61066d565b6040516102209190611b67565b34801561028457600080fd5b506102986102933660046119c1565b6106b9565b005b3480156102a657600080fd5b50610213610751565b3480156102bb57600080fd5b506102c461075a565b6040516102209190611bc3565b3480156102dd57600080fd5b506102986102ec3660046118d3565b61076b565b3480156102fd57600080fd5b506102c46107a3565b34801561031257600080fd5b506102986107a9565b34801561032757600080fd5b506102986103363660046119c1565b61088b565b34801561034757600080fd5b506102986103563660046118d3565b6108ee565b6102986103693660046119ea565b610909565b34801561037a57600080fd5b50610298610389366004611aa9565b610a32565b34801561039a57600080fd5b50610298610a84565b3480156103af57600080fd5b5061026b6103be366004611a59565b610af1565b3480156103cf57600080fd5b5061023e610b26565b3480156103e457600080fd5b506102c46103f3366004611887565b610bb4565b34801561040457600080fd5b50610298610bf8565b34801561041957600080fd5b50610298610428366004611a59565b610c41565b610298610c85565b34801561044157600080fd5b5061026b610cd6565b34801561045657600080fd5b50610298610465366004611a59565b610ce5565b34801561047657600080fd5b5061023e610d29565b34801561048b57600080fd5b506102c4610d38565b3480156104a057600080fd5b506102986104af366004611987565b610d3e565b3480156104c057600080fd5b50610213610d50565b3480156104d557600080fd5b506102986104e436600461190e565b610d5e565b3480156104f557600080fd5b5061023e610504366004611a59565b610d9d565b34801561051557600080fd5b506102c4610e20565b34801561052a57600080fd5b50610213610539366004611887565b610e26565b34801561054a57600080fd5b50610298610e3b565b34801561055f57600080fd5b5061021361056e3660046118a1565b610eab565b34801561057f57600080fd5b5061029861058e366004611887565b610ed9565b60006001600160e01b031982166380ac58cd60e01b14806105c457506001600160e01b03198216635b5e139f60e01b145b806105d357506105d382610f4a565b90505b919050565b6060600080546105ea906121f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610616906121f2565b80156106635780601f1061063857610100808354040283529160200191610663565b820191906000526020600020905b81548152906001019060200180831161064657829003601f168201915b5050505050905090565b600061067882610f63565b61069d5760405162461bcd60e51b815260040161069490611f5c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c482610af1565b9050806001600160a01b0316836001600160a01b031614156106f85760405162461bcd60e51b8152600401610694906120ab565b806001600160a01b031661070a610f80565b6001600160a01b0316148061072657506107268161056e610f80565b6107425760405162461bcd60e51b815260040161069490611e0b565b61074c8383610f84565b505050565b600a5460ff1681565b60006107666009610ff2565b905090565b61077c610776610f80565b82610ff6565b6107985760405162461bcd60e51b8152600401610694906120ec565b61074c83838361107b565b600c5481565b600e546001600160a01b03163314806107cc5750600f546001600160a01b031633145b6107e85760405162461bcd60e51b815260040161069490611dba565b600e5447906001600160a01b03166108fc6064610806846005612190565b610810919061217c565b6040518115909202916000818181858888f19350505050158015610838573d6000803e3d6000fd5b50600f546001600160a01b03166108fc606461085584605f612190565b61085f919061217c565b6040518115909202916000818181858888f19350505050158015610887573d6000803e3d6000fd5b5050565b610893610f80565b6001600160a01b03166108a4610cd6565b6001600160a01b0316146108ca5760405162461bcd60e51b815260040161069490611fd3565b60005b8181101561074c576108de836111ae565b6108e78161222d565b90506108cd565b61074c83838360405180602001604052806000815250610d5e565b600a548290829060ff1661092f5760405162461bcd60e51b815260040161069490611ddf565b336000908152600b602052604090205460ff161561095f5760405162461bcd60e51b815260040161069490611fa8565b6000336040516020016109729190611b1b565b6040516020818303038152906040528051906020012090506109cb83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506111fd565b6109e75760405162461bcd60e51b81526004016106949061213d565b600d543414610a085760405162461bcd60e51b815260040161069490612080565b610a11336111ae565b5050336000908152600b60205260409020805460ff19166001179055505050565b610a3a610f80565b6001600160a01b0316610a4b610cd6565b6001600160a01b031614610a715760405162461bcd60e51b815260040161069490611fd3565b8051610887906007906020840190611761565b610a8c610f80565b6001600160a01b0316610a9d610cd6565b6001600160a01b031614610ac35760405162461bcd60e51b815260040161069490611fd3565b600a805460ff19811660ff9182161517918290556101009091041615610aef57600a805461ff00191690555b565b6000818152600260205260408120546001600160a01b0316806105d35760405162461bcd60e51b815260040161069490611eb2565b60078054610b33906121f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906121f2565b8015610bac5780601f10610b8157610100808354040283529160200191610bac565b820191906000526020600020905b815481529060010190602001808311610b8f57829003601f168201915b505050505081565b60006001600160a01b038216610bdc5760405162461bcd60e51b815260040161069490611e68565b506001600160a01b031660009081526003602052604090205490565b610c00610f80565b6001600160a01b0316610c11610cd6565b6001600160a01b031614610c375760405162461bcd60e51b815260040161069490611fd3565b610aef6000611213565b610c49610f80565b6001600160a01b0316610c5a610cd6565b6001600160a01b031614610c805760405162461bcd60e51b815260040161069490611fd3565b600c55565b600a54610100900460ff16610cac5760405162461bcd60e51b815260040161069490612057565b600d543414610ccd5760405162461bcd60e51b815260040161069490612080565b610aef336111ae565b6006546001600160a01b031690565b610ced610f80565b6001600160a01b0316610cfe610cd6565b6001600160a01b031614610d245760405162461bcd60e51b815260040161069490611fd3565b600d55565b6060600180546105ea906121f2565b600d5481565b610887610d49610f80565b8383611265565b600a54610100900460ff1681565b610d6f610d69610f80565b83610ff6565b610d8b5760405162461bcd60e51b8152600401610694906120ec565b610d9784848484611308565b50505050565b6060610da882610f63565b610dc45760405162461bcd60e51b815260040161069490612008565b6000610dce61133b565b90506000815111610dee5760405180602001604052806000815250610e19565b80610df88461134a565b604051602001610e09929190611b38565b6040516020818303038152906040525b9392505050565b60085481565b600b6020526000908152604090205460ff1681565b610e43610f80565b6001600160a01b0316610e54610cd6565b6001600160a01b031614610e7a5760405162461bcd60e51b815260040161069490611fd3565b600a805460ff6101008083048216150261ff001990921691909117918290551615610aef57600a805460ff19169055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ee1610f80565b6001600160a01b0316610ef2610cd6565b6001600160a01b031614610f185760405162461bcd60e51b815260040161069490611fd3565b6001600160a01b038116610f3e5760405162461bcd60e51b815260040161069490611c31565b610f4781611213565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fb982610af1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b600061100182610f63565b61101d5760405162461bcd60e51b815260040161069490611d6e565b600061102883610af1565b9050806001600160a01b0316846001600160a01b031614806110635750836001600160a01b03166110588461066d565b6001600160a01b0316145b8061107357506110738185610eab565b949350505050565b826001600160a01b031661108e82610af1565b6001600160a01b0316146110b45760405162461bcd60e51b815260040161069490611c77565b6001600160a01b0382166110da5760405162461bcd60e51b815260040161069490611cf3565b6110e583838361074c565b6110f0600082610f84565b6001600160a01b03831660009081526003602052604081208054600192906111199084906121af565b90915550506001600160a01b0382166000908152600360205260408120805460019290611147908490612164565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a461074c83838361074c565b60006111c560016111bf6009610ff2565b90611465565b90506008548111156111e95760405162461bcd60e51b815260040161069490611efb565b6111f38282611471565b610887600961148b565b60008261120a8584611494565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112975760405162461bcd60e51b815260040161069490611d37565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906112fb908590611bb8565b60405180910390a3505050565b61131384848461107b565b61131f8484848461150e565b610d975760405162461bcd60e51b815260040161069490611bdf565b6060600780546105ea906121f2565b60608161136f57506040805180820190915260018152600360fc1b60208201526105d6565b8160005b811561139957806113838161222d565b91506113929050600a8361217c565b9150611373565b60008167ffffffffffffffff8111156113c257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113ec576020820181803683370190505b5090505b8415611073576114016001836121af565b915061140e600a86612248565b611419906030612164565b60f81b81838151811061143c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061145e600a8661217c565b94506113f0565b6000610e198284612164565b610887828260405180602001604052806000815250611629565b80546001019055565b600081815b84518110156115065760008582815181106114c457634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116114e6576114df838261165c565b92506114f3565b6114f0818461165c565b92505b50806114fe8161222d565b915050611499565b509392505050565b6000611522846001600160a01b031661166b565b1561161e57836001600160a01b031663150b7a0261153e610f80565b8786866040518563ffffffff1660e01b81526004016115609493929190611b7b565b602060405180830381600087803b15801561157a57600080fd5b505af19250505080156115aa575060408051601f3d908101601f191682019092526115a791810190611a8d565b60015b611604573d8080156115d8576040519150601f19603f3d011682016040523d82523d6000602084013e6115dd565b606091505b5080516115fc5760405162461bcd60e51b815260040161069490611bdf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611073565b506001949350505050565b611633838361167a565b611640600084848461150e565b61074c5760405162461bcd60e51b815260040161069490611bdf565b60009182526020526040902090565b6001600160a01b03163b151590565b6001600160a01b0382166116a05760405162461bcd60e51b815260040161069490611f27565b6116a981610f63565b156116c65760405162461bcd60e51b815260040161069490611cbc565b6116d26000838361074c565b6001600160a01b03821660009081526003602052604081208054600192906116fb908490612164565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46108876000838361074c565b82805461176d906121f2565b90600052602060002090601f01602090048101928261178f57600085556117d5565b82601f106117a857805160ff19168380011785556117d5565b828001600101855582156117d5579182015b828111156117d55782518255916020019190600101906117ba565b506117e19291506117e5565b5090565b5b808211156117e157600081556001016117e6565b600067ffffffffffffffff8084111561181557611815612288565b604051601f8501601f19908116603f0116810190828211818310171561183d5761183d612288565b8160405280935085815286868601111561185657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146105d657600080fd5b600060208284031215611898578081fd5b610e1982611870565b600080604083850312156118b3578081fd5b6118bc83611870565b91506118ca60208401611870565b90509250929050565b6000806000606084860312156118e7578081fd5b6118f084611870565b92506118fe60208501611870565b9150604084013590509250925092565b60008060008060808587031215611923578081fd5b61192c85611870565b935061193a60208601611870565b925060408501359150606085013567ffffffffffffffff81111561195c578182fd5b8501601f8101871361196c578182fd5b61197b878235602084016117fa565b91505092959194509250565b60008060408385031215611999578182fd5b6119a283611870565b9150602083013580151581146119b6578182fd5b809150509250929050565b600080604083850312156119d3578182fd5b6119dc83611870565b946020939093013593505050565b600080602083850312156119fc578182fd5b823567ffffffffffffffff80821115611a13578384fd5b818501915085601f830112611a26578384fd5b813581811115611a34578485fd5b8660208083028501011115611a47578485fd5b60209290920196919550909350505050565b600060208284031215611a6a578081fd5b5035919050565b600060208284031215611a82578081fd5b8135610e198161229e565b600060208284031215611a9e578081fd5b8151610e198161229e565b600060208284031215611aba578081fd5b813567ffffffffffffffff811115611ad0578182fd5b8201601f81018413611ae0578182fd5b611073848235602084016117fa565b60008151808452611b078160208601602086016121c6565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351611b4a8184602088016121c6565b835190830190611b5e8183602088016121c6565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bae90830184611aef565b9695505050505050565b901515815260200190565b90815260200190565b600060208252610e196020830184611aef565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600b908201526a1b9bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252601290820152716e6f742077686974656c6973742073616c6560701b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601290820152711b585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601190820152701dda1a5d195b1a5cdd0818db185a5b5959607a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252600f908201526e6e6f74207075626c69632073616c6560881b604082015260600190565b6020808252601190820152701ddc9bdb99c8185b5bdd5b9d081c185a59607a1b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b600082198211156121775761217761225c565b500190565b60008261218b5761218b612272565b500490565b60008160001904831182151516156121aa576121aa61225c565b500290565b6000828210156121c1576121c161225c565b500390565b60005b838110156121e15781810151838201526020016121c9565b83811115610d975750506000910152565b60028104600182168061220657607f821691505b6020821081141561222757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122415761224161225c565b5060010190565b60008261225757612257612272565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f4757600080fdfea264697066735822122067e44dac5d881251aadf529dda8739a9c1e540b31ab3e84d7c1de4ef9d87a50964736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000011874b5115849131943352616b317154b5fc79eb
-----Decoded View---------------
Arg [0] : projectOwner_ (address): 0x11874B5115849131943352616b317154B5Fc79eb
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000011874b5115849131943352616b317154b5fc79eb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.