Feature Tip: Add private address tag to any address under My Name Tag !
This token is reported to have been spammed to a large number of addresses. Please treat it with caution.
ERC-721
Overview
Max Total Supply
1,376 ERC-721 TOKEN*
Holders
441
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 ERC-721 TOKEN*Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EgoFOX
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721A.sol"; interface IPE { function balanceOf(address owner) external view returns (uint256 balance); } contract EgoFOX is ERC721A, Ownable { using Strings for uint256; mapping (address => uint256) private mintedWL; uint256 public maxSupply = 4444; uint256 private pricePublic = 0.06 ether; uint256 private priceWL = 0.04 ether; uint256 public maxPerTxPublic = 4; uint256 public maxPerWL = 10; // max panthers a WL user can hold (and max per tx) bytes32 public merkleRoot = ""; string private baseURI = ""; string public provenance = ""; string public uriNotRevealed = ""; bool public paused = true; bool public isRevealed; bool private useWhitelist; address public pe = 0xbf578495e98d23a3e9D5aE4788E68904D1D97935; // address public pe = 0x73B7DB4F76E117a44C1949bA232c1Cde3Dc2f6e8; event Minted(address caller); constructor() ERC721A("EgoFOX", "FOX") {} function mintPublic(uint256 qty) external payable{ require(!paused, "Minting is paused"); require(useWhitelist == false, "Sorry, we are still on whitelist mode!"); uint256 supply = totalSupply(); require(supply + qty <= maxSupply, "Sorry, not enough left!"); require(qty <= maxPerTxPublic, "Sorry, too many per transaction"); require(msg.value >= pricePublic * qty, "Sorry, not enough amount sent!"); _safeMint(msg.sender, qty); emit Minted(msg.sender); } // do airdrop function airdrop(address[] memory _addresses) external onlyOwner { for (uint i = 0; i < _addresses.length; i++) { // check balance of previous contract uint256 bal = IPE(pe).balanceOf(_addresses[i]); _safeMint(_addresses[i], bal); } } // revised function mintGiveaway(address _to, uint256 qty) external onlyOwner{ uint256 supply = totalSupply(); require(supply + qty <= maxSupply, "Sorry, not enough left!"); _safeMint(_to, qty); } // whitelist mint, allows wallets on the whitelist to mint function mintWL(uint256 qty, bytes32[] memory proof) external payable { require(!paused, "Minting is paused"); require(useWhitelist, "Whitelist sale must be active to mint."); uint256 supply = totalSupply(); // check if the user was whitelisted bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(_verify(leaf, proof), "You are not whitelisted."); require(msg.value >= priceWL * qty, "Sorry, not enough amount sent!"); require(mintedWL[msg.sender] + qty <= maxPerWL, "Sorry, you have reached the WL limit."); require(supply + qty <= maxSupply, "Sorry, not enough left!"); require(qty <= maxPerWL, "Sorry, too many per transaction"); mintedWL[msg.sender] += qty; _safeMint(msg.sender, qty); emit Minted(msg.sender); } function remaining() public view returns(uint256){ uint256 left = maxSupply - totalSupply(); return left; } function usingWhitelist() public view returns(bool) { return useWhitelist; } function getPriceWL() public view returns (uint256){ return priceWL; } function getPricePublic() public view returns (uint256){ return pricePublic; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (isRevealed == false) { return uriNotRevealed; } string memory base = baseURI; return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), ".json")) : ""; } // verify merkle tree leaf function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool){ return MerkleProof.verify(proof, merkleRoot, leaf); } // ADMIN FUNCTIONS function flipUseWhitelist() public onlyOwner { useWhitelist = !useWhitelist; } function flipPaused() public onlyOwner { paused = !paused; } // close minting forever! function closeMinting() public onlyOwner { uint256 supply = totalSupply(); maxSupply = supply; } function flipRevealed(string memory _URI) public onlyOwner { baseURI = _URI; isRevealed = !isRevealed; } function setMaxPerWL(uint256 _max) public onlyOwner { maxPerWL = _max; } function setBaseURI(string memory _URI) public onlyOwner { baseURI = _URI; } function setUriNotRevealed(string memory _URI) public onlyOwner { uriNotRevealed = _URI; } function setPriceWL(uint256 _newPrice) public onlyOwner { priceWL = _newPrice; } function setPricePublic(uint256 _newPrice) public onlyOwner { pricePublic = _newPrice; } function setMaxPerTx(uint256 _newMax) public onlyOwner { maxPerTxPublic = _newMax; } function setProvenanceHash(string memory _provenance) public onlyOwner { provenance = _provenance; } // Set merkle tree root function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; require(payable(0xc85E952a1030f9e16847B4D03d45a3ECC8e38780).send((balance * 500) / 10000)); require(payable(0xf91C5f663B7A1BF38E3c68340cFAbAB673decFAB).send((balance * 350) / 10000)); require(payable(0xefD6E3CA81e56b02867c45026074f712dD0135bB).send((balance * 450) / 10000)); require(payable(0x6cfd6b3ca3413a3f4BC93642C0B600823dAfbbB9).send((balance * 1275) / 10000)); require(payable(0x5B588e36FF358D4376A76FB163fd69Da02A2A9a5).send((balance * 225) / 10000)); require(payable(0x8ebAc12B75D14D173a1727DC3eEbA78A1A3E382c).send((balance * 7200) / 10000)); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 v4.4.1 (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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"Minted","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":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipUseWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setUriNotRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriNotRevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usingWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405261115c600a5566d529ae9e860000600b55668e1bc9bf040000600c556004600d55600a600e556000600f55604051806020016040528060008152506010908051906020019062000056929190620002d4565b5060405180602001604052806000815250601190805190602001906200007e929190620002d4565b506040518060200160405280600081525060129080519060200190620000a6929190620002d4565b506001601360006101000a81548160ff02191690831515021790555073bf578495e98d23a3e9d5ae4788e68904d1d97935601360036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012457600080fd5b506040518060400160405280600681526020017f45676f464f5800000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464f5800000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001a9929190620002d4565b508060039080519060200190620001c2929190620002d4565b50620001d36200020160201b60201c565b6000819055505050620001fb620001ef6200020660201b60201c565b6200020e60201b60201c565b620003e9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e29062000384565b90600052602060002090601f01602090048101928262000306576000855562000352565b82601f106200032157805160ff191683800117855562000352565b8280016001018555821562000352579182015b828111156200035157825182559160200191906001019062000334565b5b50905062000361919062000365565b5090565b5b808211156200038057600081600090555060010162000366565b5090565b600060028204905060018216806200039d57607f821691505b60208210811415620003b457620003b3620003ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ede80620003f96000396000f3fe60806040526004361061028c5760003560e01c806370a082311161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb0114610956578063e985e9c514610981578063eb24830d146109be578063ee64aefb146109d5578063efd0cbf914610a00578063f2fde38b14610a1c57610293565b8063a22cb46514610859578063b88d4fde14610882578063c3bb0cc2146108ab578063c6f6f216146108d4578063c87b56dd146108fd578063d0bfb8101461093a57610293565b80637f8448a9116101135780637f8448a91461076f57806381d8488f1461079857806387491c60146107c15780638da5cb5b146107d857806395d89b41146108035780639943770d1461082e57610293565b806370a0823114610673578063715018a6146106b0578063729ad39e146106c757806378f96790146106f05780637b7a7ca71461071b5780637cb647591461074657610293565b8063333171bb116101fe57806354ea6585116101b757806354ea65851461056157806355234ec01461058c57806355f804b3146105b75780635c975abb146105e05780635daaf45d1461060b5780636352211e1461063657610293565b8063333171bb1461048d5780633ccfd60b146104a45780633fab1006146104bb57806342842e0e146104e45780634530a8321461050d57806354214f691461053657610293565b806310969523116102505780631096952314610391578063162d2261146103ba57806318160ddd146103e55780631b60efb01461041057806323b872dd146104395780632eb4a7ab1461046257610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630f7309e81461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613fad565b610a45565b6040516102cc9190614494565b60405180910390f35b3480156102e157600080fd5b506102ea610b27565b6040516102f791906144ca565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190614050565b610bb9565b604051610334919061442d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613ef7565b610c35565b005b34801561037257600080fd5b5061037b610d40565b60405161038891906144ca565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190614007565b610dce565b005b3480156103c657600080fd5b506103cf610e64565b6040516103dc91906144ca565b60405180910390f35b3480156103f157600080fd5b506103fa610ef2565b604051610407919061464c565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613ef7565b610f09565b005b34801561044557600080fd5b50610460600480360381019061045b9190613de1565b610ff0565b005b34801561046e57600080fd5b50610477611000565b60405161048491906144af565b60405180910390f35b34801561049957600080fd5b506104a2611006565b005b3480156104b057600080fd5b506104b96110ae565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190614007565b6113b9565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613de1565b611479565b005b34801561051957600080fd5b50610534600480360381019061052f9190614050565b611499565b005b34801561054257600080fd5b5061054b61151f565b6040516105589190614494565b60405180910390f35b34801561056d57600080fd5b50610576611532565b604051610583919061464c565b60405180910390f35b34801561059857600080fd5b506105a161153c565b6040516105ae919061464c565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190614007565b61155d565b005b3480156105ec57600080fd5b506105f56115f3565b6040516106029190614494565b60405180910390f35b34801561061757600080fd5b50610620611606565b60405161062d919061464c565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190614050565b611610565b60405161066a919061442d565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613d74565b611626565b6040516106a7919061464c565b60405180910390f35b3480156106bc57600080fd5b506106c56116f6565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613f37565b61177e565b005b3480156106fc57600080fd5b5061070561190b565b604051610712919061442d565b60405180910390f35b34801561072757600080fd5b50610730611931565b60405161073d9190614494565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f80565b611948565b005b34801561077b57600080fd5b5061079660048036038101906107919190614050565b6119ce565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190614050565b611a54565b005b3480156107cd57600080fd5b506107d6611ada565b005b3480156107e457600080fd5b506107ed611b6c565b6040516107fa919061442d565b60405180910390f35b34801561080f57600080fd5b50610818611b96565b60405161082591906144ca565b60405180910390f35b34801561083a57600080fd5b50610843611c28565b604051610850919061464c565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190613eb7565b611c2e565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613e34565b611da6565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190614007565b611e22565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614050565b611eb8565b005b34801561090957600080fd5b50610924600480360381019061091f9190614050565b611f3e565b60405161093191906144ca565b60405180910390f35b610954600480360381019061094f91906140aa565b612117565b005b34801561096257600080fd5b5061096b612447565b604051610978919061464c565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613da1565b61244d565b6040516109b59190614494565b60405180910390f35b3480156109ca57600080fd5b506109d36124e1565b005b3480156109e157600080fd5b506109ea612589565b6040516109f7919061464c565b60405180910390f35b610a1a6004803603810190610a159190614050565b61258f565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190613d74565b61276b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b205750610b1f82612863565b5b9050919050565b606060028054610b369061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b629061495e565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc4826128cd565b610bfa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4082611610565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc761291b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf95750610cf781610cf261291b565b61244d565b155b15610d30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b838383612923565b505050565b60118054610d4d9061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d799061495e565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b505050505081565b610dd661291b565b73ffffffffffffffffffffffffffffffffffffffff16610df4611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e419061456c565b60405180910390fd5b8060119080519060200190610e609291906139df565b5050565b60128054610e719061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9d9061495e565b8015610eea5780601f10610ebf57610100808354040283529160200191610eea565b820191906000526020600020905b815481529060010190602001808311610ecd57829003601f168201915b505050505081565b6000610efc6129d5565b6001546000540303905090565b610f1161291b565b73ffffffffffffffffffffffffffffffffffffffff16610f2f611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c9061456c565b60405180910390fd5b6000610f8f610ef2565b9050600a548282610fa09190614789565b1115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061458c565b60405180910390fd5b610feb83836129da565b505050565b610ffb8383836129f8565b505050565b600f5481565b61100e61291b565b73ffffffffffffffffffffffffffffffffffffffff1661102c611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061456c565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6110b661291b565b73ffffffffffffffffffffffffffffffffffffffff166110d4611b6c565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111219061456c565b60405180910390fd5b600047905073c85e952a1030f9e16847b4d03d45a3ecc8e3878073ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f48461116e9190614810565b61117891906147df565b9081150290604051600060405180830381858888f1935050505061119b57600080fd5b73f91c5f663b7a1bf38e3c68340cfabab673decfab73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e846111da9190614810565b6111e491906147df565b9081150290604051600060405180830381858888f1935050505061120757600080fd5b73efd6e3ca81e56b02867c45026074f712dd0135bb73ffffffffffffffffffffffffffffffffffffffff166108fc6127106101c2846112469190614810565b61125091906147df565b9081150290604051600060405180830381858888f1935050505061127357600080fd5b736cfd6b3ca3413a3f4bc93642c0b600823dafbbb973ffffffffffffffffffffffffffffffffffffffff166108fc6127106104fb846112b29190614810565b6112bc91906147df565b9081150290604051600060405180830381858888f193505050506112df57600080fd5b735b588e36ff358d4376a76fb163fd69da02a2a9a573ffffffffffffffffffffffffffffffffffffffff166108fc61271060e18461131d9190614810565b61132791906147df565b9081150290604051600060405180830381858888f1935050505061134a57600080fd5b738ebac12b75d14d173a1727dc3eeba78a1a3e382c73ffffffffffffffffffffffffffffffffffffffff166108fc612710611c20846113899190614810565b61139391906147df565b9081150290604051600060405180830381858888f193505050506113b657600080fd5b50565b6113c161291b565b73ffffffffffffffffffffffffffffffffffffffff166113df611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061456c565b60405180910390fd5b806010908051906020019061144b9291906139df565b50601360019054906101000a900460ff1615601360016101000a81548160ff02191690831515021790555050565b61149483838360405180602001604052806000815250611da6565b505050565b6114a161291b565b73ffffffffffffffffffffffffffffffffffffffff166114bf611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c9061456c565b60405180910390fd5b80600b8190555050565b601360019054906101000a900460ff1681565b6000600b54905090565b600080611547610ef2565b600a54611554919061486a565b90508091505090565b61156561291b565b73ffffffffffffffffffffffffffffffffffffffff16611583611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061456c565b60405180910390fd5b80601090805190602001906115ef9291906139df565b5050565b601360009054906101000a900460ff1681565b6000600c54905090565b600061161b82612ee9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116fe61291b565b73ffffffffffffffffffffffffffffffffffffffff1661171c611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117699061456c565b60405180910390fd5b61177c6000613178565b565b61178661291b565b73ffffffffffffffffffffffffffffffffffffffff166117a4611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061456c565b60405180910390fd5b60005b8151811015611907576000601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061185957611858614af6565b5b60200260200101516040518263ffffffff1660e01b815260040161187d919061442d565b60206040518083038186803b15801561189557600080fd5b505afa1580156118a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cd919061407d565b90506118f38383815181106118e5576118e4614af6565b5b6020026020010151826129da565b5080806118ff906149c1565b9150506117fd565b5050565b601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601360029054906101000a900460ff16905090565b61195061291b565b73ffffffffffffffffffffffffffffffffffffffff1661196e611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061456c565b60405180910390fd5b80600f8190555050565b6119d661291b565b73ffffffffffffffffffffffffffffffffffffffff166119f4611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a419061456c565b60405180910390fd5b80600e8190555050565b611a5c61291b565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac79061456c565b60405180910390fd5b80600c8190555050565b611ae261291b565b73ffffffffffffffffffffffffffffffffffffffff16611b00611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d9061456c565b60405180910390fd5b6000611b60610ef2565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611ba59061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd19061495e565b8015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b5050505050905090565b600d5481565b611c3661291b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ca861291b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d5561291b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9a9190614494565b60405180910390a35050565b611db18484846129f8565b611dd08373ffffffffffffffffffffffffffffffffffffffff1661323e565b8015611de55750611de384848484613251565b155b15611e1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611e2a61291b565b73ffffffffffffffffffffffffffffffffffffffff16611e48611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e959061456c565b60405180910390fd5b8060129080519060200190611eb49291906139df565b5050565b611ec061291b565b73ffffffffffffffffffffffffffffffffffffffff16611ede611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061456c565b60405180910390fd5b80600d8190555050565b6060611f49826128cd565b611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906145ac565b60405180910390fd5b60001515601360019054906101000a900460ff16151514156120365760128054611fb19061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054611fdd9061495e565b801561202a5780601f10611fff5761010080835404028352916020019161202a565b820191906000526020600020905b81548152906001019060200180831161200d57829003601f168201915b50505050509050612112565b6000601080546120459061495e565b80601f01602080910402602001604051908101604052809291908181526020018280546120719061495e565b80156120be5780601f10612093576101008083540402835291602001916120be565b820191906000526020600020905b8154815290600101906020018083116120a157829003601f168201915b5050505050905060008151116120e3576040518060200160405280600081525061210e565b806120ed846133b1565b6040516020016120fe9291906143fe565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1615612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e9061460c565b60405180910390fd5b601360029054906101000a900460ff166121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad9061452c565b60405180910390fd5b60006121c0610ef2565b90506000336040516020016121d591906143b7565b6040516020818303038152906040528051906020012090506121f78184613512565b612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d906145cc565b60405180910390fd5b83600c546122449190614810565b341015612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227d906145ec565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122d49190614789565b1115612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c906144ec565b60405180910390fd5b600a5484836123249190614789565b1115612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c9061458c565b60405180910390fd5b600e548411156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061454c565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f99190614789565b9250508190555061240a33856129da565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612439919061442d565b60405180910390a150505050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124e961291b565b73ffffffffffffffffffffffffffffffffffffffff16612507611b6c565b73ffffffffffffffffffffffffffffffffffffffff161461255d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125549061456c565b60405180910390fd5b601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b600e5481565b601360009054906101000a900460ff16156125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d69061460c565b60405180910390fd5b60001515601360029054906101000a900460ff16151514612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262c9061462c565b60405180910390fd5b600061263f610ef2565b9050600a5482826126509190614789565b1115612691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126889061458c565b60405180910390fd5b600d548211156126d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cd9061454c565b60405180910390fd5b81600b546126e49190614810565b341015612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d906145ec565b60405180910390fd5b61273033836129da565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d83360405161275f919061442d565b60405180910390a15050565b61277361291b565b73ffffffffffffffffffffffffffffffffffffffff16612791611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de9061456c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284e9061450c565b60405180910390fd5b61286081613178565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816128d86129d5565b111580156128e7575060005482105b8015612914575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6129f4828260405180602001604052806000815250613529565b5050565b6000612a0382612ee9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a2a61291b565b73ffffffffffffffffffffffffffffffffffffffff161480612a5d5750612a5c8260000151612a5761291b565b61244d565b5b80612aa25750612a6b61291b565b73ffffffffffffffffffffffffffffffffffffffff16612a8a84610bb9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612adb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb8858585600161353b565b612bc86000848460000151612923565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e7957600054811015612e785782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ee28585856001613541565b5050505050565b612ef1613a65565b600082905080612eff6129d5565b11158015612f0e575060005481105b15613141576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161313f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613023578092505050613173565b5b60011561313e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613139578092505050613173565b613024565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261327761291b565b8786866040518563ffffffff1660e01b81526004016132999493929190614448565b602060405180830381600087803b1580156132b357600080fd5b505af19250505080156132e457506040513d601f19601f820116820180604052508101906132e19190613fda565b60015b61335e573d8060008114613314576040519150601f19603f3d011682016040523d82523d6000602084013e613319565b606091505b50600081511415613356576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156133f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061350d565b600082905060005b6000821461342b578080613414906149c1565b915050600a8261342491906147df565b9150613401565b60008167ffffffffffffffff81111561344757613446614b25565b5b6040519080825280601f01601f1916602001820160405280156134795781602001600182028036833780820191505090505b5090505b6000851461350657600182613492919061486a565b9150600a856134a19190614a38565b60306134ad9190614789565b60f81b8183815181106134c3576134c2614af6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ff91906147df565b945061347d565b8093505050505b919050565b600061352182600f5485613547565b905092915050565b613536838383600161355e565b505050565b50505050565b50505050565b600082613554858461392c565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613606576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613613600086838761353b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156137dd57506137dc8773ffffffffffffffffffffffffffffffffffffffff1661323e565b5b156138a3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138526000888480600101955088613251565b613888576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156137e357826000541461389e57600080fd5b61390f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156138a4575b8160008190555050506139256000868387613541565b5050505050565b60008082905060005b84518110156139d457600085828151811061395357613952614af6565b5b602002602001015190508083116139945782816040516020016139779291906143d2565b6040516020818303038152906040528051906020012092506139c0565b80836040516020016139a79291906143d2565b6040516020818303038152906040528051906020012092505b5080806139cc906149c1565b915050613935565b508091505092915050565b8280546139eb9061495e565b90600052602060002090601f016020900481019282613a0d5760008555613a54565b82601f10613a2657805160ff1916838001178555613a54565b82800160010185558215613a54579182015b82811115613a53578251825591602001919060010190613a38565b5b509050613a619190613aa8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613ac1576000816000905550600101613aa9565b5090565b6000613ad8613ad38461468c565b614667565b90508083825260208201905082856020860282011115613afb57613afa614b59565b5b60005b85811015613b2b5781613b118882613c29565b845260208401935060208301925050600181019050613afe565b5050509392505050565b6000613b48613b43846146b8565b614667565b90508083825260208201905082856020860282011115613b6b57613b6a614b59565b5b60005b85811015613b9b5781613b818882613caf565b845260208401935060208301925050600181019050613b6e565b5050509392505050565b6000613bb8613bb3846146e4565b614667565b905082815260208101848484011115613bd457613bd3614b5e565b5b613bdf84828561491c565b509392505050565b6000613bfa613bf584614715565b614667565b905082815260208101848484011115613c1657613c15614b5e565b5b613c2184828561491c565b509392505050565b600081359050613c3881614e35565b92915050565b600082601f830112613c5357613c52614b54565b5b8135613c63848260208601613ac5565b91505092915050565b600082601f830112613c8157613c80614b54565b5b8135613c91848260208601613b35565b91505092915050565b600081359050613ca981614e4c565b92915050565b600081359050613cbe81614e63565b92915050565b600081359050613cd381614e7a565b92915050565b600081519050613ce881614e7a565b92915050565b600082601f830112613d0357613d02614b54565b5b8135613d13848260208601613ba5565b91505092915050565b600082601f830112613d3157613d30614b54565b5b8135613d41848260208601613be7565b91505092915050565b600081359050613d5981614e91565b92915050565b600081519050613d6e81614e91565b92915050565b600060208284031215613d8a57613d89614b68565b5b6000613d9884828501613c29565b91505092915050565b60008060408385031215613db857613db7614b68565b5b6000613dc685828601613c29565b9250506020613dd785828601613c29565b9150509250929050565b600080600060608486031215613dfa57613df9614b68565b5b6000613e0886828701613c29565b9350506020613e1986828701613c29565b9250506040613e2a86828701613d4a565b9150509250925092565b60008060008060808587031215613e4e57613e4d614b68565b5b6000613e5c87828801613c29565b9450506020613e6d87828801613c29565b9350506040613e7e87828801613d4a565b925050606085013567ffffffffffffffff811115613e9f57613e9e614b63565b5b613eab87828801613cee565b91505092959194509250565b60008060408385031215613ece57613ecd614b68565b5b6000613edc85828601613c29565b9250506020613eed85828601613c9a565b9150509250929050565b60008060408385031215613f0e57613f0d614b68565b5b6000613f1c85828601613c29565b9250506020613f2d85828601613d4a565b9150509250929050565b600060208284031215613f4d57613f4c614b68565b5b600082013567ffffffffffffffff811115613f6b57613f6a614b63565b5b613f7784828501613c3e565b91505092915050565b600060208284031215613f9657613f95614b68565b5b6000613fa484828501613caf565b91505092915050565b600060208284031215613fc357613fc2614b68565b5b6000613fd184828501613cc4565b91505092915050565b600060208284031215613ff057613fef614b68565b5b6000613ffe84828501613cd9565b91505092915050565b60006020828403121561401d5761401c614b68565b5b600082013567ffffffffffffffff81111561403b5761403a614b63565b5b61404784828501613d1c565b91505092915050565b60006020828403121561406657614065614b68565b5b600061407484828501613d4a565b91505092915050565b60006020828403121561409357614092614b68565b5b60006140a184828501613d5f565b91505092915050565b600080604083850312156140c1576140c0614b68565b5b60006140cf85828601613d4a565b925050602083013567ffffffffffffffff8111156140f0576140ef614b63565b5b6140fc85828601613c6c565b9150509250929050565b61410f8161489e565b82525050565b6141266141218261489e565b614a0a565b82525050565b614135816148b0565b82525050565b614144816148bc565b82525050565b61415b614156826148bc565b614a1c565b82525050565b600061416c82614746565b614176818561475c565b935061418681856020860161492b565b61418f81614b6d565b840191505092915050565b60006141a582614751565b6141af818561476d565b93506141bf81856020860161492b565b6141c881614b6d565b840191505092915050565b60006141de82614751565b6141e8818561477e565b93506141f881856020860161492b565b80840191505092915050565b600061421160258361476d565b915061421c82614b8b565b604082019050919050565b600061423460268361476d565b915061423f82614bda565b604082019050919050565b600061425760268361476d565b915061426282614c29565b604082019050919050565b600061427a601f8361476d565b915061428582614c78565b602082019050919050565b600061429d60058361477e565b91506142a882614ca1565b600582019050919050565b60006142c060208361476d565b91506142cb82614cca565b602082019050919050565b60006142e360178361476d565b91506142ee82614cf3565b602082019050919050565b6000614306602f8361476d565b915061431182614d1c565b604082019050919050565b600061432960188361476d565b915061433482614d6b565b602082019050919050565b600061434c601e8361476d565b915061435782614d94565b602082019050919050565b600061436f60118361476d565b915061437a82614dbd565b602082019050919050565b600061439260268361476d565b915061439d82614de6565b604082019050919050565b6143b181614912565b82525050565b60006143c38284614115565b60148201915081905092915050565b60006143de828561414a565b6020820191506143ee828461414a565b6020820191508190509392505050565b600061440a82856141d3565b915061441682846141d3565b915061442182614290565b91508190509392505050565b60006020820190506144426000830184614106565b92915050565b600060808201905061445d6000830187614106565b61446a6020830186614106565b61447760408301856143a8565b81810360608301526144898184614161565b905095945050505050565b60006020820190506144a9600083018461412c565b92915050565b60006020820190506144c4600083018461413b565b92915050565b600060208201905081810360008301526144e4818461419a565b905092915050565b6000602082019050818103600083015261450581614204565b9050919050565b6000602082019050818103600083015261452581614227565b9050919050565b600060208201905081810360008301526145458161424a565b9050919050565b600060208201905081810360008301526145658161426d565b9050919050565b60006020820190508181036000830152614585816142b3565b9050919050565b600060208201905081810360008301526145a5816142d6565b9050919050565b600060208201905081810360008301526145c5816142f9565b9050919050565b600060208201905081810360008301526145e58161431c565b9050919050565b600060208201905081810360008301526146058161433f565b9050919050565b6000602082019050818103600083015261462581614362565b9050919050565b6000602082019050818103600083015261464581614385565b9050919050565b600060208201905061466160008301846143a8565b92915050565b6000614671614682565b905061467d8282614990565b919050565b6000604051905090565b600067ffffffffffffffff8211156146a7576146a6614b25565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146d3576146d2614b25565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146ff576146fe614b25565b5b61470882614b6d565b9050602081019050919050565b600067ffffffffffffffff8211156147305761472f614b25565b5b61473982614b6d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061479482614912565b915061479f83614912565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147d4576147d3614a69565b5b828201905092915050565b60006147ea82614912565b91506147f583614912565b92508261480557614804614a98565b5b828204905092915050565b600061481b82614912565b915061482683614912565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561485f5761485e614a69565b5b828202905092915050565b600061487582614912565b915061488083614912565b92508282101561489357614892614a69565b5b828203905092915050565b60006148a9826148f2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561494957808201518184015260208101905061492e565b83811115614958576000848401525b50505050565b6000600282049050600182168061497657607f821691505b6020821081141561498a57614989614ac7565b5b50919050565b61499982614b6d565b810181811067ffffffffffffffff821117156149b8576149b7614b25565b5b80604052505050565b60006149cc82614912565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ff576149fe614a69565b5b600182019050919050565b6000614a1582614a26565b9050919050565b6000819050919050565b6000614a3182614b7e565b9050919050565b6000614a4382614912565b9150614a4e83614912565b925082614a5e57614a5d614a98565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b614e3e8161489e565b8114614e4957600080fd5b50565b614e55816148b0565b8114614e6057600080fd5b50565b614e6c816148bc565b8114614e7757600080fd5b50565b614e83816148c6565b8114614e8e57600080fd5b50565b614e9a81614912565b8114614ea557600080fd5b5056fea2646970667358221220bd48ffdad42074323b925366d15d0c50d4e0d5fead0176ab0d2aa9b259577f2864736f6c63430008070033
Deployed Bytecode
0x60806040526004361061028c5760003560e01c806370a082311161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb0114610956578063e985e9c514610981578063eb24830d146109be578063ee64aefb146109d5578063efd0cbf914610a00578063f2fde38b14610a1c57610293565b8063a22cb46514610859578063b88d4fde14610882578063c3bb0cc2146108ab578063c6f6f216146108d4578063c87b56dd146108fd578063d0bfb8101461093a57610293565b80637f8448a9116101135780637f8448a91461076f57806381d8488f1461079857806387491c60146107c15780638da5cb5b146107d857806395d89b41146108035780639943770d1461082e57610293565b806370a0823114610673578063715018a6146106b0578063729ad39e146106c757806378f96790146106f05780637b7a7ca71461071b5780637cb647591461074657610293565b8063333171bb116101fe57806354ea6585116101b757806354ea65851461056157806355234ec01461058c57806355f804b3146105b75780635c975abb146105e05780635daaf45d1461060b5780636352211e1461063657610293565b8063333171bb1461048d5780633ccfd60b146104a45780633fab1006146104bb57806342842e0e146104e45780634530a8321461050d57806354214f691461053657610293565b806310969523116102505780631096952314610391578063162d2261146103ba57806318160ddd146103e55780631b60efb01461041057806323b872dd146104395780632eb4a7ab1461046257610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630f7309e81461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613fad565b610a45565b6040516102cc9190614494565b60405180910390f35b3480156102e157600080fd5b506102ea610b27565b6040516102f791906144ca565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190614050565b610bb9565b604051610334919061442d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613ef7565b610c35565b005b34801561037257600080fd5b5061037b610d40565b60405161038891906144ca565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190614007565b610dce565b005b3480156103c657600080fd5b506103cf610e64565b6040516103dc91906144ca565b60405180910390f35b3480156103f157600080fd5b506103fa610ef2565b604051610407919061464c565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613ef7565b610f09565b005b34801561044557600080fd5b50610460600480360381019061045b9190613de1565b610ff0565b005b34801561046e57600080fd5b50610477611000565b60405161048491906144af565b60405180910390f35b34801561049957600080fd5b506104a2611006565b005b3480156104b057600080fd5b506104b96110ae565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190614007565b6113b9565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613de1565b611479565b005b34801561051957600080fd5b50610534600480360381019061052f9190614050565b611499565b005b34801561054257600080fd5b5061054b61151f565b6040516105589190614494565b60405180910390f35b34801561056d57600080fd5b50610576611532565b604051610583919061464c565b60405180910390f35b34801561059857600080fd5b506105a161153c565b6040516105ae919061464c565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190614007565b61155d565b005b3480156105ec57600080fd5b506105f56115f3565b6040516106029190614494565b60405180910390f35b34801561061757600080fd5b50610620611606565b60405161062d919061464c565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190614050565b611610565b60405161066a919061442d565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613d74565b611626565b6040516106a7919061464c565b60405180910390f35b3480156106bc57600080fd5b506106c56116f6565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613f37565b61177e565b005b3480156106fc57600080fd5b5061070561190b565b604051610712919061442d565b60405180910390f35b34801561072757600080fd5b50610730611931565b60405161073d9190614494565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f80565b611948565b005b34801561077b57600080fd5b5061079660048036038101906107919190614050565b6119ce565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190614050565b611a54565b005b3480156107cd57600080fd5b506107d6611ada565b005b3480156107e457600080fd5b506107ed611b6c565b6040516107fa919061442d565b60405180910390f35b34801561080f57600080fd5b50610818611b96565b60405161082591906144ca565b60405180910390f35b34801561083a57600080fd5b50610843611c28565b604051610850919061464c565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190613eb7565b611c2e565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613e34565b611da6565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190614007565b611e22565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614050565b611eb8565b005b34801561090957600080fd5b50610924600480360381019061091f9190614050565b611f3e565b60405161093191906144ca565b60405180910390f35b610954600480360381019061094f91906140aa565b612117565b005b34801561096257600080fd5b5061096b612447565b604051610978919061464c565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613da1565b61244d565b6040516109b59190614494565b60405180910390f35b3480156109ca57600080fd5b506109d36124e1565b005b3480156109e157600080fd5b506109ea612589565b6040516109f7919061464c565b60405180910390f35b610a1a6004803603810190610a159190614050565b61258f565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190613d74565b61276b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b205750610b1f82612863565b5b9050919050565b606060028054610b369061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b629061495e565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc4826128cd565b610bfa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4082611610565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc761291b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf95750610cf781610cf261291b565b61244d565b155b15610d30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b838383612923565b505050565b60118054610d4d9061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d799061495e565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b505050505081565b610dd661291b565b73ffffffffffffffffffffffffffffffffffffffff16610df4611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e419061456c565b60405180910390fd5b8060119080519060200190610e609291906139df565b5050565b60128054610e719061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9d9061495e565b8015610eea5780601f10610ebf57610100808354040283529160200191610eea565b820191906000526020600020905b815481529060010190602001808311610ecd57829003601f168201915b505050505081565b6000610efc6129d5565b6001546000540303905090565b610f1161291b565b73ffffffffffffffffffffffffffffffffffffffff16610f2f611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c9061456c565b60405180910390fd5b6000610f8f610ef2565b9050600a548282610fa09190614789565b1115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061458c565b60405180910390fd5b610feb83836129da565b505050565b610ffb8383836129f8565b505050565b600f5481565b61100e61291b565b73ffffffffffffffffffffffffffffffffffffffff1661102c611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061456c565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6110b661291b565b73ffffffffffffffffffffffffffffffffffffffff166110d4611b6c565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111219061456c565b60405180910390fd5b600047905073c85e952a1030f9e16847b4d03d45a3ecc8e3878073ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f48461116e9190614810565b61117891906147df565b9081150290604051600060405180830381858888f1935050505061119b57600080fd5b73f91c5f663b7a1bf38e3c68340cfabab673decfab73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e846111da9190614810565b6111e491906147df565b9081150290604051600060405180830381858888f1935050505061120757600080fd5b73efd6e3ca81e56b02867c45026074f712dd0135bb73ffffffffffffffffffffffffffffffffffffffff166108fc6127106101c2846112469190614810565b61125091906147df565b9081150290604051600060405180830381858888f1935050505061127357600080fd5b736cfd6b3ca3413a3f4bc93642c0b600823dafbbb973ffffffffffffffffffffffffffffffffffffffff166108fc6127106104fb846112b29190614810565b6112bc91906147df565b9081150290604051600060405180830381858888f193505050506112df57600080fd5b735b588e36ff358d4376a76fb163fd69da02a2a9a573ffffffffffffffffffffffffffffffffffffffff166108fc61271060e18461131d9190614810565b61132791906147df565b9081150290604051600060405180830381858888f1935050505061134a57600080fd5b738ebac12b75d14d173a1727dc3eeba78a1a3e382c73ffffffffffffffffffffffffffffffffffffffff166108fc612710611c20846113899190614810565b61139391906147df565b9081150290604051600060405180830381858888f193505050506113b657600080fd5b50565b6113c161291b565b73ffffffffffffffffffffffffffffffffffffffff166113df611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061456c565b60405180910390fd5b806010908051906020019061144b9291906139df565b50601360019054906101000a900460ff1615601360016101000a81548160ff02191690831515021790555050565b61149483838360405180602001604052806000815250611da6565b505050565b6114a161291b565b73ffffffffffffffffffffffffffffffffffffffff166114bf611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c9061456c565b60405180910390fd5b80600b8190555050565b601360019054906101000a900460ff1681565b6000600b54905090565b600080611547610ef2565b600a54611554919061486a565b90508091505090565b61156561291b565b73ffffffffffffffffffffffffffffffffffffffff16611583611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061456c565b60405180910390fd5b80601090805190602001906115ef9291906139df565b5050565b601360009054906101000a900460ff1681565b6000600c54905090565b600061161b82612ee9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116fe61291b565b73ffffffffffffffffffffffffffffffffffffffff1661171c611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117699061456c565b60405180910390fd5b61177c6000613178565b565b61178661291b565b73ffffffffffffffffffffffffffffffffffffffff166117a4611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061456c565b60405180910390fd5b60005b8151811015611907576000601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061185957611858614af6565b5b60200260200101516040518263ffffffff1660e01b815260040161187d919061442d565b60206040518083038186803b15801561189557600080fd5b505afa1580156118a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cd919061407d565b90506118f38383815181106118e5576118e4614af6565b5b6020026020010151826129da565b5080806118ff906149c1565b9150506117fd565b5050565b601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601360029054906101000a900460ff16905090565b61195061291b565b73ffffffffffffffffffffffffffffffffffffffff1661196e611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061456c565b60405180910390fd5b80600f8190555050565b6119d661291b565b73ffffffffffffffffffffffffffffffffffffffff166119f4611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a419061456c565b60405180910390fd5b80600e8190555050565b611a5c61291b565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac79061456c565b60405180910390fd5b80600c8190555050565b611ae261291b565b73ffffffffffffffffffffffffffffffffffffffff16611b00611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d9061456c565b60405180910390fd5b6000611b60610ef2565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611ba59061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd19061495e565b8015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b5050505050905090565b600d5481565b611c3661291b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ca861291b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d5561291b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9a9190614494565b60405180910390a35050565b611db18484846129f8565b611dd08373ffffffffffffffffffffffffffffffffffffffff1661323e565b8015611de55750611de384848484613251565b155b15611e1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611e2a61291b565b73ffffffffffffffffffffffffffffffffffffffff16611e48611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e959061456c565b60405180910390fd5b8060129080519060200190611eb49291906139df565b5050565b611ec061291b565b73ffffffffffffffffffffffffffffffffffffffff16611ede611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061456c565b60405180910390fd5b80600d8190555050565b6060611f49826128cd565b611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906145ac565b60405180910390fd5b60001515601360019054906101000a900460ff16151514156120365760128054611fb19061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054611fdd9061495e565b801561202a5780601f10611fff5761010080835404028352916020019161202a565b820191906000526020600020905b81548152906001019060200180831161200d57829003601f168201915b50505050509050612112565b6000601080546120459061495e565b80601f01602080910402602001604051908101604052809291908181526020018280546120719061495e565b80156120be5780601f10612093576101008083540402835291602001916120be565b820191906000526020600020905b8154815290600101906020018083116120a157829003601f168201915b5050505050905060008151116120e3576040518060200160405280600081525061210e565b806120ed846133b1565b6040516020016120fe9291906143fe565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1615612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e9061460c565b60405180910390fd5b601360029054906101000a900460ff166121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad9061452c565b60405180910390fd5b60006121c0610ef2565b90506000336040516020016121d591906143b7565b6040516020818303038152906040528051906020012090506121f78184613512565b612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d906145cc565b60405180910390fd5b83600c546122449190614810565b341015612286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227d906145ec565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122d49190614789565b1115612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c906144ec565b60405180910390fd5b600a5484836123249190614789565b1115612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c9061458c565b60405180910390fd5b600e548411156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061454c565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f99190614789565b9250508190555061240a33856129da565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612439919061442d565b60405180910390a150505050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124e961291b565b73ffffffffffffffffffffffffffffffffffffffff16612507611b6c565b73ffffffffffffffffffffffffffffffffffffffff161461255d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125549061456c565b60405180910390fd5b601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b600e5481565b601360009054906101000a900460ff16156125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d69061460c565b60405180910390fd5b60001515601360029054906101000a900460ff16151514612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262c9061462c565b60405180910390fd5b600061263f610ef2565b9050600a5482826126509190614789565b1115612691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126889061458c565b60405180910390fd5b600d548211156126d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cd9061454c565b60405180910390fd5b81600b546126e49190614810565b341015612726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271d906145ec565b60405180910390fd5b61273033836129da565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d83360405161275f919061442d565b60405180910390a15050565b61277361291b565b73ffffffffffffffffffffffffffffffffffffffff16612791611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de9061456c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284e9061450c565b60405180910390fd5b61286081613178565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816128d86129d5565b111580156128e7575060005482105b8015612914575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6129f4828260405180602001604052806000815250613529565b5050565b6000612a0382612ee9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a2a61291b565b73ffffffffffffffffffffffffffffffffffffffff161480612a5d5750612a5c8260000151612a5761291b565b61244d565b5b80612aa25750612a6b61291b565b73ffffffffffffffffffffffffffffffffffffffff16612a8a84610bb9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612adb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b44576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb8858585600161353b565b612bc86000848460000151612923565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e7957600054811015612e785782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ee28585856001613541565b5050505050565b612ef1613a65565b600082905080612eff6129d5565b11158015612f0e575060005481105b15613141576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161313f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613023578092505050613173565b5b60011561313e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613139578092505050613173565b613024565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261327761291b565b8786866040518563ffffffff1660e01b81526004016132999493929190614448565b602060405180830381600087803b1580156132b357600080fd5b505af19250505080156132e457506040513d601f19601f820116820180604052508101906132e19190613fda565b60015b61335e573d8060008114613314576040519150601f19603f3d011682016040523d82523d6000602084013e613319565b606091505b50600081511415613356576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156133f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061350d565b600082905060005b6000821461342b578080613414906149c1565b915050600a8261342491906147df565b9150613401565b60008167ffffffffffffffff81111561344757613446614b25565b5b6040519080825280601f01601f1916602001820160405280156134795781602001600182028036833780820191505090505b5090505b6000851461350657600182613492919061486a565b9150600a856134a19190614a38565b60306134ad9190614789565b60f81b8183815181106134c3576134c2614af6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ff91906147df565b945061347d565b8093505050505b919050565b600061352182600f5485613547565b905092915050565b613536838383600161355e565b505050565b50505050565b50505050565b600082613554858461392c565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613606576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613613600086838761353b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156137dd57506137dc8773ffffffffffffffffffffffffffffffffffffffff1661323e565b5b156138a3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138526000888480600101955088613251565b613888576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156137e357826000541461389e57600080fd5b61390f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156138a4575b8160008190555050506139256000868387613541565b5050505050565b60008082905060005b84518110156139d457600085828151811061395357613952614af6565b5b602002602001015190508083116139945782816040516020016139779291906143d2565b6040516020818303038152906040528051906020012092506139c0565b80836040516020016139a79291906143d2565b6040516020818303038152906040528051906020012092505b5080806139cc906149c1565b915050613935565b508091505092915050565b8280546139eb9061495e565b90600052602060002090601f016020900481019282613a0d5760008555613a54565b82601f10613a2657805160ff1916838001178555613a54565b82800160010185558215613a54579182015b82811115613a53578251825591602001919060010190613a38565b5b509050613a619190613aa8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613ac1576000816000905550600101613aa9565b5090565b6000613ad8613ad38461468c565b614667565b90508083825260208201905082856020860282011115613afb57613afa614b59565b5b60005b85811015613b2b5781613b118882613c29565b845260208401935060208301925050600181019050613afe565b5050509392505050565b6000613b48613b43846146b8565b614667565b90508083825260208201905082856020860282011115613b6b57613b6a614b59565b5b60005b85811015613b9b5781613b818882613caf565b845260208401935060208301925050600181019050613b6e565b5050509392505050565b6000613bb8613bb3846146e4565b614667565b905082815260208101848484011115613bd457613bd3614b5e565b5b613bdf84828561491c565b509392505050565b6000613bfa613bf584614715565b614667565b905082815260208101848484011115613c1657613c15614b5e565b5b613c2184828561491c565b509392505050565b600081359050613c3881614e35565b92915050565b600082601f830112613c5357613c52614b54565b5b8135613c63848260208601613ac5565b91505092915050565b600082601f830112613c8157613c80614b54565b5b8135613c91848260208601613b35565b91505092915050565b600081359050613ca981614e4c565b92915050565b600081359050613cbe81614e63565b92915050565b600081359050613cd381614e7a565b92915050565b600081519050613ce881614e7a565b92915050565b600082601f830112613d0357613d02614b54565b5b8135613d13848260208601613ba5565b91505092915050565b600082601f830112613d3157613d30614b54565b5b8135613d41848260208601613be7565b91505092915050565b600081359050613d5981614e91565b92915050565b600081519050613d6e81614e91565b92915050565b600060208284031215613d8a57613d89614b68565b5b6000613d9884828501613c29565b91505092915050565b60008060408385031215613db857613db7614b68565b5b6000613dc685828601613c29565b9250506020613dd785828601613c29565b9150509250929050565b600080600060608486031215613dfa57613df9614b68565b5b6000613e0886828701613c29565b9350506020613e1986828701613c29565b9250506040613e2a86828701613d4a565b9150509250925092565b60008060008060808587031215613e4e57613e4d614b68565b5b6000613e5c87828801613c29565b9450506020613e6d87828801613c29565b9350506040613e7e87828801613d4a565b925050606085013567ffffffffffffffff811115613e9f57613e9e614b63565b5b613eab87828801613cee565b91505092959194509250565b60008060408385031215613ece57613ecd614b68565b5b6000613edc85828601613c29565b9250506020613eed85828601613c9a565b9150509250929050565b60008060408385031215613f0e57613f0d614b68565b5b6000613f1c85828601613c29565b9250506020613f2d85828601613d4a565b9150509250929050565b600060208284031215613f4d57613f4c614b68565b5b600082013567ffffffffffffffff811115613f6b57613f6a614b63565b5b613f7784828501613c3e565b91505092915050565b600060208284031215613f9657613f95614b68565b5b6000613fa484828501613caf565b91505092915050565b600060208284031215613fc357613fc2614b68565b5b6000613fd184828501613cc4565b91505092915050565b600060208284031215613ff057613fef614b68565b5b6000613ffe84828501613cd9565b91505092915050565b60006020828403121561401d5761401c614b68565b5b600082013567ffffffffffffffff81111561403b5761403a614b63565b5b61404784828501613d1c565b91505092915050565b60006020828403121561406657614065614b68565b5b600061407484828501613d4a565b91505092915050565b60006020828403121561409357614092614b68565b5b60006140a184828501613d5f565b91505092915050565b600080604083850312156140c1576140c0614b68565b5b60006140cf85828601613d4a565b925050602083013567ffffffffffffffff8111156140f0576140ef614b63565b5b6140fc85828601613c6c565b9150509250929050565b61410f8161489e565b82525050565b6141266141218261489e565b614a0a565b82525050565b614135816148b0565b82525050565b614144816148bc565b82525050565b61415b614156826148bc565b614a1c565b82525050565b600061416c82614746565b614176818561475c565b935061418681856020860161492b565b61418f81614b6d565b840191505092915050565b60006141a582614751565b6141af818561476d565b93506141bf81856020860161492b565b6141c881614b6d565b840191505092915050565b60006141de82614751565b6141e8818561477e565b93506141f881856020860161492b565b80840191505092915050565b600061421160258361476d565b915061421c82614b8b565b604082019050919050565b600061423460268361476d565b915061423f82614bda565b604082019050919050565b600061425760268361476d565b915061426282614c29565b604082019050919050565b600061427a601f8361476d565b915061428582614c78565b602082019050919050565b600061429d60058361477e565b91506142a882614ca1565b600582019050919050565b60006142c060208361476d565b91506142cb82614cca565b602082019050919050565b60006142e360178361476d565b91506142ee82614cf3565b602082019050919050565b6000614306602f8361476d565b915061431182614d1c565b604082019050919050565b600061432960188361476d565b915061433482614d6b565b602082019050919050565b600061434c601e8361476d565b915061435782614d94565b602082019050919050565b600061436f60118361476d565b915061437a82614dbd565b602082019050919050565b600061439260268361476d565b915061439d82614de6565b604082019050919050565b6143b181614912565b82525050565b60006143c38284614115565b60148201915081905092915050565b60006143de828561414a565b6020820191506143ee828461414a565b6020820191508190509392505050565b600061440a82856141d3565b915061441682846141d3565b915061442182614290565b91508190509392505050565b60006020820190506144426000830184614106565b92915050565b600060808201905061445d6000830187614106565b61446a6020830186614106565b61447760408301856143a8565b81810360608301526144898184614161565b905095945050505050565b60006020820190506144a9600083018461412c565b92915050565b60006020820190506144c4600083018461413b565b92915050565b600060208201905081810360008301526144e4818461419a565b905092915050565b6000602082019050818103600083015261450581614204565b9050919050565b6000602082019050818103600083015261452581614227565b9050919050565b600060208201905081810360008301526145458161424a565b9050919050565b600060208201905081810360008301526145658161426d565b9050919050565b60006020820190508181036000830152614585816142b3565b9050919050565b600060208201905081810360008301526145a5816142d6565b9050919050565b600060208201905081810360008301526145c5816142f9565b9050919050565b600060208201905081810360008301526145e58161431c565b9050919050565b600060208201905081810360008301526146058161433f565b9050919050565b6000602082019050818103600083015261462581614362565b9050919050565b6000602082019050818103600083015261464581614385565b9050919050565b600060208201905061466160008301846143a8565b92915050565b6000614671614682565b905061467d8282614990565b919050565b6000604051905090565b600067ffffffffffffffff8211156146a7576146a6614b25565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146d3576146d2614b25565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146ff576146fe614b25565b5b61470882614b6d565b9050602081019050919050565b600067ffffffffffffffff8211156147305761472f614b25565b5b61473982614b6d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061479482614912565b915061479f83614912565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147d4576147d3614a69565b5b828201905092915050565b60006147ea82614912565b91506147f583614912565b92508261480557614804614a98565b5b828204905092915050565b600061481b82614912565b915061482683614912565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561485f5761485e614a69565b5b828202905092915050565b600061487582614912565b915061488083614912565b92508282101561489357614892614a69565b5b828203905092915050565b60006148a9826148f2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561494957808201518184015260208101905061492e565b83811115614958576000848401525b50505050565b6000600282049050600182168061497657607f821691505b6020821081141561498a57614989614ac7565b5b50919050565b61499982614b6d565b810181811067ffffffffffffffff821117156149b8576149b7614b25565b5b80604052505050565b60006149cc82614912565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ff576149fe614a69565b5b600182019050919050565b6000614a1582614a26565b9050919050565b6000819050919050565b6000614a3182614b7e565b9050919050565b6000614a4382614912565b9150614a4e83614912565b925082614a5e57614a5d614a98565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b614e3e8161489e565b8114614e4957600080fd5b50565b614e55816148b0565b8114614e6057600080fd5b50565b614e6c816148bc565b8114614e7757600080fd5b50565b614e83816148c6565b8114614e8e57600080fd5b50565b614e9a81614912565b8114614ea557600080fd5b5056fea2646970667358221220bd48ffdad42074323b925366d15d0c50d4e0d5fead0176ab0d2aa9b259577f2864736f6c63430008070033
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.