Overview
Max Total Supply
10,000 ARCLAND
Holders
4,904
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 ARCLANDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ArcadeLand
Compiler Version
v0.8.1+commit.df193b15
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** * @title ArcadeLand contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract ArcadeLand is ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounterStandardLands; Counters.Counter private _tokenIdCounterLargeLands; Counters.Counter private _tokenIdCounterXLargeLands; Counters.Counter private _tokenIdCounterMegaLands; bool public onlyWhitelisted = false; bool public openMint = false; mapping (address => uint256) whitelist; mapping (address => uint256) addressList; struct LandSpec { uint256 price; uint256 maxSupply; uint256 startingTokenId; } enum Size { Standard, Large, XLarge, Mega } mapping (Size => LandSpec) landSpecs; string private _contractURI; string public baseURI = ""; uint256 public maxMintPerTx = 3; uint256 public maxMintPerWL = 2; uint256 public maxMintPerAddress = 5; bytes32 public whitelistMerkleRoot; constructor() ERC721("Arcade Land", "ARCLAND") { landSpecs[Size.Mega] = LandSpec(3 ether, 100, 1); landSpecs[Size.XLarge] = LandSpec(.75 ether, 1900, 101); landSpecs[Size.Large] = LandSpec(.5 ether, 3000, 2001); landSpecs[Size.Standard] = LandSpec(.25 ether, 5000, 5001); } function setMaxMintPerWL(uint256 _maxMint) external onlyOwner { maxMintPerWL = _maxMint; } function setMaxMintPerTx(uint256 _maxMint) external onlyOwner { maxMintPerTx = _maxMint; } function setMaxMintPerAddress(uint256 _maxMint) external onlyOwner { maxMintPerAddress = _maxMint; } //Set Base URI function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner { whitelistMerkleRoot = _merkleRoot; } function getSpec(Size size) private view returns (LandSpec memory) { return landSpecs[size]; } function setPrice(Size size, uint256 _newPrice) external onlyOwner { landSpecs[size].price = _newPrice; } function setSupply(Size size, uint256 _newSupply) external onlyOwner { require(_newSupply < landSpecs[size].maxSupply, "supply cannot be greater"); landSpecs[size].maxSupply = _newSupply; } function flipWhitelistedState() public onlyOwner { onlyWhitelisted = !onlyWhitelisted; } function flipMintState() public onlyOwner { openMint = !openMint; } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId))) : ""; } modifier onlyEOA() { require(msg.sender == tx.origin, "no contracts please"); _; } modifier mintCompliance(Size size, uint256 quantity) { require(openMint, "public sale not open"); require(quantity <= maxMintPerTx, "over limit"); require(addressList[msg.sender] + quantity <= maxMintPerAddress, "over address limit"); LandSpec memory land = landSpecs[size]; require(totalSupplyBySize(size) + quantity <= land.maxSupply, "over supply"); require(msg.value >= land.price * quantity, "not enough ether sent"); _; } modifier mintComplianceWithWL(Size size, uint256 quantity) { require(onlyWhitelisted, "whitelist mint not open"); require(whitelist[msg.sender] + quantity <= maxMintPerWL, "over WL limit"); LandSpec memory land = landSpecs[size]; require(totalSupplyBySize(size) + quantity <= land.maxSupply, "over supply"); require(msg.value >= land.price * quantity, "not enough ether sent"); _; } modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address does not exist in list" ); _; } function mintStandardLands(uint256 quantity) external payable { _mint(Size.Standard, quantity); } function mintStandardLandsWhitelist(bytes32[] calldata merkleProof, uint256 quantity) external payable { _mintWithWL(Size.Standard, quantity, merkleProof); } function mintStandardLandsForAddress(uint256 quantity, address receiver) external onlyOwner { _mintForAddress(Size.Standard, quantity, receiver); } function mintLargeLands(uint256 quantity) external payable { _mint(Size.Large, quantity); } function mintLargeLandsWhitelist(bytes32[] calldata merkleProof, uint256 quantity) external payable { _mintWithWL(Size.Large, quantity, merkleProof); } function mintLargeLandsForAddress(uint256 quantity, address receiver) external onlyOwner { _mintForAddress(Size.Large, quantity, receiver); } function mintXLargeLands(uint256 quantity) external payable { _mint(Size.XLarge, quantity); } function mintXLargeLandsWhitelist(bytes32[] calldata merkleProof, uint256 quantity) external payable { _mintWithWL(Size.XLarge, quantity, merkleProof); } function mintXLargeLandsForAddress(uint256 quantity, address receiver) external onlyOwner { _mintForAddress(Size.XLarge, quantity, receiver); } function mintMegaLands(uint256 quantity) external payable { _mint(Size.Mega, quantity); } function mintMegaLandsWhitelist(bytes32[] calldata merkleProof, uint256 quantity) external payable { _mintWithWL(Size.Mega, quantity, merkleProof); } function mintMegaLandsForAddress(uint256 quantity, address receiver) external onlyOwner { _mintForAddress(Size.Mega, quantity, receiver); } function _mint(Size size, uint256 quantity) internal onlyEOA mintCompliance(size, quantity) { addressList[msg.sender] += quantity; _safeMintLoop(size, quantity, msg.sender); } function _mintWithWL( Size size, uint256 quantity, bytes32[] calldata merkleProof ) internal onlyEOA isValidMerkleProof(merkleProof, whitelistMerkleRoot) mintComplianceWithWL(size, quantity) { whitelist[msg.sender] += quantity; _safeMintLoop(size, quantity, msg.sender); } function _mintForAddress(Size size, uint256 quantity, address receiver) internal onlyOwner { LandSpec memory land = landSpecs[size]; require(totalSupplyBySize(size) + quantity <= land.maxSupply, "over supply"); _safeMintLoop(size, quantity, receiver); } function _safeMintLoop(Size size, uint256 quantity, address to) internal { for (uint256 i = 0; i < quantity; i++) { uint256 tokenId = totalSupplyBySize(size) + getSpec(size).startingTokenId; increaseSupplyBySize(size); _safeMint(to, tokenId); } } function getCounter(Size size) private view returns (Counters.Counter storage) { if (size == Size.Mega) { return _tokenIdCounterMegaLands; } if (size == Size.XLarge) { return _tokenIdCounterXLargeLands; } if (size == Size.Large) { return _tokenIdCounterLargeLands; } if (size == Size.Standard) { return _tokenIdCounterStandardLands; } revert("invalid size"); } function totalSupplyBySize(Size size) public view returns (uint) { return getCounter(size).current(); } function increaseSupplyBySize(Size size) internal { getCounter(size).increment(); } function maxSupplyBySize(Size size) public view returns (uint) { return getSpec(size).maxSupply; } function priceBySize(Size size) external view returns (uint) { return getSpec(size).price; } function withdraw(address receiver) public onlyOwner { uint256 balance = address(this).balance; payable(receiver).transfer(balance); } }
// 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 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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 (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 (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 // 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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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/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": 1000 }, "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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistedState","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":[{"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":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum ArcadeLand.Size","name":"size","type":"uint8"}],"name":"maxSupplyBySize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintLargeLands","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintLargeLandsForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintLargeLandsWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMegaLands","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintMegaLandsForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMegaLandsWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintStandardLands","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintStandardLandsForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintStandardLandsWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintXLargeLands","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintXLargeLandsForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintXLargeLandsWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum ArcadeLand.Size","name":"size","type":"uint8"}],"name":"priceBySize","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMintPerWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ArcadeLand.Size","name":"size","type":"uint8"},{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ArcadeLand.Size","name":"size","type":"uint8"},{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"enum ArcadeLand.Size","name":"size","type":"uint8"}],"name":"totalSupplyBySize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600f805461ffff1916905560a0604081905260006080819052620000269160149162000380565b506003601555600260165560056017553480156200004357600080fd5b50604080518082018252600b81526a105c98d859194813185b9960aa1b602080830191825283518085019094526007845266105490d310539160ca1b908401528151919291620000969160009162000380565b508051620000ac90600190602084019062000380565b505050620000c9620000c36200032a60201b60201c565b6200032e565b60408051606080820183526729a2241af62c0000825260646020808401918252600184860181815260036000908152601280855296517f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976a5593517f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976b55517f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976c5585518085018752670a688906bd8b0000815261076c81840190815260658289019081526002865287855291517f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b255517f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b355517f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b455855180850187526706f05b59d3b200008152610bb88184019081526107d182890190815292855286845290517f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a355517f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a455517f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a555845192830185526703782dace9d90000835261138883820190815261138995840195865291805292909252517f7e7fa33969761a458e04f477e039a608702b4f924981d6653935a8319a08ad7b55517f7e7fa33969761a458e04f477e039a608702b4f924981d6653935a8319a08ad7c55517f7e7fa33969761a458e04f477e039a608702b4f924981d6653935a8319a08ad7d5562000463565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200038e9062000426565b90600052602060002090601f016020900481019282620003b25760008555620003fd565b82601f10620003cd57805160ff1916838001178555620003fd565b82800160010185558215620003fd579182015b82811115620003fd578251825591602001919060010190620003e0565b506200040b9291506200040f565b5090565b5b808211156200040b576000815560010162000410565b6002810460018216806200043b57607f821691505b602082108114156200045d57634e487b7160e01b600052602260045260246000fd5b50919050565b61355580620004736000396000f3fe6080604052600436106103345760003560e01c80636a00670b116101b0578063aa98e0c6116100ec578063d01653ec11610095578063f2fde38b1161006f578063f2fde38b14610870578063f9fa35f914610890578063fac12c5f146108a3578063feafe043146108b657610334565b8063d01653ec1461081b578063de7fcb1d1461083b578063e985e9c51461085057610334565b8063bd32fb66116100c6578063bd32fb66146107bb578063c87b56dd146107db578063ccbc03a6146107fb57610334565b8063aa98e0c614610771578063b88d4fde14610786578063bce6d672146107a657610334565b80638c29eb241161015957806395d89b411161013357806395d89b41146107145780639c70b51214610729578063a0f3f6ab1461073e578063a22cb4651461075157610334565b80638c29eb24146106ca5780638da5cb5b146106df57806392fec46d146106f457610334565b8063715018a61161018a578063715018a6146106825780637fd278a8146106975780638362cac7146106aa57610334565b80636a00670b1461062d5780636c0360eb1461064d57806370a082311461066257610334565b80633e6302741161027f57806355f804b3116102285780635d194115116102025780635d194115146105c7578063616cdb1e146105da57806362ef1461146105fa5780636352211e1461060d57610334565b806355f804b31461057d578063572849c41461059d57806359c74f29146105b257610334565b80634f6ccce7116102595780634f6ccce71461051d57806351cff8d91461053d57806353a631c11461055d57610334565b80633e630274146104ca57806341da273e146104dd57806342842e0e146104fd57610334565b806323b872dd116102e1578063309bce5a116102bb578063309bce5a1461047757806336b045a0146104975780633c1d8d93146104aa57610334565b806323b872dd146104225780632c4889e4146104425780632f745c591461045757610334565b8063095ea7b311610312578063095ea7b3146103be57806318160ddd146103e05780631e14d44b1461040257610334565b806301ffc9a71461033957806306fdde031461036f578063081812fc14610391575b600080fd5b34801561034557600080fd5b506103596103543660046129e2565b6108d6565b6040516103669190612b7f565b60405180910390f35b34801561037b57600080fd5b5061038461091c565b6040516103669190612b93565b34801561039d57600080fd5b506103b16103ac3660046129ca565b6109ae565b6040516103669190612b2f565b3480156103ca57600080fd5b506103de6103d936600461292c565b6109fa565b005b3480156103ec57600080fd5b506103f5610a92565b6040516103669190612b8a565b34801561040e57600080fd5b506103de61041d3660046129ca565b610a98565b34801561042e57600080fd5b506103de61043d36600461283e565b610adc565b34801561044e57600080fd5b506103f5610b14565b34801561046357600080fd5b506103f561047236600461292c565b610b1a565b34801561048357600080fd5b506103de610492366004612a95565b610b6c565b6103de6104a5366004612955565b610bbb565b3480156104b657600080fd5b506103f56104c5366004612a1a565b610bc8565b6103de6104d83660046129ca565b610bdd565b3480156104e957600080fd5b506103f56104f8366004612a1a565b610beb565b34801561050957600080fd5b506103de61051836600461283e565b610bfd565b34801561052957600080fd5b506103f56105383660046129ca565b610c18565b34801561054957600080fd5b506103de6105583660046127f2565b610c73565b34801561056957600080fd5b506103f5610578366004612a1a565b610cea565b34801561058957600080fd5b506103de610598366004612a4f565b610cfd565b3480156105a957600080fd5b506103f5610d4f565b3480156105be57600080fd5b506103de610d55565b6103de6105d5366004612955565b610db1565b3480156105e657600080fd5b506103de6105f53660046129ca565b610dbe565b6103de6106083660046129ca565b610e02565b34801561061957600080fd5b506103b16106283660046129ca565b610e0d565b34801561063957600080fd5b506103de610648366004612a34565b610e42565b34801561065957600080fd5b50610384610eda565b34801561066e57600080fd5b506103f561067d3660046127f2565b610f68565b34801561068e57600080fd5b506103de610fac565b6103de6106a5366004612955565b610ff7565b3480156106b657600080fd5b506103de6106c5366004612a95565b611004565b3480156106d657600080fd5b506103de61104f565b3480156106eb57600080fd5b506103b16110a2565b34801561070057600080fd5b506103de61070f366004612a95565b6110b1565b34801561072057600080fd5b506103846110fc565b34801561073557600080fd5b5061035961110b565b6103de61074c366004612955565b611114565b34801561075d57600080fd5b506103de61076c3660046128f2565b611121565b34801561077d57600080fd5b506103f5611133565b34801561079257600080fd5b506103de6107a1366004612879565b611139565b3480156107b257600080fd5b50610359611178565b3480156107c757600080fd5b506103de6107d63660046129ca565b611186565b3480156107e757600080fd5b506103846107f63660046129ca565b6111ca565b34801561080757600080fd5b506103de610816366004612a34565b61124d565b34801561082757600080fd5b506103de610836366004612a95565b61135b565b34801561084757600080fd5b506103f56113a6565b34801561085c57600080fd5b5061035961086b36600461280c565b6113ac565b34801561087c57600080fd5b506103de61088b3660046127f2565b6113da565b6103de61089e3660046129ca565b611448565b6103de6108b13660046129ca565b611453565b3480156108c257600080fd5b506103de6108d13660046129ca565b61145e565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109145750610914826114a2565b90505b919050565b60606000805461092b9061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546109579061345d565b80156109a45780601f10610979576101008083540402835291602001916109a4565b820191906000526020600020905b81548152906001019060200180831161098757829003601f168201915b5050505050905090565b60006109b982611514565b6109de5760405162461bcd60e51b81526004016109d5906130b6565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a0582610e0d565b9050806001600160a01b0316836001600160a01b03161415610a395760405162461bcd60e51b81526004016109d590613213565b806001600160a01b0316610a4b611531565b6001600160a01b03161480610a675750610a678161086b611531565b610a835760405162461bcd60e51b81526004016109d590612f6a565b610a8d8383611535565b505050565b60085490565b610aa0611531565b6001600160a01b0316610ab16110a2565b6001600160a01b031614610ad75760405162461bcd60e51b81526004016109d590613139565b601755565b610aed610ae7611531565b826115b0565b610b095760405162461bcd60e51b81526004016109d590613270565b610a8d838383611635565b60165481565b6000610b2583610f68565b8210610b435760405162461bcd60e51b81526004016109d590612ca8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b74611531565b6001600160a01b0316610b856110a2565b6001600160a01b031614610bab5760405162461bcd60e51b81526004016109d590613139565b610bb760018383611775565b5050565b610a8d6003828585611874565b6000610bd382611a97565b6020015192915050565b610be8600182611b20565b50565b6000610bf682611a97565b5192915050565b610a8d83838360405180602001604052806000815250611139565b6000610c22610a92565b8210610c405760405162461bcd60e51b81526004016109d59061333b565b60088281548110610c6157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c7b611531565b6001600160a01b0316610c8c6110a2565b6001600160a01b031614610cb25760405162461bcd60e51b81526004016109d590613139565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a8d573d6000803e3d6000fd5b6000610914610cf883611ce0565b611dba565b610d05611531565b6001600160a01b0316610d166110a2565b6001600160a01b031614610d3c5760405162461bcd60e51b81526004016109d590613139565b8051610bb790601490602084019061269c565b60175481565b610d5d611531565b6001600160a01b0316610d6e6110a2565b6001600160a01b031614610d945760405162461bcd60e51b81526004016109d590613139565b600f805461ff001981166101009182900460ff1615909102179055565b610a8d6000828585611874565b610dc6611531565b6001600160a01b0316610dd76110a2565b6001600160a01b031614610dfd5760405162461bcd60e51b81526004016109d590613139565b601555565b610be8600082611b20565b6000818152600260205260408120546001600160a01b0316806109145760405162461bcd60e51b81526004016109d590613024565b610e4a611531565b6001600160a01b0316610e5b6110a2565b6001600160a01b031614610e815760405162461bcd60e51b81526004016109d590613139565b8060126000846003811115610ea657634e487b7160e01b600052602160045260246000fd5b6003811115610ec557634e487b7160e01b600052602160045260246000fd5b81526020810191909152604001600020555050565b60148054610ee79061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f139061345d565b8015610f605780601f10610f3557610100808354040283529160200191610f60565b820191906000526020600020905b815481529060010190602001808311610f4357829003601f168201915b505050505081565b60006001600160a01b038216610f905760405162461bcd60e51b81526004016109d590612fc7565b506001600160a01b031660009081526003602052604090205490565b610fb4611531565b6001600160a01b0316610fc56110a2565b6001600160a01b031614610feb5760405162461bcd60e51b81526004016109d590613139565b610ff56000611dbe565b565b610a8d6001828585611874565b61100c611531565b6001600160a01b031661101d6110a2565b6001600160a01b0316146110435760405162461bcd60e51b81526004016109d590613139565b610bb760008383611775565b611057611531565b6001600160a01b03166110686110a2565b6001600160a01b03161461108e5760405162461bcd60e51b81526004016109d590613139565b600f805460ff19811660ff90911615179055565b600a546001600160a01b031690565b6110b9611531565b6001600160a01b03166110ca6110a2565b6001600160a01b0316146110f05760405162461bcd60e51b81526004016109d590613139565b610bb760038383611775565b60606001805461092b9061345d565b600f5460ff1681565b610a8d6002828585611874565b610bb761112c611531565b8383611e1d565b60185481565b61114a611144611531565b836115b0565b6111665760405162461bcd60e51b81526004016109d590613270565b61117284848484611ec0565b50505050565b600f54610100900460ff1681565b61118e611531565b6001600160a01b031661119f6110a2565b6001600160a01b0316146111c55760405162461bcd60e51b81526004016109d590613139565b601855565b60606111d582611514565b6111f15760405162461bcd60e51b81526004016109d590612c14565b60006111fb611ef3565b9050600081511161121b5760405180602001604052806000815250611246565b8061122584611f02565b604051602001611236929190612b00565b6040516020818303038152906040525b9392505050565b611255611531565b6001600160a01b03166112666110a2565b6001600160a01b03161461128c5760405162461bcd60e51b81526004016109d590613139565b601260008360038111156112b057634e487b7160e01b600052602160045260246000fd5b60038111156112cf57634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206001015481106112ff5760405162461bcd60e51b81526004016109d590612c71565b806012600084600381111561132457634e487b7160e01b600052602160045260246000fd5b600381111561134357634e487b7160e01b600052602160045260246000fd5b81526020810191909152604001600020600101555050565b611363611531565b6001600160a01b03166113746110a2565b6001600160a01b03161461139a5760405162461bcd60e51b81526004016109d590613139565b610bb760028383611775565b60155481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6113e2611531565b6001600160a01b03166113f36110a2565b6001600160a01b0316146114195760405162461bcd60e51b81526004016109d590613139565b6001600160a01b03811661143f5760405162461bcd60e51b81526004016109d590612d62565b610be881611dbe565b610be8600282611b20565b610be8600382611b20565b611466611531565b6001600160a01b03166114776110a2565b6001600160a01b03161461149d5760405162461bcd60e51b81526004016109d590613139565b601655565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061150557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610914575061091482612051565b6000908152600260205260409020546001600160a01b0316151590565b3390565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061157782610e0d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115bb82611514565b6115d75760405162461bcd60e51b81526004016109d590612ee7565b60006115e283610e0d565b9050806001600160a01b0316846001600160a01b0316148061161d5750836001600160a01b0316611612846109ae565b6001600160a01b0316145b8061162d575061162d81856113ac565b949350505050565b826001600160a01b031661164882610e0d565b6001600160a01b03161461166e5760405162461bcd60e51b81526004016109d590612dbf565b6001600160a01b0382166116945760405162461bcd60e51b81526004016109d590612e53565b61169f838383612083565b6116aa600082611535565b6001600160a01b03831660009081526003602052604081208054600192906116d390849061341a565b90915550506001600160a01b03821660009081526003602052604081208054600192906117019084906133cf565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610a8d838383610a8d565b61177d611531565b6001600160a01b031661178e6110a2565b6001600160a01b0316146117b45760405162461bcd60e51b81526004016109d590613139565b6000601260008560038111156117da57634e487b7160e01b600052602160045260246000fd5b60038111156117f957634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905080602001518361184186610cea565b61184b91906133cf565b11156118695760405162461bcd60e51b81526004016109d5906131dc565b61117284848461210c565b3332146118935760405162461bcd60e51b81526004016109d5906132cd565b81816018546118fc838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040518592506118e191503390602001612ae3565b60405160208183030381529060405280519060200120612161565b6119185760405162461bcd60e51b81526004016109d590612f33565b600f548790879060ff1661193e5760405162461bcd60e51b81526004016109d590612bdd565b6016543360009081526010602052604090205461195c9083906133cf565b111561197a5760405162461bcd60e51b81526004016109d59061316e565b6000601260008460038111156119a057634e487b7160e01b600052602160045260246000fd5b60038111156119bf57634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050806020015182611a0785610cea565b611a1191906133cf565b1115611a2f5760405162461bcd60e51b81526004016109d5906131dc565b8051611a3c9083906133fb565b341015611a5b5760405162461bcd60e51b81526004016109d5906131a5565b33600090815260106020526040812080548b9290611a7a9084906133cf565b90915550611a8b90508a8a3361210c565b50505050505050505050565b611a9f612720565b60126000836003811115611ac357634e487b7160e01b600052602160045260246000fd5b6003811115611ae257634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050919050565b333214611b3f5760405162461bcd60e51b81526004016109d5906132cd565b600f5482908290610100900460ff16611b6a5760405162461bcd60e51b81526004016109d590613102565b601554811115611b8c5760405162461bcd60e51b81526004016109d590612ba6565b60175433600090815260116020526040902054611baa9083906133cf565b1115611bc85760405162461bcd60e51b81526004016109d590613398565b600060126000846003811115611bee57634e487b7160e01b600052602160045260246000fd5b6003811115611c0d57634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050806020015182611c5585610cea565b611c5f91906133cf565b1115611c7d5760405162461bcd60e51b81526004016109d5906131dc565b8051611c8a9083906133fb565b341015611ca95760405162461bcd60e51b81526004016109d5906131a5565b3360009081526011602052604081208054869290611cc89084906133cf565b90915550611cd9905085853361210c565b5050505050565b60006003826003811115611d0457634e487b7160e01b600052602160045260246000fd5b1415611d125750600e610917565b6002826003811115611d3457634e487b7160e01b600052602160045260246000fd5b1415611d425750600d610917565b6001826003811115611d6457634e487b7160e01b600052602160045260246000fd5b1415611d725750600c610917565b6000826003811115611d9457634e487b7160e01b600052602160045260246000fd5b1415611da25750600b610917565b60405162461bcd60e51b81526004016109d590613304565b5490565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e4f5760405162461bcd60e51b81526004016109d590612eb0565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611eb3908590612b7f565b60405180910390a3505050565b611ecb848484611635565b611ed784848484612177565b6111725760405162461bcd60e51b81526004016109d590612d05565b60606014805461092b9061345d565b606081611f43575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610917565b8160005b8115611f6d5780611f5781613498565b9150611f669050600a836133e7565b9150611f47565b60008167ffffffffffffffff811115611f9657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fc0576020820181803683370190505b5090505b841561162d57611fd560018361341a565b9150611fe2600a866134b3565b611fed9060306133cf565b60f81b81838151811061201057634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061204a600a866133e7565b9450611fc4565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b61208e838383610a8d565b6001600160a01b0383166120aa576120a5816122ab565b6120cd565b816001600160a01b0316836001600160a01b0316146120cd576120cd83826122ef565b6001600160a01b0382166120e9576120e48161238c565b610a8d565b826001600160a01b0316826001600160a01b031614610a8d57610a8d8282612465565b60005b8281101561117257600061212285611a97565b6040015161212f86610cea565b61213991906133cf565b9050612144856124a9565b61214e83826124ba565b508061215981613498565b91505061210f565b60008261216e85846124d4565b14949350505050565b600061218b846001600160a01b031661254e565b156122a057836001600160a01b031663150b7a026121a7611531565b8786866040518563ffffffff1660e01b81526004016121c99493929190612b43565b602060405180830381600087803b1580156121e357600080fd5b505af1925050508015612213575060408051601f3d908101601f19168201909252612210918101906129fe565b60015b61226d573d808015612241576040519150601f19603f3d011682016040523d82523d6000602084013e612246565b606091505b5080516122655760405162461bcd60e51b81526004016109d590612d05565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061162d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016122fc84610f68565b612306919061341a565b600083815260076020526040902054909150808214612359576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061239e9060019061341a565b600083815260096020526040812054600880549394509092849081106123d457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061240357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061244957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061247083610f68565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b610be86124b582611ce0565b61255d565b610bb7828260405180602001604052806000815250612566565b600081815b845181101561254657600085828151811061250457634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116125265761251f8382612599565b9250612533565b6125308184612599565b92505b508061253e81613498565b9150506124d9565b509392505050565b6001600160a01b03163b151590565b80546001019055565b61257083836125a8565b61257d6000848484612177565b610a8d5760405162461bcd60e51b81526004016109d590612d05565b60009182526020526040902090565b6001600160a01b0382166125ce5760405162461bcd60e51b81526004016109d590613081565b6125d781611514565b156125f45760405162461bcd60e51b81526004016109d590612e1c565b61260060008383612083565b6001600160a01b03821660009081526003602052604081208054600192906126299084906133cf565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610bb760008383610a8d565b8280546126a89061345d565b90600052602060002090601f0160209004810192826126ca5760008555612710565b82601f106126e357805160ff1916838001178555612710565b82800160010185558215612710579182015b828111156127105782518255916020019190600101906126f5565b5061271c929150612741565b5090565b60405180606001604052806000815260200160008152602001600081525090565b5b8082111561271c5760008155600101612742565b600067ffffffffffffffff80841115612771576127716134f3565b604051601f8501601f19908116603f01168101908282118183101715612799576127996134f3565b816040528093508581528686860111156127b257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461091757600080fd5b80356004811061091757600080fd5b600060208284031215612803578081fd5b611246826127cc565b6000806040838503121561281e578081fd5b612827836127cc565b9150612835602084016127cc565b90509250929050565b600080600060608486031215612852578081fd5b61285b846127cc565b9250612869602085016127cc565b9150604084013590509250925092565b6000806000806080858703121561288e578081fd5b612897856127cc565b93506128a5602086016127cc565b925060408501359150606085013567ffffffffffffffff8111156128c7578182fd5b8501601f810187136128d7578182fd5b6128e687823560208401612756565b91505092959194509250565b60008060408385031215612904578182fd5b61290d836127cc565b915060208301358015158114612921578182fd5b809150509250929050565b6000806040838503121561293e578182fd5b612947836127cc565b946020939093013593505050565b600080600060408486031215612969578283fd5b833567ffffffffffffffff80821115612980578485fd5b818601915086601f830112612993578485fd5b8135818111156129a1578586fd5b87602080830285010111156129b4578586fd5b6020928301989097509590910135949350505050565b6000602082840312156129db578081fd5b5035919050565b6000602082840312156129f3578081fd5b813561124681613509565b600060208284031215612a0f578081fd5b815161124681613509565b600060208284031215612a2b578081fd5b611246826127e3565b60008060408385031215612a46578182fd5b612947836127e3565b600060208284031215612a60578081fd5b813567ffffffffffffffff811115612a76578182fd5b8201601f81018413612a86578182fd5b61162d84823560208401612756565b60008060408385031215612aa7578182fd5b82359150612835602084016127cc565b60008151808452612acf816020860160208601613431565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351612b12818460208801613431565b835190830190612b26818360208801613431565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b756080830184612ab7565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526112466020830184612ab7565b6020808252600a908201527f6f766572206c696d697400000000000000000000000000000000000000000000604082015260600190565b60208082526017908201527f77686974656c697374206d696e74206e6f74206f70656e000000000000000000604082015260600190565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560408201527f6e00000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f737570706c792063616e6e6f7420626520677265617465720000000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201527f74206f6620626f756e6473000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201527f6f776e6572000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526014908201527f7075626c69632073616c65206e6f74206f70656e000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201527f6f76657220574c206c696d697400000000000000000000000000000000000000604082015260600190565b60208082526015908201527f6e6f7420656e6f7567682065746865722073656e740000000000000000000000604082015260600190565b6020808252600b908201527f6f76657220737570706c79000000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b60208082526013908201527f6e6f20636f6e74726163747320706c6561736500000000000000000000000000604082015260600190565b6020808252600c908201527f696e76616c69642073697a650000000000000000000000000000000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201527f7574206f6620626f756e64730000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f6f7665722061646472657373206c696d69740000000000000000000000000000604082015260600190565b600082198211156133e2576133e26134c7565b500190565b6000826133f6576133f66134dd565b500490565b6000816000190483118215151615613415576134156134c7565b500290565b60008282101561342c5761342c6134c7565b500390565b60005b8381101561344c578181015183820152602001613434565b838111156111725750506000910152565b60028104600182168061347157607f821691505b6020821081141561349257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134ac576134ac6134c7565b5060010190565b6000826134c2576134c26134dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610be857600080fdfea2646970667358221220be21a7da63517419c01cdbcb7ea3d52bab5ae81baf0196e04a002551293b603964736f6c63430008010033
Deployed Bytecode
0x6080604052600436106103345760003560e01c80636a00670b116101b0578063aa98e0c6116100ec578063d01653ec11610095578063f2fde38b1161006f578063f2fde38b14610870578063f9fa35f914610890578063fac12c5f146108a3578063feafe043146108b657610334565b8063d01653ec1461081b578063de7fcb1d1461083b578063e985e9c51461085057610334565b8063bd32fb66116100c6578063bd32fb66146107bb578063c87b56dd146107db578063ccbc03a6146107fb57610334565b8063aa98e0c614610771578063b88d4fde14610786578063bce6d672146107a657610334565b80638c29eb241161015957806395d89b411161013357806395d89b41146107145780639c70b51214610729578063a0f3f6ab1461073e578063a22cb4651461075157610334565b80638c29eb24146106ca5780638da5cb5b146106df57806392fec46d146106f457610334565b8063715018a61161018a578063715018a6146106825780637fd278a8146106975780638362cac7146106aa57610334565b80636a00670b1461062d5780636c0360eb1461064d57806370a082311461066257610334565b80633e6302741161027f57806355f804b3116102285780635d194115116102025780635d194115146105c7578063616cdb1e146105da57806362ef1461146105fa5780636352211e1461060d57610334565b806355f804b31461057d578063572849c41461059d57806359c74f29146105b257610334565b80634f6ccce7116102595780634f6ccce71461051d57806351cff8d91461053d57806353a631c11461055d57610334565b80633e630274146104ca57806341da273e146104dd57806342842e0e146104fd57610334565b806323b872dd116102e1578063309bce5a116102bb578063309bce5a1461047757806336b045a0146104975780633c1d8d93146104aa57610334565b806323b872dd146104225780632c4889e4146104425780632f745c591461045757610334565b8063095ea7b311610312578063095ea7b3146103be57806318160ddd146103e05780631e14d44b1461040257610334565b806301ffc9a71461033957806306fdde031461036f578063081812fc14610391575b600080fd5b34801561034557600080fd5b506103596103543660046129e2565b6108d6565b6040516103669190612b7f565b60405180910390f35b34801561037b57600080fd5b5061038461091c565b6040516103669190612b93565b34801561039d57600080fd5b506103b16103ac3660046129ca565b6109ae565b6040516103669190612b2f565b3480156103ca57600080fd5b506103de6103d936600461292c565b6109fa565b005b3480156103ec57600080fd5b506103f5610a92565b6040516103669190612b8a565b34801561040e57600080fd5b506103de61041d3660046129ca565b610a98565b34801561042e57600080fd5b506103de61043d36600461283e565b610adc565b34801561044e57600080fd5b506103f5610b14565b34801561046357600080fd5b506103f561047236600461292c565b610b1a565b34801561048357600080fd5b506103de610492366004612a95565b610b6c565b6103de6104a5366004612955565b610bbb565b3480156104b657600080fd5b506103f56104c5366004612a1a565b610bc8565b6103de6104d83660046129ca565b610bdd565b3480156104e957600080fd5b506103f56104f8366004612a1a565b610beb565b34801561050957600080fd5b506103de61051836600461283e565b610bfd565b34801561052957600080fd5b506103f56105383660046129ca565b610c18565b34801561054957600080fd5b506103de6105583660046127f2565b610c73565b34801561056957600080fd5b506103f5610578366004612a1a565b610cea565b34801561058957600080fd5b506103de610598366004612a4f565b610cfd565b3480156105a957600080fd5b506103f5610d4f565b3480156105be57600080fd5b506103de610d55565b6103de6105d5366004612955565b610db1565b3480156105e657600080fd5b506103de6105f53660046129ca565b610dbe565b6103de6106083660046129ca565b610e02565b34801561061957600080fd5b506103b16106283660046129ca565b610e0d565b34801561063957600080fd5b506103de610648366004612a34565b610e42565b34801561065957600080fd5b50610384610eda565b34801561066e57600080fd5b506103f561067d3660046127f2565b610f68565b34801561068e57600080fd5b506103de610fac565b6103de6106a5366004612955565b610ff7565b3480156106b657600080fd5b506103de6106c5366004612a95565b611004565b3480156106d657600080fd5b506103de61104f565b3480156106eb57600080fd5b506103b16110a2565b34801561070057600080fd5b506103de61070f366004612a95565b6110b1565b34801561072057600080fd5b506103846110fc565b34801561073557600080fd5b5061035961110b565b6103de61074c366004612955565b611114565b34801561075d57600080fd5b506103de61076c3660046128f2565b611121565b34801561077d57600080fd5b506103f5611133565b34801561079257600080fd5b506103de6107a1366004612879565b611139565b3480156107b257600080fd5b50610359611178565b3480156107c757600080fd5b506103de6107d63660046129ca565b611186565b3480156107e757600080fd5b506103846107f63660046129ca565b6111ca565b34801561080757600080fd5b506103de610816366004612a34565b61124d565b34801561082757600080fd5b506103de610836366004612a95565b61135b565b34801561084757600080fd5b506103f56113a6565b34801561085c57600080fd5b5061035961086b36600461280c565b6113ac565b34801561087c57600080fd5b506103de61088b3660046127f2565b6113da565b6103de61089e3660046129ca565b611448565b6103de6108b13660046129ca565b611453565b3480156108c257600080fd5b506103de6108d13660046129ca565b61145e565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109145750610914826114a2565b90505b919050565b60606000805461092b9061345d565b80601f01602080910402602001604051908101604052809291908181526020018280546109579061345d565b80156109a45780601f10610979576101008083540402835291602001916109a4565b820191906000526020600020905b81548152906001019060200180831161098757829003601f168201915b5050505050905090565b60006109b982611514565b6109de5760405162461bcd60e51b81526004016109d5906130b6565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a0582610e0d565b9050806001600160a01b0316836001600160a01b03161415610a395760405162461bcd60e51b81526004016109d590613213565b806001600160a01b0316610a4b611531565b6001600160a01b03161480610a675750610a678161086b611531565b610a835760405162461bcd60e51b81526004016109d590612f6a565b610a8d8383611535565b505050565b60085490565b610aa0611531565b6001600160a01b0316610ab16110a2565b6001600160a01b031614610ad75760405162461bcd60e51b81526004016109d590613139565b601755565b610aed610ae7611531565b826115b0565b610b095760405162461bcd60e51b81526004016109d590613270565b610a8d838383611635565b60165481565b6000610b2583610f68565b8210610b435760405162461bcd60e51b81526004016109d590612ca8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b74611531565b6001600160a01b0316610b856110a2565b6001600160a01b031614610bab5760405162461bcd60e51b81526004016109d590613139565b610bb760018383611775565b5050565b610a8d6003828585611874565b6000610bd382611a97565b6020015192915050565b610be8600182611b20565b50565b6000610bf682611a97565b5192915050565b610a8d83838360405180602001604052806000815250611139565b6000610c22610a92565b8210610c405760405162461bcd60e51b81526004016109d59061333b565b60088281548110610c6157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c7b611531565b6001600160a01b0316610c8c6110a2565b6001600160a01b031614610cb25760405162461bcd60e51b81526004016109d590613139565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a8d573d6000803e3d6000fd5b6000610914610cf883611ce0565b611dba565b610d05611531565b6001600160a01b0316610d166110a2565b6001600160a01b031614610d3c5760405162461bcd60e51b81526004016109d590613139565b8051610bb790601490602084019061269c565b60175481565b610d5d611531565b6001600160a01b0316610d6e6110a2565b6001600160a01b031614610d945760405162461bcd60e51b81526004016109d590613139565b600f805461ff001981166101009182900460ff1615909102179055565b610a8d6000828585611874565b610dc6611531565b6001600160a01b0316610dd76110a2565b6001600160a01b031614610dfd5760405162461bcd60e51b81526004016109d590613139565b601555565b610be8600082611b20565b6000818152600260205260408120546001600160a01b0316806109145760405162461bcd60e51b81526004016109d590613024565b610e4a611531565b6001600160a01b0316610e5b6110a2565b6001600160a01b031614610e815760405162461bcd60e51b81526004016109d590613139565b8060126000846003811115610ea657634e487b7160e01b600052602160045260246000fd5b6003811115610ec557634e487b7160e01b600052602160045260246000fd5b81526020810191909152604001600020555050565b60148054610ee79061345d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f139061345d565b8015610f605780601f10610f3557610100808354040283529160200191610f60565b820191906000526020600020905b815481529060010190602001808311610f4357829003601f168201915b505050505081565b60006001600160a01b038216610f905760405162461bcd60e51b81526004016109d590612fc7565b506001600160a01b031660009081526003602052604090205490565b610fb4611531565b6001600160a01b0316610fc56110a2565b6001600160a01b031614610feb5760405162461bcd60e51b81526004016109d590613139565b610ff56000611dbe565b565b610a8d6001828585611874565b61100c611531565b6001600160a01b031661101d6110a2565b6001600160a01b0316146110435760405162461bcd60e51b81526004016109d590613139565b610bb760008383611775565b611057611531565b6001600160a01b03166110686110a2565b6001600160a01b03161461108e5760405162461bcd60e51b81526004016109d590613139565b600f805460ff19811660ff90911615179055565b600a546001600160a01b031690565b6110b9611531565b6001600160a01b03166110ca6110a2565b6001600160a01b0316146110f05760405162461bcd60e51b81526004016109d590613139565b610bb760038383611775565b60606001805461092b9061345d565b600f5460ff1681565b610a8d6002828585611874565b610bb761112c611531565b8383611e1d565b60185481565b61114a611144611531565b836115b0565b6111665760405162461bcd60e51b81526004016109d590613270565b61117284848484611ec0565b50505050565b600f54610100900460ff1681565b61118e611531565b6001600160a01b031661119f6110a2565b6001600160a01b0316146111c55760405162461bcd60e51b81526004016109d590613139565b601855565b60606111d582611514565b6111f15760405162461bcd60e51b81526004016109d590612c14565b60006111fb611ef3565b9050600081511161121b5760405180602001604052806000815250611246565b8061122584611f02565b604051602001611236929190612b00565b6040516020818303038152906040525b9392505050565b611255611531565b6001600160a01b03166112666110a2565b6001600160a01b03161461128c5760405162461bcd60e51b81526004016109d590613139565b601260008360038111156112b057634e487b7160e01b600052602160045260246000fd5b60038111156112cf57634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206001015481106112ff5760405162461bcd60e51b81526004016109d590612c71565b806012600084600381111561132457634e487b7160e01b600052602160045260246000fd5b600381111561134357634e487b7160e01b600052602160045260246000fd5b81526020810191909152604001600020600101555050565b611363611531565b6001600160a01b03166113746110a2565b6001600160a01b03161461139a5760405162461bcd60e51b81526004016109d590613139565b610bb760028383611775565b60155481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6113e2611531565b6001600160a01b03166113f36110a2565b6001600160a01b0316146114195760405162461bcd60e51b81526004016109d590613139565b6001600160a01b03811661143f5760405162461bcd60e51b81526004016109d590612d62565b610be881611dbe565b610be8600282611b20565b610be8600382611b20565b611466611531565b6001600160a01b03166114776110a2565b6001600160a01b03161461149d5760405162461bcd60e51b81526004016109d590613139565b601655565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061150557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610914575061091482612051565b6000908152600260205260409020546001600160a01b0316151590565b3390565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061157782610e0d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115bb82611514565b6115d75760405162461bcd60e51b81526004016109d590612ee7565b60006115e283610e0d565b9050806001600160a01b0316846001600160a01b0316148061161d5750836001600160a01b0316611612846109ae565b6001600160a01b0316145b8061162d575061162d81856113ac565b949350505050565b826001600160a01b031661164882610e0d565b6001600160a01b03161461166e5760405162461bcd60e51b81526004016109d590612dbf565b6001600160a01b0382166116945760405162461bcd60e51b81526004016109d590612e53565b61169f838383612083565b6116aa600082611535565b6001600160a01b03831660009081526003602052604081208054600192906116d390849061341a565b90915550506001600160a01b03821660009081526003602052604081208054600192906117019084906133cf565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610a8d838383610a8d565b61177d611531565b6001600160a01b031661178e6110a2565b6001600160a01b0316146117b45760405162461bcd60e51b81526004016109d590613139565b6000601260008560038111156117da57634e487b7160e01b600052602160045260246000fd5b60038111156117f957634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905080602001518361184186610cea565b61184b91906133cf565b11156118695760405162461bcd60e51b81526004016109d5906131dc565b61117284848461210c565b3332146118935760405162461bcd60e51b81526004016109d5906132cd565b81816018546118fc838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040518592506118e191503390602001612ae3565b60405160208183030381529060405280519060200120612161565b6119185760405162461bcd60e51b81526004016109d590612f33565b600f548790879060ff1661193e5760405162461bcd60e51b81526004016109d590612bdd565b6016543360009081526010602052604090205461195c9083906133cf565b111561197a5760405162461bcd60e51b81526004016109d59061316e565b6000601260008460038111156119a057634e487b7160e01b600052602160045260246000fd5b60038111156119bf57634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050806020015182611a0785610cea565b611a1191906133cf565b1115611a2f5760405162461bcd60e51b81526004016109d5906131dc565b8051611a3c9083906133fb565b341015611a5b5760405162461bcd60e51b81526004016109d5906131a5565b33600090815260106020526040812080548b9290611a7a9084906133cf565b90915550611a8b90508a8a3361210c565b50505050505050505050565b611a9f612720565b60126000836003811115611ac357634e487b7160e01b600052602160045260246000fd5b6003811115611ae257634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050919050565b333214611b3f5760405162461bcd60e51b81526004016109d5906132cd565b600f5482908290610100900460ff16611b6a5760405162461bcd60e51b81526004016109d590613102565b601554811115611b8c5760405162461bcd60e51b81526004016109d590612ba6565b60175433600090815260116020526040902054611baa9083906133cf565b1115611bc85760405162461bcd60e51b81526004016109d590613398565b600060126000846003811115611bee57634e487b7160e01b600052602160045260246000fd5b6003811115611c0d57634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050806020015182611c5585610cea565b611c5f91906133cf565b1115611c7d5760405162461bcd60e51b81526004016109d5906131dc565b8051611c8a9083906133fb565b341015611ca95760405162461bcd60e51b81526004016109d5906131a5565b3360009081526011602052604081208054869290611cc89084906133cf565b90915550611cd9905085853361210c565b5050505050565b60006003826003811115611d0457634e487b7160e01b600052602160045260246000fd5b1415611d125750600e610917565b6002826003811115611d3457634e487b7160e01b600052602160045260246000fd5b1415611d425750600d610917565b6001826003811115611d6457634e487b7160e01b600052602160045260246000fd5b1415611d725750600c610917565b6000826003811115611d9457634e487b7160e01b600052602160045260246000fd5b1415611da25750600b610917565b60405162461bcd60e51b81526004016109d590613304565b5490565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e4f5760405162461bcd60e51b81526004016109d590612eb0565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611eb3908590612b7f565b60405180910390a3505050565b611ecb848484611635565b611ed784848484612177565b6111725760405162461bcd60e51b81526004016109d590612d05565b60606014805461092b9061345d565b606081611f43575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610917565b8160005b8115611f6d5780611f5781613498565b9150611f669050600a836133e7565b9150611f47565b60008167ffffffffffffffff811115611f9657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fc0576020820181803683370190505b5090505b841561162d57611fd560018361341a565b9150611fe2600a866134b3565b611fed9060306133cf565b60f81b81838151811061201057634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061204a600a866133e7565b9450611fc4565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b61208e838383610a8d565b6001600160a01b0383166120aa576120a5816122ab565b6120cd565b816001600160a01b0316836001600160a01b0316146120cd576120cd83826122ef565b6001600160a01b0382166120e9576120e48161238c565b610a8d565b826001600160a01b0316826001600160a01b031614610a8d57610a8d8282612465565b60005b8281101561117257600061212285611a97565b6040015161212f86610cea565b61213991906133cf565b9050612144856124a9565b61214e83826124ba565b508061215981613498565b91505061210f565b60008261216e85846124d4565b14949350505050565b600061218b846001600160a01b031661254e565b156122a057836001600160a01b031663150b7a026121a7611531565b8786866040518563ffffffff1660e01b81526004016121c99493929190612b43565b602060405180830381600087803b1580156121e357600080fd5b505af1925050508015612213575060408051601f3d908101601f19168201909252612210918101906129fe565b60015b61226d573d808015612241576040519150601f19603f3d011682016040523d82523d6000602084013e612246565b606091505b5080516122655760405162461bcd60e51b81526004016109d590612d05565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061162d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016122fc84610f68565b612306919061341a565b600083815260076020526040902054909150808214612359576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061239e9060019061341a565b600083815260096020526040812054600880549394509092849081106123d457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061240357634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061244957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061247083610f68565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b610be86124b582611ce0565b61255d565b610bb7828260405180602001604052806000815250612566565b600081815b845181101561254657600085828151811061250457634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116125265761251f8382612599565b9250612533565b6125308184612599565b92505b508061253e81613498565b9150506124d9565b509392505050565b6001600160a01b03163b151590565b80546001019055565b61257083836125a8565b61257d6000848484612177565b610a8d5760405162461bcd60e51b81526004016109d590612d05565b60009182526020526040902090565b6001600160a01b0382166125ce5760405162461bcd60e51b81526004016109d590613081565b6125d781611514565b156125f45760405162461bcd60e51b81526004016109d590612e1c565b61260060008383612083565b6001600160a01b03821660009081526003602052604081208054600192906126299084906133cf565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610bb760008383610a8d565b8280546126a89061345d565b90600052602060002090601f0160209004810192826126ca5760008555612710565b82601f106126e357805160ff1916838001178555612710565b82800160010185558215612710579182015b828111156127105782518255916020019190600101906126f5565b5061271c929150612741565b5090565b60405180606001604052806000815260200160008152602001600081525090565b5b8082111561271c5760008155600101612742565b600067ffffffffffffffff80841115612771576127716134f3565b604051601f8501601f19908116603f01168101908282118183101715612799576127996134f3565b816040528093508581528686860111156127b257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461091757600080fd5b80356004811061091757600080fd5b600060208284031215612803578081fd5b611246826127cc565b6000806040838503121561281e578081fd5b612827836127cc565b9150612835602084016127cc565b90509250929050565b600080600060608486031215612852578081fd5b61285b846127cc565b9250612869602085016127cc565b9150604084013590509250925092565b6000806000806080858703121561288e578081fd5b612897856127cc565b93506128a5602086016127cc565b925060408501359150606085013567ffffffffffffffff8111156128c7578182fd5b8501601f810187136128d7578182fd5b6128e687823560208401612756565b91505092959194509250565b60008060408385031215612904578182fd5b61290d836127cc565b915060208301358015158114612921578182fd5b809150509250929050565b6000806040838503121561293e578182fd5b612947836127cc565b946020939093013593505050565b600080600060408486031215612969578283fd5b833567ffffffffffffffff80821115612980578485fd5b818601915086601f830112612993578485fd5b8135818111156129a1578586fd5b87602080830285010111156129b4578586fd5b6020928301989097509590910135949350505050565b6000602082840312156129db578081fd5b5035919050565b6000602082840312156129f3578081fd5b813561124681613509565b600060208284031215612a0f578081fd5b815161124681613509565b600060208284031215612a2b578081fd5b611246826127e3565b60008060408385031215612a46578182fd5b612947836127e3565b600060208284031215612a60578081fd5b813567ffffffffffffffff811115612a76578182fd5b8201601f81018413612a86578182fd5b61162d84823560208401612756565b60008060408385031215612aa7578182fd5b82359150612835602084016127cc565b60008151808452612acf816020860160208601613431565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351612b12818460208801613431565b835190830190612b26818360208801613431565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b756080830184612ab7565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526112466020830184612ab7565b6020808252600a908201527f6f766572206c696d697400000000000000000000000000000000000000000000604082015260600190565b60208082526017908201527f77686974656c697374206d696e74206e6f74206f70656e000000000000000000604082015260600190565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560408201527f6e00000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f737570706c792063616e6e6f7420626520677265617465720000000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201527f74206f6620626f756e6473000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201527f6f776e6572000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526014908201527f7075626c69632073616c65206e6f74206f70656e000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201527f6f76657220574c206c696d697400000000000000000000000000000000000000604082015260600190565b60208082526015908201527f6e6f7420656e6f7567682065746865722073656e740000000000000000000000604082015260600190565b6020808252600b908201527f6f76657220737570706c79000000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b60208082526013908201527f6e6f20636f6e74726163747320706c6561736500000000000000000000000000604082015260600190565b6020808252600c908201527f696e76616c69642073697a650000000000000000000000000000000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201527f7574206f6620626f756e64730000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f6f7665722061646472657373206c696d69740000000000000000000000000000604082015260600190565b600082198211156133e2576133e26134c7565b500190565b6000826133f6576133f66134dd565b500490565b6000816000190483118215151615613415576134156134c7565b500290565b60008282101561342c5761342c6134c7565b500390565b60005b8381101561344c578181015183820152602001613434565b838111156111725750506000910152565b60028104600182168061347157607f821691505b6020821081141561349257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134ac576134ac6134c7565b5060010190565b6000826134c2576134c26134dd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610be857600080fdfea2646970667358221220be21a7da63517419c01cdbcb7ea3d52bab5ae81baf0196e04a002551293b603964736f6c63430008010033
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.