ERC-721
Overview
Max Total Supply
1,118 0xINVSBLE
Holders
311
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
25 0xINVSBLELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InvsbleFrens
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-01 */ // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol // 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); 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 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 {} } // File: contracts/InvsbleFrens.sol pragma solidity ^0.8.0; contract InvsbleFrens is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public baseExtenstion = ".json"; uint256 public cost = 0.01 ether; uint256 public maxSupply = 5000; uint256 maxMintAmount = 25; bool public paused = true; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); require(_mintAmount <= maxMintAmount); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount); } _safeMint(_to, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtenstion) ) : ""; } //only owner function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function SetBaseExtension(string memory _newBaseExtestion) public onlyOwner { baseExtenstion = _newBaseExtestion; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":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":"string","name":"_newBaseExtestion","type":"string"}],"name":"SetBaseExtension","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":"baseExtenstion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a91906200019b565b50662386f26fc10000600b55611388600c556019600d55600e805460ff191660011790553480156200005957600080fd5b5060405162001f1f38038062001f1f8339810160408190526200007c91620002f8565b825183908390620000959060029060208501906200019b565b508051620000ab9060039060208401906200019b565b50506000805550620000bd33620000d1565b620000c88162000123565b505050620003dc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001979060099060208401906200019b565b5050565b828054620001a99062000389565b90600052602060002090601f016020900481019282620001cd576000855562000218565b82601f10620001e857805160ff191683800117855562000218565b8280016001018555821562000218579182015b8281111562000218578251825591602001919060010190620001fb565b50620002269291506200022a565b5090565b5b808211156200022657600081556001016200022b565b600082601f8301126200025357600080fd5b81516001600160401b0380821115620002705762000270620003c6565b604051601f8301601f19908116603f011681019082821181831017156200029b576200029b620003c6565b81604052838152602092508683858801011115620002b857600080fd5b600091505b83821015620002dc5785820183015181830184015290820190620002bd565b83821115620002ee5760008385830101525b9695505050505050565b6000806000606084860312156200030e57600080fd5b83516001600160401b03808211156200032657600080fd5b620003348783880162000241565b945060208601519150808211156200034b57600080fd5b620003598783880162000241565b935060408601519150808211156200037057600080fd5b506200037f8682870162000241565b9150509250925092565b600181811c908216806200039e57607f821691505b60208210811415620003c057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b3380620003ec6000396000f3fe6080604052600436106101c25760003560e01c80636071cea6116100f75780639585f5af11610095578063c87b56dd11610064578063c87b56dd146104bc578063d5abeb01146104dc578063e985e9c5146104f2578063f2fde38b1461053b57600080fd5b80639585f5af1461045257806395d89b4114610467578063a22cb4651461047c578063b88d4fde1461049c57600080fd5b806370a08231116100d157806370a08231146103df578063715018a6146103ff5780637f00c7a6146104145780638da5cb5b1461043457600080fd5b80636071cea61461038a5780636352211e146103aa5780636c0360eb146103ca57600080fd5b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461031057806344a0d68a1461033057806355f804b3146103505780635c975abb1461037057600080fd5b806323b872dd146102d55780633ccfd60b146102f557806340c10f19146102fd57600080fd5b8063081812fc116101a0578063081812fc14610240578063095ea7b31461027857806313faede61461029857806318160ddd146102bc57600080fd5b806301ffc9a7146101c757806302329a29146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611786565b61055b565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c61021736600461176b565b6105ad565b005b34801561022a57600080fd5b506102336105f3565b6040516101f3919061194f565b34801561024c57600080fd5b5061026061025b366004611809565b610685565b6040516001600160a01b0390911681526020016101f3565b34801561028457600080fd5b5061021c610293366004611741565b6106c9565b3480156102a457600080fd5b506102ae600b5481565b6040519081526020016101f3565b3480156102c857600080fd5b50600154600054036102ae565b3480156102e157600080fd5b5061021c6102f036600461165f565b610757565b61021c610762565b61021c61030b366004611741565b6107b2565b34801561031c57600080fd5b5061021c61032b36600461165f565b61084d565b34801561033c57600080fd5b5061021c61034b366004611809565b610868565b34801561035c57600080fd5b5061021c61036b3660046117c0565b610897565b34801561037c57600080fd5b50600e546101e79060ff1681565b34801561039657600080fd5b5061021c6103a53660046117c0565b6108d8565b3480156103b657600080fd5b506102606103c5366004611809565b610915565b3480156103d657600080fd5b50610233610927565b3480156103eb57600080fd5b506102ae6103fa366004611611565b6109b5565b34801561040b57600080fd5b5061021c610a04565b34801561042057600080fd5b5061021c61042f366004611809565b610a38565b34801561044057600080fd5b506008546001600160a01b0316610260565b34801561045e57600080fd5b50610233610a67565b34801561047357600080fd5b50610233610a74565b34801561048857600080fd5b5061021c610497366004611717565b610a83565b3480156104a857600080fd5b5061021c6104b736600461169b565b610b19565b3480156104c857600080fd5b506102336104d7366004611809565b610b6a565b3480156104e857600080fd5b506102ae600c5481565b3480156104fe57600080fd5b506101e761050d36600461162c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054757600080fd5b5061021c610556366004611611565b610c38565b60006001600160e01b031982166380ac58cd60e01b148061058c57506001600160e01b03198216635b5e139f60e01b145b806105a757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105e05760405162461bcd60e51b81526004016105d790611962565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461060290611a25565b80601f016020809104026020016040519081016040528092919081815260200182805461062e90611a25565b801561067b5780601f106106505761010080835404028352916020019161067b565b820191906000526020600020905b81548152906001019060200180831161065e57829003601f168201915b5050505050905090565b600061069082610cd3565b6106ad576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d482610915565b9050806001600160a01b0316836001600160a01b031614156107095760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107295750610727813361050d565b155b15610747576040516367d9dca160e11b815260040160405180910390fd5b610752838383610cfe565b505050565b610752838383610d5a565b6008546001600160a01b0316331461078c5760405162461bcd60e51b81526004016105d790611962565b60405133904780156108fc02916000818181858888f193505050506107b057600080fd5b565b60006107c16001546000540390565b600e5490915060ff16156107d457600080fd5b600082116107e157600080fd5b600d548211156107f057600080fd5b600c546107fd8383611997565b111561080857600080fd5b600d5482111561081757600080fd5b6008546001600160a01b031633146108435781600b5461083791906119c3565b34101561084357600080fd5b6107528383610f70565b61075283838360405180602001604052806000815250610b19565b6008546001600160a01b031633146108925760405162461bcd60e51b81526004016105d790611962565b600b55565b6008546001600160a01b031633146108c15760405162461bcd60e51b81526004016105d790611962565b80516108d49060099060208401906114d6565b5050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016105d790611962565b80516108d490600a9060208401906114d6565b600061092082610f8a565b5192915050565b6009805461093490611a25565b80601f016020809104026020016040519081016040528092919081815260200182805461096090611a25565b80156109ad5780601f10610982576101008083540402835291602001916109ad565b820191906000526020600020905b81548152906001019060200180831161099057829003601f168201915b505050505081565b60006001600160a01b0382166109de576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a2e5760405162461bcd60e51b81526004016105d790611962565b6107b060006110a6565b6008546001600160a01b03163314610a625760405162461bcd60e51b81526004016105d790611962565b600d55565b600a805461093490611a25565b60606003805461060290611a25565b6001600160a01b038216331415610aad5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b24848484610d5a565b6001600160a01b0383163b15158015610b465750610b44848484846110f8565b155b15610b64576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7582610cd3565b610bd95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d7565b6000610be36111f0565b90506000815111610c035760405180602001604052806000815250610c31565b80610c0d846111ff565b600a604051602001610c219392919061184e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c625760405162461bcd60e51b81526004016105d790611962565b6001600160a01b038116610cc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b610cd0816110a6565b50565b60008054821080156105a7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d6582610f8a565b80519091506000906001600160a01b0316336001600160a01b03161480610d9357508151610d93903361050d565b80610dae575033610da384610685565b6001600160a01b0316145b905080610dce57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e035760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e2a57604051633a954ecd60e21b815260040160405180910390fd5b610e3a6000848460000151610cfe565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f2657600054811015610f26578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108d48282604051806020016040528060008152506112fd565b60408051606081018252600080825260208201819052918101919091528160005481101561108d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061108b5780516001600160a01b031615611021579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611086579392505050565b611021565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061112d903390899088908890600401611912565b602060405180830381600087803b15801561114757600080fd5b505af1925050508015611177575060408051601f3d908101601f19168201909252611174918101906117a3565b60015b6111d2573d8080156111a5576040519150601f19603f3d011682016040523d82523d6000602084013e6111aa565b606091505b5080516111ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461060290611a25565b6060816112235750506040805180820190915260018152600360fc1b602082015290565b8160005b811561124d578061123781611a60565b91506112469050600a836119af565b9150611227565b60008167ffffffffffffffff81111561126857611268611ad1565b6040519080825280601f01601f191660200182016040528015611292576020820181803683370190505b5090505b84156111e8576112a76001836119e2565b91506112b4600a86611a7b565b6112bf906030611997565b60f81b8183815181106112d4576112d4611abb565b60200101906001600160f81b031916908160001a9053506112f6600a866119af565b9450611296565b61075283838360016000546001600160a01b03851661132e57604051622e076360e81b815260040160405180910390fd5b8361134c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156113fe57506001600160a01b0387163b15155b15611487575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461144f60008884806001019550886110f8565b61146c576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561140457826000541461148257600080fd5b6114cd565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611488575b50600055610f69565b8280546114e290611a25565b90600052602060002090601f016020900481019282611504576000855561154a565b82601f1061151d57805160ff191683800117855561154a565b8280016001018555821561154a579182015b8281111561154a57825182559160200191906001019061152f565b5061155692915061155a565b5090565b5b80821115611556576000815560010161155b565b600067ffffffffffffffff8084111561158a5761158a611ad1565b604051601f8501601f19908116603f011681019082821181831017156115b2576115b2611ad1565b816040528093508581528686860111156115cb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115fc57600080fd5b919050565b803580151581146115fc57600080fd5b60006020828403121561162357600080fd5b610c31826115e5565b6000806040838503121561163f57600080fd5b611648836115e5565b9150611656602084016115e5565b90509250929050565b60008060006060848603121561167457600080fd5b61167d846115e5565b925061168b602085016115e5565b9150604084013590509250925092565b600080600080608085870312156116b157600080fd5b6116ba856115e5565b93506116c8602086016115e5565b925060408501359150606085013567ffffffffffffffff8111156116eb57600080fd5b8501601f810187136116fc57600080fd5b61170b8782356020840161156f565b91505092959194509250565b6000806040838503121561172a57600080fd5b611733836115e5565b915061165660208401611601565b6000806040838503121561175457600080fd5b61175d836115e5565b946020939093013593505050565b60006020828403121561177d57600080fd5b610c3182611601565b60006020828403121561179857600080fd5b8135610c3181611ae7565b6000602082840312156117b557600080fd5b8151610c3181611ae7565b6000602082840312156117d257600080fd5b813567ffffffffffffffff8111156117e957600080fd5b8201601f810184136117fa57600080fd5b6111e88482356020840161156f565b60006020828403121561181b57600080fd5b5035919050565b6000815180845261183a8160208601602086016119f9565b601f01601f19169290920160200192915050565b6000845160206118618285838a016119f9565b8551918401916118748184848a016119f9565b8554920191600090600181811c908083168061189157607f831692505b8583108114156118af57634e487b7160e01b85526022600452602485fd5b8080156118c357600181146118d457611901565b60ff19851688528388019550611901565b60008b81526020902060005b858110156118f95781548a8201529084019088016118e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061194590830184611822565b9695505050505050565b602081526000610c316020830184611822565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119aa576119aa611a8f565b500190565b6000826119be576119be611aa5565b500490565b60008160001904831182151516156119dd576119dd611a8f565b500290565b6000828210156119f4576119f4611a8f565b500390565b60005b83811015611a145781810151838201526020016119fc565b83811115610b645750506000910152565b600181811c90821680611a3957607f821691505b60208210811415611a5a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7457611a74611a8f565b5060010190565b600082611a8a57611a8a611aa5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd057600080fdfea26469706673582212207a3ed71c3b40f48dd387fda1072245226755d8d4487e67c9a5fef71a5e1f6ebf64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000123078496e76697369626c65467269656e6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000093078494e5653424c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d51374c6f37684b66366b4c37716244655a4e32446d39363845526a574d59475a4263474d334d6873346166382f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636071cea6116100f75780639585f5af11610095578063c87b56dd11610064578063c87b56dd146104bc578063d5abeb01146104dc578063e985e9c5146104f2578063f2fde38b1461053b57600080fd5b80639585f5af1461045257806395d89b4114610467578063a22cb4651461047c578063b88d4fde1461049c57600080fd5b806370a08231116100d157806370a08231146103df578063715018a6146103ff5780637f00c7a6146104145780638da5cb5b1461043457600080fd5b80636071cea61461038a5780636352211e146103aa5780636c0360eb146103ca57600080fd5b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461031057806344a0d68a1461033057806355f804b3146103505780635c975abb1461037057600080fd5b806323b872dd146102d55780633ccfd60b146102f557806340c10f19146102fd57600080fd5b8063081812fc116101a0578063081812fc14610240578063095ea7b31461027857806313faede61461029857806318160ddd146102bc57600080fd5b806301ffc9a7146101c757806302329a29146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611786565b61055b565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c61021736600461176b565b6105ad565b005b34801561022a57600080fd5b506102336105f3565b6040516101f3919061194f565b34801561024c57600080fd5b5061026061025b366004611809565b610685565b6040516001600160a01b0390911681526020016101f3565b34801561028457600080fd5b5061021c610293366004611741565b6106c9565b3480156102a457600080fd5b506102ae600b5481565b6040519081526020016101f3565b3480156102c857600080fd5b50600154600054036102ae565b3480156102e157600080fd5b5061021c6102f036600461165f565b610757565b61021c610762565b61021c61030b366004611741565b6107b2565b34801561031c57600080fd5b5061021c61032b36600461165f565b61084d565b34801561033c57600080fd5b5061021c61034b366004611809565b610868565b34801561035c57600080fd5b5061021c61036b3660046117c0565b610897565b34801561037c57600080fd5b50600e546101e79060ff1681565b34801561039657600080fd5b5061021c6103a53660046117c0565b6108d8565b3480156103b657600080fd5b506102606103c5366004611809565b610915565b3480156103d657600080fd5b50610233610927565b3480156103eb57600080fd5b506102ae6103fa366004611611565b6109b5565b34801561040b57600080fd5b5061021c610a04565b34801561042057600080fd5b5061021c61042f366004611809565b610a38565b34801561044057600080fd5b506008546001600160a01b0316610260565b34801561045e57600080fd5b50610233610a67565b34801561047357600080fd5b50610233610a74565b34801561048857600080fd5b5061021c610497366004611717565b610a83565b3480156104a857600080fd5b5061021c6104b736600461169b565b610b19565b3480156104c857600080fd5b506102336104d7366004611809565b610b6a565b3480156104e857600080fd5b506102ae600c5481565b3480156104fe57600080fd5b506101e761050d36600461162c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054757600080fd5b5061021c610556366004611611565b610c38565b60006001600160e01b031982166380ac58cd60e01b148061058c57506001600160e01b03198216635b5e139f60e01b145b806105a757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105e05760405162461bcd60e51b81526004016105d790611962565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461060290611a25565b80601f016020809104026020016040519081016040528092919081815260200182805461062e90611a25565b801561067b5780601f106106505761010080835404028352916020019161067b565b820191906000526020600020905b81548152906001019060200180831161065e57829003601f168201915b5050505050905090565b600061069082610cd3565b6106ad576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d482610915565b9050806001600160a01b0316836001600160a01b031614156107095760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107295750610727813361050d565b155b15610747576040516367d9dca160e11b815260040160405180910390fd5b610752838383610cfe565b505050565b610752838383610d5a565b6008546001600160a01b0316331461078c5760405162461bcd60e51b81526004016105d790611962565b60405133904780156108fc02916000818181858888f193505050506107b057600080fd5b565b60006107c16001546000540390565b600e5490915060ff16156107d457600080fd5b600082116107e157600080fd5b600d548211156107f057600080fd5b600c546107fd8383611997565b111561080857600080fd5b600d5482111561081757600080fd5b6008546001600160a01b031633146108435781600b5461083791906119c3565b34101561084357600080fd5b6107528383610f70565b61075283838360405180602001604052806000815250610b19565b6008546001600160a01b031633146108925760405162461bcd60e51b81526004016105d790611962565b600b55565b6008546001600160a01b031633146108c15760405162461bcd60e51b81526004016105d790611962565b80516108d49060099060208401906114d6565b5050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016105d790611962565b80516108d490600a9060208401906114d6565b600061092082610f8a565b5192915050565b6009805461093490611a25565b80601f016020809104026020016040519081016040528092919081815260200182805461096090611a25565b80156109ad5780601f10610982576101008083540402835291602001916109ad565b820191906000526020600020905b81548152906001019060200180831161099057829003601f168201915b505050505081565b60006001600160a01b0382166109de576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a2e5760405162461bcd60e51b81526004016105d790611962565b6107b060006110a6565b6008546001600160a01b03163314610a625760405162461bcd60e51b81526004016105d790611962565b600d55565b600a805461093490611a25565b60606003805461060290611a25565b6001600160a01b038216331415610aad5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b24848484610d5a565b6001600160a01b0383163b15158015610b465750610b44848484846110f8565b155b15610b64576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7582610cd3565b610bd95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d7565b6000610be36111f0565b90506000815111610c035760405180602001604052806000815250610c31565b80610c0d846111ff565b600a604051602001610c219392919061184e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c625760405162461bcd60e51b81526004016105d790611962565b6001600160a01b038116610cc75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b610cd0816110a6565b50565b60008054821080156105a7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d6582610f8a565b80519091506000906001600160a01b0316336001600160a01b03161480610d9357508151610d93903361050d565b80610dae575033610da384610685565b6001600160a01b0316145b905080610dce57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e035760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e2a57604051633a954ecd60e21b815260040160405180910390fd5b610e3a6000848460000151610cfe565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f2657600054811015610f26578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108d48282604051806020016040528060008152506112fd565b60408051606081018252600080825260208201819052918101919091528160005481101561108d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061108b5780516001600160a01b031615611021579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611086579392505050565b611021565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061112d903390899088908890600401611912565b602060405180830381600087803b15801561114757600080fd5b505af1925050508015611177575060408051601f3d908101601f19168201909252611174918101906117a3565b60015b6111d2573d8080156111a5576040519150601f19603f3d011682016040523d82523d6000602084013e6111aa565b606091505b5080516111ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461060290611a25565b6060816112235750506040805180820190915260018152600360fc1b602082015290565b8160005b811561124d578061123781611a60565b91506112469050600a836119af565b9150611227565b60008167ffffffffffffffff81111561126857611268611ad1565b6040519080825280601f01601f191660200182016040528015611292576020820181803683370190505b5090505b84156111e8576112a76001836119e2565b91506112b4600a86611a7b565b6112bf906030611997565b60f81b8183815181106112d4576112d4611abb565b60200101906001600160f81b031916908160001a9053506112f6600a866119af565b9450611296565b61075283838360016000546001600160a01b03851661132e57604051622e076360e81b815260040160405180910390fd5b8361134c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156113fe57506001600160a01b0387163b15155b15611487575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461144f60008884806001019550886110f8565b61146c576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561140457826000541461148257600080fd5b6114cd565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611488575b50600055610f69565b8280546114e290611a25565b90600052602060002090601f016020900481019282611504576000855561154a565b82601f1061151d57805160ff191683800117855561154a565b8280016001018555821561154a579182015b8281111561154a57825182559160200191906001019061152f565b5061155692915061155a565b5090565b5b80821115611556576000815560010161155b565b600067ffffffffffffffff8084111561158a5761158a611ad1565b604051601f8501601f19908116603f011681019082821181831017156115b2576115b2611ad1565b816040528093508581528686860111156115cb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115fc57600080fd5b919050565b803580151581146115fc57600080fd5b60006020828403121561162357600080fd5b610c31826115e5565b6000806040838503121561163f57600080fd5b611648836115e5565b9150611656602084016115e5565b90509250929050565b60008060006060848603121561167457600080fd5b61167d846115e5565b925061168b602085016115e5565b9150604084013590509250925092565b600080600080608085870312156116b157600080fd5b6116ba856115e5565b93506116c8602086016115e5565b925060408501359150606085013567ffffffffffffffff8111156116eb57600080fd5b8501601f810187136116fc57600080fd5b61170b8782356020840161156f565b91505092959194509250565b6000806040838503121561172a57600080fd5b611733836115e5565b915061165660208401611601565b6000806040838503121561175457600080fd5b61175d836115e5565b946020939093013593505050565b60006020828403121561177d57600080fd5b610c3182611601565b60006020828403121561179857600080fd5b8135610c3181611ae7565b6000602082840312156117b557600080fd5b8151610c3181611ae7565b6000602082840312156117d257600080fd5b813567ffffffffffffffff8111156117e957600080fd5b8201601f810184136117fa57600080fd5b6111e88482356020840161156f565b60006020828403121561181b57600080fd5b5035919050565b6000815180845261183a8160208601602086016119f9565b601f01601f19169290920160200192915050565b6000845160206118618285838a016119f9565b8551918401916118748184848a016119f9565b8554920191600090600181811c908083168061189157607f831692505b8583108114156118af57634e487b7160e01b85526022600452602485fd5b8080156118c357600181146118d457611901565b60ff19851688528388019550611901565b60008b81526020902060005b858110156118f95781548a8201529084019088016118e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061194590830184611822565b9695505050505050565b602081526000610c316020830184611822565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119aa576119aa611a8f565b500190565b6000826119be576119be611aa5565b500490565b60008160001904831182151516156119dd576119dd611a8f565b500290565b6000828210156119f4576119f4611a8f565b500390565b60005b83811015611a145781810151838201526020016119fc565b83811115610b645750506000910152565b600181811c90821680611a3957607f821691505b60208210811415611a5a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7457611a74611a8f565b5060010190565b600082611a8a57611a8a611aa5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd057600080fdfea26469706673582212207a3ed71c3b40f48dd387fda1072245226755d8d4487e67c9a5fef71a5e1f6ebf64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000123078496e76697369626c65467269656e6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000093078494e5653424c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d51374c6f37684b66366b4c37716244655a4e32446d39363845526a574d59475a4263474d334d6873346166382f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): 0xInvisibleFriends
Arg [1] : _symbol (string): 0xINVSBLE
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmQ7Lo7hKf6kL7qbDeZN2Dm968ERjWMYGZBcGM3Mhs4af8/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 3078496e76697369626c65467269656e64730000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 3078494e5653424c450000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d51374c6f37684b66366b4c37716244655a4e32446d39363845526a57
Arg [10] : 4d59475a4263474d334d6873346166382f000000000000000000000000000000
Deployed Bytecode Sourcemap
45448:2110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27913:305;;;;;;;;;;-1:-1:-1;27913:305:0;;;;;:::i;:::-;;:::i;:::-;;;6960:14:1;;6953:22;6935:41;;6923:2;6908:18;27913:305:0;;;;;;;;47362:73;;;;;;;;;;-1:-1:-1;47362:73:0;;;;;:::i;:::-;;:::i;:::-;;31298:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32801:204::-;;;;;;;;;;-1:-1:-1;32801:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6258:32:1;;;6240:51;;6228:2;6213:18;32801:204:0;6094:203:1;32364:371:0;;;;;;;;;;-1:-1:-1;32364:371:0;;;;;:::i;:::-;;:::i;45596:32::-;;;;;;;;;;;;;;;;;;;8541:25:1;;;8529:2;8514:18;45596:32:0;8395:177:1;27162:303:0;;;;;;;;;;-1:-1:-1;27416:12:0;;27206:7;27400:13;:28;27162:303;;33658:170;;;;;;;;;;-1:-1:-1;33658:170:0;;;;;:::i;:::-;;:::i;47441:114::-;;;:::i;46011:427::-;;;;;;:::i;:::-;;:::i;33899:185::-;;;;;;;;;;-1:-1:-1;33899:185:0;;;;;:::i;:::-;;:::i;46921:80::-;;;;;;;;;;-1:-1:-1;46921:80:0;;;;;:::i;:::-;;:::i;47129:98::-;;;;;;;;;;-1:-1:-1;47129:98:0;;;;;:::i;:::-;;:::i;45700:25::-;;;;;;;;;;-1:-1:-1;45700:25:0;;;;;;;;47233:123;;;;;;;;;;-1:-1:-1;47233:123:0;;;;;:::i;:::-;;:::i;31107:124::-;;;;;;;;;;-1:-1:-1;31107:124:0;;;;;:::i;:::-;;:::i;45527:21::-;;;;;;;;;;;;;:::i;28282:206::-;;;;;;;;;;-1:-1:-1;28282:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;47007:116::-;;;;;;;;;;-1:-1:-1;47007:116:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;45553:38;;;;;;;;;;;;;:::i;31467:104::-;;;;;;;;;;;;;:::i;33077:279::-;;;;;;;;;;-1:-1:-1;33077:279:0;;;;;:::i;:::-;;:::i;34155:369::-;;;;;;;;;;-1:-1:-1;34155:369:0;;;;;:::i;:::-;;:::i;46446:453::-;;;;;;;;;;-1:-1:-1;46446:453:0;;;;;:::i;:::-;;:::i;45633:31::-;;;;;;;;;;;;;;;;33427:164;;;;;;;;;;-1:-1:-1;33427:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33548:25:0;;;33524:4;33548:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33427:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;27913:305::-;28015:4;-1:-1:-1;;;;;;28052:40:0;;-1:-1:-1;;;28052:40:0;;:105;;-1:-1:-1;;;;;;;28109:48:0;;-1:-1:-1;;;28109:48:0;28052:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;28174:36;28032:178;27913:305;-1:-1:-1;;27913:305:0:o;47362:73::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;47414:6:::1;:15:::0;;-1:-1:-1;;47414:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47362:73::o;31298:100::-;31352:13;31385:5;31378:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31298:100;:::o;32801:204::-;32869:7;32894:16;32902:7;32894;:16::i;:::-;32889:64;;32919:34;;-1:-1:-1;;;32919:34:0;;;;;;;;;;;32889:64;-1:-1:-1;32973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32973:24:0;;32801:204::o;32364:371::-;32437:13;32453:24;32469:7;32453:15;:24::i;:::-;32437:40;;32498:5;-1:-1:-1;;;;;32492:11:0;:2;-1:-1:-1;;;;;32492:11:0;;32488:48;;;32512:24;;-1:-1:-1;;;32512:24:0;;;;;;;;;;;32488:48;2883:10;-1:-1:-1;;;;;32553:21:0;;;;;;:63;;-1:-1:-1;32579:37:0;32596:5;2883:10;33427:164;:::i;32579:37::-;32578:38;32553:63;32549:138;;;32640:35;;-1:-1:-1;;;32640:35:0;;;;;;;;;;;32549:138;32699:28;32708:2;32712:7;32721:5;32699:8;:28::i;:::-;32426:309;32364:371;;:::o;33658:170::-;33792:28;33802:4;33808:2;33812:7;33792:9;:28::i;47441:114::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47501:47:::1;::::0;47509:10:::1;::::0;47526:21:::1;47501:47:::0;::::1;;;::::0;::::1;::::0;;;47526:21;47509:10;47501:47;::::1;;;;;;47493:56;;;::::0;::::1;;47441:114::o:0;46011:427::-;46081:14;46098:13;27416:12;;27206:7;27400:13;:28;;27162:303;46098:13;46127:6;;46081:30;;-1:-1:-1;46127:6:0;;46126:7;46118:16;;;;;;46163:1;46149:11;:15;46141:24;;;;;;46195:13;;46180:11;:28;;46172:37;;;;;;46248:9;;46224:20;46233:11;46224:6;:20;:::i;:::-;:33;;46216:42;;;;;;46288:13;;46273:11;:28;;46265:37;;;;;;4152:6;;-1:-1:-1;;;;;4152:6:0;46315:10;:21;46311:84;;46375:11;46368:4;;:18;;;;:::i;:::-;46355:9;:31;;46347:40;;;;;;46403:27;46413:3;46418:11;46403:9;:27::i;33899:185::-;34037:39;34054:4;34060:2;34064:7;34037:39;;;;;;;;;;;;:16;:39::i;46921:80::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46980:4:::1;:15:::0;46921:80::o;47129:98::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47200:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47129:98:::0;:::o;47233:123::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47316:34;;::::1;::::0;:14:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;31107:124::-:0;31171:7;31198:20;31210:7;31198:11;:20::i;:::-;:25;;31107:124;-1:-1:-1;;31107:124:0:o;45527:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28282:206::-;28346:7;-1:-1:-1;;;;;28370:19:0;;28366:60;;28398:28;;-1:-1:-1;;;28398:28:0;;;;;;;;;;;28366:60;-1:-1:-1;;;;;;28452:19:0;;;;;:12;:19;;;;;:27;;;;28282:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;47007:116::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47084:13:::1;:33:::0;47007:116::o;45553:38::-;;;;;;;:::i;31467:104::-;31523:13;31556:7;31549:14;;;;;:::i;33077:279::-;-1:-1:-1;;;;;33168:24:0;;2883:10;33168:24;33164:54;;;33201:17;;-1:-1:-1;;;33201:17:0;;;;;;;;;;;33164:54;2883:10;33231:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33231:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33231:53:0;;;;;;;;;;33300:48;;6935:41:1;;;33231:42:0;;2883:10;33300:48;;6908:18:1;33300:48:0;;;;;;;33077:279;;:::o;34155:369::-;34322:28;34332:4;34338:2;34342:7;34322:9;:28::i;:::-;-1:-1:-1;;;;;34365:13:0;;6690:20;6738:8;;34365:76;;;;;34385:56;34416:4;34422:2;34426:7;34435:5;34385:30;:56::i;:::-;34384:57;34365:76;34361:156;;;34465:40;;-1:-1:-1;;;34465:40:0;;;;;;;;;;;34361:156;34155:369;;;;:::o;46446:453::-;46544:13;46585:16;46593:7;46585;:16::i;:::-;46569:97;;;;-1:-1:-1;;;46569:97:0;;8181:2:1;46569:97:0;;;8163:21:1;8220:2;8200:18;;;8193:30;8259:34;8239:18;;;8232:62;-1:-1:-1;;;8310:18:1;;;8303:45;8365:19;;46569:97:0;7979:411:1;46569:97:0;46675:28;46706:10;:8;:10::i;:::-;46675:41;;46768:1;46743:14;46737:28;:32;:156;;;;;;;;;;;;;;;;;46817:14;46833:18;:7;:16;:18::i;:::-;46853:14;46800:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46737:156;46723:170;46446:453;-1:-1:-1;;;46446:453:0:o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;7413:2:1;5069:73:0::1;::::0;::::1;7395:21:1::0;7452:2;7432:18;;;7425:30;7491:34;7471:18;;;7464:62;-1:-1:-1;;;7542:18:1;;;7535:36;7588:19;;5069:73:0::1;7211:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;34779:187::-;34836:4;34900:13;;34890:7;:23;34860:98;;;;-1:-1:-1;;34931:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34931:27:0;;;;34930:28;;34779:187::o;42390:196::-;42505:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42505:29:0;-1:-1:-1;;;;;42505:29:0;;;;;;;;;42550:28;;42505:24;;42550:28;;;;;;;42390:196;;;:::o;37892:2112::-;38007:35;38045:20;38057:7;38045:11;:20::i;:::-;38120:18;;38007:58;;-1:-1:-1;38078:22:0;;-1:-1:-1;;;;;38104:34:0;2883:10;-1:-1:-1;;;;;38104:34:0;;:101;;;-1:-1:-1;38172:18:0;;38155:50;;2883:10;33427:164;:::i;38155:50::-;38104:154;;;-1:-1:-1;2883:10:0;38222:20;38234:7;38222:11;:20::i;:::-;-1:-1:-1;;;;;38222:36:0;;38104:154;38078:181;;38277:17;38272:66;;38303:35;;-1:-1:-1;;;38303:35:0;;;;;;;;;;;38272:66;38375:4;-1:-1:-1;;;;;38353:26:0;:13;:18;;;-1:-1:-1;;;;;38353:26:0;;38349:67;;38388:28;;-1:-1:-1;;;38388:28:0;;;;;;;;;;;38349:67;-1:-1:-1;;;;;38431:16:0;;38427:52;;38456:23;;-1:-1:-1;;;38456:23:0;;;;;;;;;;;38427:52;38600:49;38617:1;38621:7;38630:13;:18;;;38600:8;:49::i;:::-;-1:-1:-1;;;;;38945:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38945:31:0;;;;;;;-1:-1:-1;;38945:31:0;;;;;;;38991:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38991:29:0;;;;;;;;;;;39037:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39082:61:0;;;;-1:-1:-1;;;39127:15:0;39082:61;;;;;;;;;;;39417:11;;;39447:24;;;;;:29;39417:11;;39447:29;39443:445;;39672:13;;39658:11;:27;39654:219;;;39742:18;;;39710:24;;;:11;:24;;;;;;;;:50;;39825:28;;;;39783:70;;-1:-1:-1;;;39783:70:0;-1:-1:-1;;;;;;39783:70:0;;;-1:-1:-1;;;;;39710:50:0;;;39783:70;;;;;;;39654:219;38920:979;39935:7;39931:2;-1:-1:-1;;;;;39916:27:0;39925:4;-1:-1:-1;;;;;39916:27:0;;;;;;;;;;;39954:42;37996:2008;;37892:2112;;;:::o;34974:104::-;35043:27;35053:2;35057:8;35043:27;;;;;;;;;;;;:9;:27::i;29937:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30047:7:0;30130:13;;30123:4;:20;30092:886;;;30164:31;30198:17;;;:11;:17;;;;;;;;;30164:51;;;;;;;;;-1:-1:-1;;;;;30164:51:0;;;;-1:-1:-1;;;30164:51:0;;;;;;;;;;;-1:-1:-1;;;30164:51:0;;;;;;;;;;;;;;30234:729;;30284:14;;-1:-1:-1;;;;;30284:28:0;;30280:101;;30348:9;29937:1108;-1:-1:-1;;;29937:1108:0:o;30280:101::-;-1:-1:-1;;;30723:6:0;30768:17;;;;:11;:17;;;;;;;;;30756:29;;;;;;;;;-1:-1:-1;;;;;30756:29:0;;;;;-1:-1:-1;;;30756:29:0;;;;;;;;;;;-1:-1:-1;;;30756:29:0;;;;;;;;;;;;;30816:28;30812:109;;30884:9;29937:1108;-1:-1:-1;;;29937:1108:0:o;30812:109::-;30683:261;;;30145:833;30092:886;31006:31;;-1:-1:-1;;;31006:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;43078:667::-;43262:72;;-1:-1:-1;;;43262:72:0;;43241:4;;-1:-1:-1;;;;;43262:36:0;;;;;:72;;2883:10;;43313:4;;43319:7;;43328:5;;43262:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43262:72:0;;;;;;;;-1:-1:-1;;43262:72:0;;;;;;;;;;;;:::i;:::-;;;43258:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43496:13:0;;43492:235;;43542:40;;-1:-1:-1;;;43542:40:0;;;;;;;;;;;43492:235;43685:6;43679:13;43670:6;43666:2;43662:15;43655:38;43258:480;-1:-1:-1;;;;;;43381:55:0;-1:-1:-1;;;43381:55:0;;-1:-1:-1;43258:480:0;43078:667;;;;;;:::o;45903:102::-;45963:13;45992:7;45985:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;35441:163;35564:32;35570:2;35574:8;35584:5;35591:4;36002:20;36025:13;-1:-1:-1;;;;;36053:16:0;;36049:48;;36078:19;;-1:-1:-1;;;36078:19:0;;;;;;;;;;;36049:48;36112:13;36108:44;;36134:18;;-1:-1:-1;;;36134:18:0;;;;;;;;;;;36108:44;-1:-1:-1;;;;;36503:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36562:49:0;;36503:44;;;;;;;;36562:49;;;;-1:-1:-1;;36503:44:0;;;;;;36562:49;;;;;;;;;;;;;;;;36628:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36678:66:0;;;;-1:-1:-1;;;36728:15:0;36678:66;;;;;;;;;;36628:25;36825:23;;;36869:4;:23;;;;-1:-1:-1;;;;;;36877:13:0;;6690:20;6738:8;;36877:15;36865:641;;;36913:314;36944:38;;36969:12;;-1:-1:-1;;;;;36944:38:0;;;36961:1;;36944:38;;36961:1;;36944:38;37010:69;37049:1;37053:2;37057:14;;;;;;37073:5;37010:30;:69::i;:::-;37005:174;;37115:40;;-1:-1:-1;;;37115:40:0;;;;;;;;;;;37005:174;37222:3;37206:12;:19;;36913:314;;37308:12;37291:13;;:29;37287:43;;37322:8;;;37287:43;36865:641;;;37371:120;37402:40;;37427:14;;;;;-1:-1:-1;;;;;37402:40:0;;;37419:1;;37402:40;;37419:1;;37402:40;37486:3;37470:12;:19;;37371:120;;36865:641;-1:-1:-1;37520:13:0;:28;37570:60;34155:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;8650:1;8643:14;;;8687:4;8674:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6302:488::-;-1:-1:-1;;;;;6571:15:1;;;6553:34;;6623:15;;6618:2;6603:18;;6596:43;6670:2;6655:18;;6648:34;;;6718:3;6713:2;6698:18;;6691:31;;;6496:4;;6739:45;;6764:19;;6756:6;6739:45;:::i;:::-;6731:53;6302:488;-1:-1:-1;;;;;;6302:488:1:o;6987:219::-;7136:2;7125:9;7118:21;7099:4;7156:44;7196:2;7185:9;7181:18;7173:6;7156:44;:::i;7618:356::-;7820:2;7802:21;;;7839:18;;;7832:30;7898:34;7893:2;7878:18;;7871:62;7965:2;7950:18;;7618:356::o;8703:128::-;8743:3;8774:1;8770:6;8767:1;8764:13;8761:39;;;8780:18;;:::i;:::-;-1:-1:-1;8816:9:1;;8703:128::o;8836:120::-;8876:1;8902;8892:35;;8907:18;;:::i;:::-;-1:-1:-1;8941:9:1;;8836:120::o;8961:168::-;9001:7;9067:1;9063;9059:6;9055:14;9052:1;9049:21;9044:1;9037:9;9030:17;9026:45;9023:71;;;9074:18;;:::i;:::-;-1:-1:-1;9114:9:1;;8961:168::o;9134:125::-;9174:4;9202:1;9199;9196:8;9193:34;;;9207:18;;:::i;:::-;-1:-1:-1;9244:9:1;;9134:125::o;9264:258::-;9336:1;9346:113;9360:6;9357:1;9354:13;9346:113;;;9436:11;;;9430:18;9417:11;;;9410:39;9382:2;9375:10;9346:113;;;9477:6;9474:1;9471:13;9468:48;;;-1:-1:-1;;9512:1:1;9494:16;;9487:27;9264:258::o;9527:380::-;9606:1;9602:12;;;;9649;;;9670:61;;9724:4;9716:6;9712:17;9702:27;;9670:61;9777:2;9769:6;9766:14;9746:18;9743:38;9740:161;;;9823:10;9818:3;9814:20;9811:1;9804:31;9858:4;9855:1;9848:15;9886:4;9883:1;9876:15;9740:161;;9527:380;;;:::o;9912:135::-;9951:3;-1:-1:-1;;9972:17:1;;9969:43;;;9992:18;;:::i;:::-;-1:-1:-1;10039:1:1;10028:13;;9912:135::o;10052:112::-;10084:1;10110;10100:35;;10115:18;;:::i;:::-;-1:-1:-1;10149:9:1;;10052:112::o;10169:127::-;10230:10;10225:3;10221:20;10218:1;10211:31;10261:4;10258:1;10251:15;10285:4;10282:1;10275:15;10301:127;10362:10;10357:3;10353:20;10350:1;10343:31;10393:4;10390:1;10383:15;10417:4;10414:1;10407:15;10433:127;10494:10;10489:3;10485:20;10482:1;10475:31;10525:4;10522:1;10515:15;10549:4;10546:1;10539:15;10565:127;10626:10;10621:3;10617:20;10614:1;10607:31;10657:4;10654:1;10647:15;10681:4;10678:1;10671:15;10697:131;-1:-1:-1;;;;;;10771:32:1;;10761:43;;10751:71;;10818:1;10815;10808:12
Swarm Source
ipfs://7a3ed71c3b40f48dd387fda1072245226755d8d4487e67c9a5fef71a5e1f6ebf
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.