ERC-721
Overview
Max Total Supply
58 MFERSP
Holders
21
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 MFERSPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT_Contract
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity Multiple files format)
pragma solidity 0.8.11; // SPDX-License-Identifier: MIT import "./ERC721A.sol"; import "./Ownable.sol"; contract NFT_Contract is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 0.01 ether; uint256 public maxSupply = 10021; uint256 public maxMint = 10; IERC721 public MFER = IERC721(0x79FCDEF22feeD20eDDacbB2587640e45491b757f); constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); } /** * @dev YOU MUST BE A MFER TOKEN HOLDER TO MINT */ function mint(uint256 quantity) external payable { uint256 supply = totalSupply(); require(quantity > 0, "Quantity Must Be Higher Than Zero"); require(quantity <= maxMint , "You're Not Allowed To Mint more than maxMint Amount"); require(supply + quantity <= maxSupply, "Max Supply Reached"); if (msg.sender != owner()) { require(MFER.balanceOf(msg.sender) != 0 , "You Must Be A MFER Token Holder To Mint"); require(msg.value >= cost * quantity, "Insufficient Funds"); } _safeMint(msg.sender, quantity); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } 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(), baseExtension ) ) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function withdraw() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Balance should be more then zero"); payable(address(msg.sender)).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } 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; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received( address(0), to, updatedIndex, _data ), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } 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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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); } }
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"},{"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":[],"name":"MFER","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","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":"baseExtension","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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":[],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","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":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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
60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001c3565b50662386f26fc10000600a908155612725600b55600c55600d80546001600160a01b0319167379fcdef22feed20eddacbb2587640e45491b757f1790553480156200007257600080fd5b506040516200250638038062002506833981016040819052620000959162000336565b825183908390620000ae906001906020850190620001c3565b508051620000c4906002906020840190620001c3565b505050620000e1620000db620000f560201b60201c565b620000f9565b620000ec816200014b565b50505062000404565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001bf906008906020840190620001c3565b5050565b828054620001d190620003c7565b90600052602060002090601f016020900481019282620001f5576000855562000240565b82601f106200021057805160ff191683800117855562000240565b8280016001018555821562000240579182015b828111156200024057825182559160200191906001019062000223565b506200024e92915062000252565b5090565b5b808211156200024e576000815560010162000253565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029157600080fd5b81516001600160401b0380821115620002ae57620002ae62000269565b604051601f8301601f19908116603f01168101908282118183101715620002d957620002d962000269565b81604052838152602092508683858801011115620002f657600080fd5b600091505b838210156200031a5785820183015181830184015290820190620002fb565b838211156200032c5760008385830101525b9695505050505050565b6000806000606084860312156200034c57600080fd5b83516001600160401b03808211156200036457600080fd5b62000372878388016200027f565b945060208601519150808211156200038957600080fd5b62000397878388016200027f565b93506040860151915080821115620003ae57600080fd5b50620003bd868287016200027f565b9150509250925092565b600181811c90821680620003dc57607f821691505b60208210811415620003fe57634e487b7160e01b600052602260045260246000fd5b50919050565b6120f280620004146000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461050a578063da3ef23f14610520578063e985e9c514610540578063f2fde38b1461058957600080fd5b8063a22cb46514610495578063b88d4fde146104b5578063c6682862146104d5578063c87b56dd146104ea57600080fd5b80637501f741116100d15780637501f741146104395780638da5cb5b1461044f57806395d89b411461046d578063a0712d681461048257600080fd5b80636352211e146103cf5780636c0360eb146103ef57806370a0823114610404578063715018a61461042457600080fd5b80632f745c591161017a57806344a0d68a1161014957806344a0d68a1461034f5780634f6ccce71461036f578063547520fe1461038f57806355f804b3146103af57600080fd5b80632f745c59146102e7578063313122b4146103075780633ccfd60b1461032757806342842e0e1461032f57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806318160ddd146102b257806323b872dd146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611af1565b6105a9565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610616565b6040516102099190611b66565b34801561024057600080fd5b5061025461024f366004611b79565b6106a8565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611bae565b610738565b005b34801561029a57600080fd5b506102a4600a5481565b604051908152602001610209565b3480156102be57600080fd5b506000546102a4565b3480156102d357600080fd5b5061028c6102e2366004611bd8565b610850565b3480156102f357600080fd5b506102a4610302366004611bae565b61085b565b34801561031357600080fd5b50600d54610254906001600160a01b031681565b61028c6109b8565b34801561033b57600080fd5b5061028c61034a366004611bd8565b610a61565b34801561035b57600080fd5b5061028c61036a366004611b79565b610a7c565b34801561037b57600080fd5b506102a461038a366004611b79565b610aab565b34801561039b57600080fd5b5061028c6103aa366004611b79565b610b0d565b3480156103bb57600080fd5b5061028c6103ca366004611ca0565b610b3c565b3480156103db57600080fd5b506102546103ea366004611b79565b610b79565b3480156103fb57600080fd5b50610227610b8b565b34801561041057600080fd5b506102a461041f366004611ce9565b610c19565b34801561043057600080fd5b5061028c610caa565b34801561044557600080fd5b506102a4600c5481565b34801561045b57600080fd5b506007546001600160a01b0316610254565b34801561047957600080fd5b50610227610ce0565b61028c610490366004611b79565b610cef565b3480156104a157600080fd5b5061028c6104b0366004611d04565b610f3d565b3480156104c157600080fd5b5061028c6104d0366004611d40565b611002565b3480156104e157600080fd5b5061022761103b565b3480156104f657600080fd5b50610227610505366004611b79565b611048565b34801561051657600080fd5b506102a4600b5481565b34801561052c57600080fd5b5061028c61053b366004611ca0565b611118565b34801561054c57600080fd5b506101fd61055b366004611dbc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059557600080fd5b5061028c6105a4366004611ce9565b611155565b60006001600160e01b031982166380ac58cd60e01b14806105da57506001600160e01b03198216635b5e139f60e01b145b806105f557506001600160e01b0319821663780e9d6360e01b145b8061061057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062590611def565b80601f016020809104026020016040519081016040528092919081815260200182805461065190611def565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b5050505050905090565b60006106b5826000541190565b61071c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074382610b79565b9050806001600160a01b0316836001600160a01b031614156107b25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610713565b336001600160a01b03821614806107ce57506107ce813361055b565b6108405760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610713565b61084b8383836111f0565b505050565b61084b83838361124c565b600061086683610c19565b82106108bf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610713565b600080549080805b83811015610958576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561091a57805192505b876001600160a01b0316836001600160a01b0316141561094f57868414156109485750935061061092505050565b6001909301925b506001016108c7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610713565b6007546001600160a01b031633146109e25760405162461bcd60e51b815260040161071390611e2a565b4780610a305760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f6044820152606401610713565b604051339082156108fc029083906000818181858888f19350505050158015610a5d573d6000803e3d6000fd5b5050565b61084b83838360405180602001604052806000815250611002565b6007546001600160a01b03163314610aa65760405162461bcd60e51b815260040161071390611e2a565b600a55565b600080548210610b095760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610713565b5090565b6007546001600160a01b03163314610b375760405162461bcd60e51b815260040161071390611e2a565b600c55565b6007546001600160a01b03163314610b665760405162461bcd60e51b815260040161071390611e2a565b8051610a5d906008906020840190611a4b565b6000610b8482611531565b5192915050565b60088054610b9890611def565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490611def565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b505050505081565b60006001600160a01b038216610c855760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610713565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610cd45760405162461bcd60e51b815260040161071390611e2a565b610cde6000611608565b565b60606002805461062590611def565b60005481610d495760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610713565b600c54821115610db75760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610713565b600b54610dc48383611e75565b1115610e075760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610713565b6007546001600160a01b03163314610f3357600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190611e8d565b610ee15760405162461bcd60e51b815260206004820152602760248201527f596f75204d7573742042652041204d46455220546f6b656e20486f6c64657220604482015266151bc8135a5b9d60ca1b6064820152608401610713565b81600a54610eef9190611ea6565b341015610f335760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610713565b610a5d338361165a565b6001600160a01b038216331415610f965760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610713565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61100d84848461124c565b61101984848484611674565b6110355760405162461bcd60e51b815260040161071390611ec5565b50505050565b60098054610b9890611def565b6060611055826000541190565b6110b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610713565b60006110c3611773565b905060008151116110e35760405180602001604052806000815250611111565b806110ed84611782565b600960405160200161110193929190611f18565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111425760405162461bcd60e51b815260040161071390611e2a565b8051610a5d906009906020840190611a4b565b6007546001600160a01b0316331461117f5760405162461bcd60e51b815260040161071390611e2a565b6001600160a01b0381166111e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610713565b6111ed81611608565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061125782611531565b80519091506000906001600160a01b0316336001600160a01b0316148061128e575033611283846106a8565b6001600160a01b0316145b806112a0575081516112a0903361055b565b90508061130a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610713565b846001600160a01b031682600001516001600160a01b03161461137e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610713565b6001600160a01b0384166113e25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610713565b6113f260008484600001516111f0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166114e75761149a816000541190565b156114e7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611550826000541190565b6115af5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610713565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115fe579392505050565b50600019016115b1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a5d828260405180602001604052806000815250611880565b60006001600160a01b0384163b1561176757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116b8903390899088908890600401611fdc565b6020604051808303816000875af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190612019565b60015b61174d573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5080516117455760405162461bcd60e51b815260040161071390611ec5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061176b565b5060015b949350505050565b60606008805461062590611def565b6060816117a65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d057806117ba81612036565b91506117c99050600a83612067565b91506117aa565b60008167ffffffffffffffff8111156117eb576117eb611c14565b6040519080825280601f01601f191660200182016040528015611815576020820181803683370190505b5090505b841561176b5761182a60018361207b565b9150611837600a86612092565b611842906030611e75565b60f81b818381518110611857576118576120a6565b60200101906001600160f81b031916908160001a905350611879600a86612067565b9450611819565b61084b83838360016000546001600160a01b0385166118eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610713565b836119495760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610713565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a425760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a3657611a1a6000888488611674565b611a365760405162461bcd60e51b815260040161071390611ec5565b600191820191016119c7565b5060005561152a565b828054611a5790611def565b90600052602060002090601f016020900481019282611a795760008555611abf565b82601f10611a9257805160ff1916838001178555611abf565b82800160010185558215611abf579182015b82811115611abf578251825591602001919060010190611aa4565b50610b099291505b80821115610b095760008155600101611ac7565b6001600160e01b0319811681146111ed57600080fd5b600060208284031215611b0357600080fd5b813561111181611adb565b60005b83811015611b29578181015183820152602001611b11565b838111156110355750506000910152565b60008151808452611b52816020860160208601611b0e565b601f01601f19169290920160200192915050565b6020815260006111116020830184611b3a565b600060208284031215611b8b57600080fd5b5035919050565b80356001600160a01b0381168114611ba957600080fd5b919050565b60008060408385031215611bc157600080fd5b611bca83611b92565b946020939093013593505050565b600080600060608486031215611bed57600080fd5b611bf684611b92565b9250611c0460208501611b92565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c4557611c45611c14565b604051601f8501601f19908116603f01168101908282118183101715611c6d57611c6d611c14565b81604052809350858152868686011115611c8657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cb257600080fd5b813567ffffffffffffffff811115611cc957600080fd5b8201601f81018413611cda57600080fd5b61176b84823560208401611c2a565b600060208284031215611cfb57600080fd5b61111182611b92565b60008060408385031215611d1757600080fd5b611d2083611b92565b915060208301358015158114611d3557600080fd5b809150509250929050565b60008060008060808587031215611d5657600080fd5b611d5f85611b92565b9350611d6d60208601611b92565b925060408501359150606085013567ffffffffffffffff811115611d9057600080fd5b8501601f81018713611da157600080fd5b611db087823560208401611c2a565b91505092959194509250565b60008060408385031215611dcf57600080fd5b611dd883611b92565b9150611de660208401611b92565b90509250929050565b600181811c90821680611e0357607f821691505b60208210811415611e2457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e8857611e88611e5f565b500190565b600060208284031215611e9f57600080fd5b5051919050565b6000816000190483118215151615611ec057611ec0611e5f565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020611f2b8285838a01611b0e565b855191840191611f3e8184848a01611b0e565b8554920191600090600181811c9080831680611f5b57607f831692505b858310811415611f7957634e487b7160e01b85526022600452602485fd5b808015611f8d5760018114611f9e57611fcb565b60ff19851688528388019550611fcb565b60008b81526020902060005b85811015611fc35781548a820152908401908801611faa565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200f90830184611b3a565b9695505050505050565b60006020828403121561202b57600080fd5b815161111181611adb565b600060001982141561204a5761204a611e5f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261207657612076612051565b500490565b60008282101561208d5761208d611e5f565b500390565b6000826120a1576120a1612051565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f78f54e5dac2ef045e53fb282bc67ab5bb7b1bb8a424bd041b015bf6ebd975a64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000116d6665722073746172746572205061636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d464552535000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52357764327a7a3352664d6a615932484271727a454c6f506f4a6f766b714d724e3543386337706345594c612f00000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461050a578063da3ef23f14610520578063e985e9c514610540578063f2fde38b1461058957600080fd5b8063a22cb46514610495578063b88d4fde146104b5578063c6682862146104d5578063c87b56dd146104ea57600080fd5b80637501f741116100d15780637501f741146104395780638da5cb5b1461044f57806395d89b411461046d578063a0712d681461048257600080fd5b80636352211e146103cf5780636c0360eb146103ef57806370a0823114610404578063715018a61461042457600080fd5b80632f745c591161017a57806344a0d68a1161014957806344a0d68a1461034f5780634f6ccce71461036f578063547520fe1461038f57806355f804b3146103af57600080fd5b80632f745c59146102e7578063313122b4146103075780633ccfd60b1461032757806342842e0e1461032f57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806318160ddd146102b257806323b872dd146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611af1565b6105a9565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610616565b6040516102099190611b66565b34801561024057600080fd5b5061025461024f366004611b79565b6106a8565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611bae565b610738565b005b34801561029a57600080fd5b506102a4600a5481565b604051908152602001610209565b3480156102be57600080fd5b506000546102a4565b3480156102d357600080fd5b5061028c6102e2366004611bd8565b610850565b3480156102f357600080fd5b506102a4610302366004611bae565b61085b565b34801561031357600080fd5b50600d54610254906001600160a01b031681565b61028c6109b8565b34801561033b57600080fd5b5061028c61034a366004611bd8565b610a61565b34801561035b57600080fd5b5061028c61036a366004611b79565b610a7c565b34801561037b57600080fd5b506102a461038a366004611b79565b610aab565b34801561039b57600080fd5b5061028c6103aa366004611b79565b610b0d565b3480156103bb57600080fd5b5061028c6103ca366004611ca0565b610b3c565b3480156103db57600080fd5b506102546103ea366004611b79565b610b79565b3480156103fb57600080fd5b50610227610b8b565b34801561041057600080fd5b506102a461041f366004611ce9565b610c19565b34801561043057600080fd5b5061028c610caa565b34801561044557600080fd5b506102a4600c5481565b34801561045b57600080fd5b506007546001600160a01b0316610254565b34801561047957600080fd5b50610227610ce0565b61028c610490366004611b79565b610cef565b3480156104a157600080fd5b5061028c6104b0366004611d04565b610f3d565b3480156104c157600080fd5b5061028c6104d0366004611d40565b611002565b3480156104e157600080fd5b5061022761103b565b3480156104f657600080fd5b50610227610505366004611b79565b611048565b34801561051657600080fd5b506102a4600b5481565b34801561052c57600080fd5b5061028c61053b366004611ca0565b611118565b34801561054c57600080fd5b506101fd61055b366004611dbc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059557600080fd5b5061028c6105a4366004611ce9565b611155565b60006001600160e01b031982166380ac58cd60e01b14806105da57506001600160e01b03198216635b5e139f60e01b145b806105f557506001600160e01b0319821663780e9d6360e01b145b8061061057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062590611def565b80601f016020809104026020016040519081016040528092919081815260200182805461065190611def565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b5050505050905090565b60006106b5826000541190565b61071c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074382610b79565b9050806001600160a01b0316836001600160a01b031614156107b25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610713565b336001600160a01b03821614806107ce57506107ce813361055b565b6108405760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610713565b61084b8383836111f0565b505050565b61084b83838361124c565b600061086683610c19565b82106108bf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610713565b600080549080805b83811015610958576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561091a57805192505b876001600160a01b0316836001600160a01b0316141561094f57868414156109485750935061061092505050565b6001909301925b506001016108c7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610713565b6007546001600160a01b031633146109e25760405162461bcd60e51b815260040161071390611e2a565b4780610a305760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f6044820152606401610713565b604051339082156108fc029083906000818181858888f19350505050158015610a5d573d6000803e3d6000fd5b5050565b61084b83838360405180602001604052806000815250611002565b6007546001600160a01b03163314610aa65760405162461bcd60e51b815260040161071390611e2a565b600a55565b600080548210610b095760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610713565b5090565b6007546001600160a01b03163314610b375760405162461bcd60e51b815260040161071390611e2a565b600c55565b6007546001600160a01b03163314610b665760405162461bcd60e51b815260040161071390611e2a565b8051610a5d906008906020840190611a4b565b6000610b8482611531565b5192915050565b60088054610b9890611def565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490611def565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b505050505081565b60006001600160a01b038216610c855760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610713565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610cd45760405162461bcd60e51b815260040161071390611e2a565b610cde6000611608565b565b60606002805461062590611def565b60005481610d495760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610713565b600c54821115610db75760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610713565b600b54610dc48383611e75565b1115610e075760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610713565b6007546001600160a01b03163314610f3357600d546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190611e8d565b610ee15760405162461bcd60e51b815260206004820152602760248201527f596f75204d7573742042652041204d46455220546f6b656e20486f6c64657220604482015266151bc8135a5b9d60ca1b6064820152608401610713565b81600a54610eef9190611ea6565b341015610f335760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610713565b610a5d338361165a565b6001600160a01b038216331415610f965760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610713565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61100d84848461124c565b61101984848484611674565b6110355760405162461bcd60e51b815260040161071390611ec5565b50505050565b60098054610b9890611def565b6060611055826000541190565b6110b95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610713565b60006110c3611773565b905060008151116110e35760405180602001604052806000815250611111565b806110ed84611782565b600960405160200161110193929190611f18565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111425760405162461bcd60e51b815260040161071390611e2a565b8051610a5d906009906020840190611a4b565b6007546001600160a01b0316331461117f5760405162461bcd60e51b815260040161071390611e2a565b6001600160a01b0381166111e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610713565b6111ed81611608565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061125782611531565b80519091506000906001600160a01b0316336001600160a01b0316148061128e575033611283846106a8565b6001600160a01b0316145b806112a0575081516112a0903361055b565b90508061130a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610713565b846001600160a01b031682600001516001600160a01b03161461137e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610713565b6001600160a01b0384166113e25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610713565b6113f260008484600001516111f0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166114e75761149a816000541190565b156114e7578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611550826000541190565b6115af5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610713565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115fe579392505050565b50600019016115b1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a5d828260405180602001604052806000815250611880565b60006001600160a01b0384163b1561176757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116b8903390899088908890600401611fdc565b6020604051808303816000875af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190612019565b60015b61174d573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5080516117455760405162461bcd60e51b815260040161071390611ec5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061176b565b5060015b949350505050565b60606008805461062590611def565b6060816117a65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d057806117ba81612036565b91506117c99050600a83612067565b91506117aa565b60008167ffffffffffffffff8111156117eb576117eb611c14565b6040519080825280601f01601f191660200182016040528015611815576020820181803683370190505b5090505b841561176b5761182a60018361207b565b9150611837600a86612092565b611842906030611e75565b60f81b818381518110611857576118576120a6565b60200101906001600160f81b031916908160001a905350611879600a86612067565b9450611819565b61084b83838360016000546001600160a01b0385166118eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610713565b836119495760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610713565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a425760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a3657611a1a6000888488611674565b611a365760405162461bcd60e51b815260040161071390611ec5565b600191820191016119c7565b5060005561152a565b828054611a5790611def565b90600052602060002090601f016020900481019282611a795760008555611abf565b82601f10611a9257805160ff1916838001178555611abf565b82800160010185558215611abf579182015b82811115611abf578251825591602001919060010190611aa4565b50610b099291505b80821115610b095760008155600101611ac7565b6001600160e01b0319811681146111ed57600080fd5b600060208284031215611b0357600080fd5b813561111181611adb565b60005b83811015611b29578181015183820152602001611b11565b838111156110355750506000910152565b60008151808452611b52816020860160208601611b0e565b601f01601f19169290920160200192915050565b6020815260006111116020830184611b3a565b600060208284031215611b8b57600080fd5b5035919050565b80356001600160a01b0381168114611ba957600080fd5b919050565b60008060408385031215611bc157600080fd5b611bca83611b92565b946020939093013593505050565b600080600060608486031215611bed57600080fd5b611bf684611b92565b9250611c0460208501611b92565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c4557611c45611c14565b604051601f8501601f19908116603f01168101908282118183101715611c6d57611c6d611c14565b81604052809350858152868686011115611c8657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cb257600080fd5b813567ffffffffffffffff811115611cc957600080fd5b8201601f81018413611cda57600080fd5b61176b84823560208401611c2a565b600060208284031215611cfb57600080fd5b61111182611b92565b60008060408385031215611d1757600080fd5b611d2083611b92565b915060208301358015158114611d3557600080fd5b809150509250929050565b60008060008060808587031215611d5657600080fd5b611d5f85611b92565b9350611d6d60208601611b92565b925060408501359150606085013567ffffffffffffffff811115611d9057600080fd5b8501601f81018713611da157600080fd5b611db087823560208401611c2a565b91505092959194509250565b60008060408385031215611dcf57600080fd5b611dd883611b92565b9150611de660208401611b92565b90509250929050565b600181811c90821680611e0357607f821691505b60208210811415611e2457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e8857611e88611e5f565b500190565b600060208284031215611e9f57600080fd5b5051919050565b6000816000190483118215151615611ec057611ec0611e5f565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020611f2b8285838a01611b0e565b855191840191611f3e8184848a01611b0e565b8554920191600090600181811c9080831680611f5b57607f831692505b858310811415611f7957634e487b7160e01b85526022600452602485fd5b808015611f8d5760018114611f9e57611fcb565b60ff19851688528388019550611fcb565b60008b81526020902060005b85811015611fc35781548a820152908401908801611faa565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200f90830184611b3a565b9695505050505050565b60006020828403121561202b57600080fd5b815161111181611adb565b600060001982141561204a5761204a611e5f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261207657612076612051565b500490565b60008282101561208d5761208d611e5f565b500390565b6000826120a1576120a1612051565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f78f54e5dac2ef045e53fb282bc67ab5bb7b1bb8a424bd041b015bf6ebd975a64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000116d6665722073746172746572205061636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d464552535000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52357764327a7a3352664d6a615932484271727a454c6f506f4a6f766b714d724e3543386337706345594c612f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): mfer starter Pack
Arg [1] : _symbol (string): MFERSP
Arg [2] : _initBaseURI (string): ipfs://QmR5wd2zz3RfMjaY2HBqrzELoPoJovkqMrN5C8c7pcEYLa/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 6d6665722073746172746572205061636b000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4d46455253500000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d52357764327a7a3352664d6a615932484271727a454c6f
Arg [9] : 506f4a6f766b714d724e3543386337706345594c612f00000000000000000000
Deployed Bytecode Sourcemap
105:2612:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744:410:3;;;;;;;;;;-1:-1:-1;3744:410:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;3744:410:3;;;;;;;;5720:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7356:280::-;;;;;;;;;;-1:-1:-1;7356:280:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:12;;;1674:51;;1662:2;1647:18;7356:280:3;1528:203:12;6892:403:3;;;;;;;;;;-1:-1:-1;6892:403:3;;;;;:::i;:::-;;:::i;:::-;;255:32:9;;;;;;;;;;;;;;;;;;;2319:25:12;;;2307:2;2292:18;255:32:9;2173:177:12;1974:98:3;;;;;;;;;;-1:-1:-1;2027:7:3;2053:12;1974:98;;8340:156;;;;;;;;;;-1:-1:-1;8340:156:3;;;;;:::i;:::-;;:::i;2657:1020::-;;;;;;;;;;-1:-1:-1;2657:1020:3;;;;;:::i;:::-;;:::i;364:73:9:-;;;;;;;;;;-1:-1:-1;364:73:9;;;;-1:-1:-1;;;;;364:73:9;;;2492:223;;;:::i;8562:171:3:-;;;;;;;;;;-1:-1:-1;8562:171:3;;;;;:::i;:::-;;:::i;2046:84:9:-;;;;;;;;;;-1:-1:-1;2046:84:9;;;;;:::i;:::-;;:::i;2144:220:3:-;;;;;;;;;;-1:-1:-1;2144:220:3;;;;;:::i;:::-;;:::i;2136:90:9:-;;;;;;;;;;-1:-1:-1;2136:90:9;;;;;:::i;:::-;;:::i;2232:102::-;;;;;;;;;;-1:-1:-1;2232:102:9;;;;;:::i;:::-;;:::i;5536:122:3:-;;;;;;;;;;-1:-1:-1;5536:122:3;;;;;:::i;:::-;;:::i;185:21:9:-;;;;;;;;;;;;;:::i;4213:252:3:-;;;;;;;;;;-1:-1:-1;4213:252:3;;;;;:::i;:::-;;:::i;1628:101:10:-;;;;;;;;;;;;;:::i;331:27:9:-;;;;;;;;;;;;;;;;996:85:10;;;;;;;;;;-1:-1:-1;1068:6:10;;-1:-1:-1;;;;;1068:6:10;996:85;;5882:102:3;;;;;;;;;;;;;:::i;698:589:9:-;;;;;;:::i;:::-;;:::i;7703:303:3:-;;;;;;;;;;-1:-1:-1;7703:303:3;;;;;:::i;:::-;;:::i;8799:344::-;;;;;;;;;;-1:-1:-1;8799:344:3;;;;;:::i;:::-;;:::i;212:37:9:-;;;;;;;;;;;;;:::i;1421:619::-;;;;;;;;;;-1:-1:-1;1421:619:9;;;;;:::i;:::-;;:::i;293:32::-;;;;;;;;;;;;;;;;2340:146;;;;;;;;;;-1:-1:-1;2340:146:9;;;;;:::i;:::-;;:::i;8072:206:3:-;;;;;;;;;;-1:-1:-1;8072:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;8236:25:3;;;8209:4;8236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8072:206;1878:232:10;;;;;;;;;;-1:-1:-1;1878:232:10;;;;;:::i;:::-;;:::i;3744:410:3:-;3886:4;-1:-1:-1;;;;;;3925:40:3;;-1:-1:-1;;;3925:40:3;;:104;;-1:-1:-1;;;;;;;3981:48:3;;-1:-1:-1;;;3981:48:3;3925:104;:170;;;-1:-1:-1;;;;;;;4045:50:3;;-1:-1:-1;;;4045:50:3;3925:170;:222;;;-1:-1:-1;;;;;;;;;;981:40:2;;;4111:36:3;3906:241;3744:410;-1:-1:-1;;3744:410:3:o;5720:98::-;5774:13;5806:5;5799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720:98;:::o;7356:280::-;7456:7;7500:16;7508:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;7500:16;7479:108;;;;-1:-1:-1;;;7479:108:3;;6204:2:12;7479:108:3;;;6186:21:12;6243:2;6223:18;;;6216:30;6282:34;6262:18;;;6255:62;-1:-1:-1;;;6333:18:12;;;6326:43;6386:19;;7479:108:3;;;;;;;;;-1:-1:-1;7605:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7605:24:3;;7356:280::o;6892:403::-;6964:13;6980:24;6996:7;6980:15;:24::i;:::-;6964:40;;7028:5;-1:-1:-1;;;;;7022:11:3;:2;-1:-1:-1;;;;;7022:11:3;;;7014:58;;;;-1:-1:-1;;;7014:58:3;;6618:2:12;7014:58:3;;;6600:21:12;6657:2;6637:18;;;6630:30;6696:34;6676:18;;;6669:62;-1:-1:-1;;;6747:18:12;;;6740:32;6789:19;;7014:58:3;6416:398:12;7014:58:3;665:10:1;-1:-1:-1;;;;;7104:21:3;;;;:62;;-1:-1:-1;7129:37:3;7146:5;665:10:1;8072:206:3;:::i;7129:37::-;7083:166;;;;-1:-1:-1;;;7083:166:3;;7021:2:12;7083:166:3;;;7003:21:12;7060:2;7040:18;;;7033:30;7099:34;7079:18;;;7072:62;7170:27;7150:18;;;7143:55;7215:19;;7083:166:3;6819:421:12;7083:166:3;7260:28;7269:2;7273:7;7282:5;7260:8;:28::i;:::-;6954:341;6892:403;;:::o;8340:156::-;8461:28;8471:4;8477:2;8481:7;8461:9;:28::i;2657:1020::-;2778:7;2817:16;2827:5;2817:9;:16::i;:::-;2809:5;:24;2801:71;;;;-1:-1:-1;;;2801:71:3;;7447:2:12;2801:71:3;;;7429:21:12;7486:2;7466:18;;;7459:30;7525:34;7505:18;;;7498:62;-1:-1:-1;;;7576:18:12;;;7569:32;7618:19;;2801:71:3;7245:398:12;2801:71:3;2882:22;2053:12;;;2882:22;;3139:455;3159:14;3155:1;:18;3139:455;;;3198:31;3232:14;;;:11;:14;;;;;;;;;3198:48;;;;;;;;;-1:-1:-1;;;;;3198:48:3;;;;;-1:-1:-1;;;3198:48:3;;;;;;;;;;;;3268:28;3264:109;;3340:14;;;-1:-1:-1;3264:109:3;3415:5;-1:-1:-1;;;;;3394:26:3;:17;-1:-1:-1;;;;;3394:26:3;;3390:190;;;3463:5;3448:11;:20;3444:83;;;-1:-1:-1;3503:1:3;-1:-1:-1;3496:8:3;;-1:-1:-1;;;3496:8:3;3444:83;3548:13;;;;;3390:190;-1:-1:-1;3175:3:3;;3139:455;;;-1:-1:-1;3614:56:3;;-1:-1:-1;;;3614:56:3;;7850:2:12;3614:56:3;;;7832:21:12;7889:2;7869:18;;;7862:30;7928:34;7908:18;;;7901:62;-1:-1:-1;;;7979:18:12;;;7972:44;8033:19;;3614:56:3;7648:410:12;2492:223:9;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;2565:21:9::1;2604:11:::0;2596:56:::1;;;::::0;-1:-1:-1;;;2596:56:9;;8626:2:12;2596:56:9::1;::::0;::::1;8608:21:12::0;;;8645:18;;;8638:30;8704:34;8684:18;;;8677:62;8756:18;;2596:56:9::1;8424:356:12::0;2596:56:9::1;2662:46;::::0;2678:10:::1;::::0;2662:46;::::1;;;::::0;2700:7;;2662:46:::1;::::0;;;2700:7;2678:10;2662:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2537:178;2492:223::o:0;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;2046:84:9:-;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;2108:4:9::1;:15:::0;2046:84::o;2144:220:3:-;2243:7;2053:12;;2274:5;:21;2266:69;;;;-1:-1:-1;;;2266:69:3;;8987:2:12;2266:69:3;;;8969:21:12;9026:2;9006:18;;;8999:30;9065:34;9045:18;;;9038:62;-1:-1:-1;;;9116:18:12;;;9109:33;9159:19;;2266:69:3;8785:399:12;2266:69:3;-1:-1:-1;2352:5:3;2144:220::o;2136:90:9:-;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;2201:7:9::1;:18:::0;2136:90::o;2232:102::-;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;2306:21:9;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;5536:122:3:-:0;5600:7;5626:20;5638:7;5626:11;:20::i;:::-;:25;;5536:122;-1:-1:-1;;5536:122:3:o;185:21:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4213:252:3:-;4277:7;-1:-1:-1;;;;;4317:19:3;;4296:109;;;;-1:-1:-1;;;4296:109:3;;9391:2:12;4296:109:3;;;9373:21:12;9430:2;9410:18;;;9403:30;9469:34;9449:18;;;9442:62;-1:-1:-1;;;9520:18:12;;;9513:41;9571:19;;4296:109:3;9189:407:12;4296:109:3;-1:-1:-1;;;;;;4430:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4430:27:3;;4213:252::o;1628:101:10:-;1068:6;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;5882:102:3:-;5938:13;5970:7;5963:14;;;;;:::i;698:589:9:-;757:14;2053:12:3;805::9;797:58;;;;-1:-1:-1;;;797:58:9;;9803:2:12;797:58:9;;;9785:21:12;9842:2;9822:18;;;9815:30;9881:34;9861:18;;;9854:62;-1:-1:-1;;;9932:18:12;;;9925:31;9973:19;;797:58:9;9601:397:12;797:58:9;885:7;;873:8;:19;;865:84;;;;-1:-1:-1;;;865:84:9;;10205:2:12;865:84:9;;;10187:21:12;10244:2;10224:18;;;10217:30;10283:34;10263:18;;;10256:62;-1:-1:-1;;;10334:18:12;;;10327:49;10393:19;;865:84:9;10003:415:12;865:84:9;988:9;;967:17;976:8;967:6;:17;:::i;:::-;:30;;959:61;;;;-1:-1:-1;;;959:61:9;;10890:2:12;959:61:9;;;10872:21:12;10929:2;10909:18;;;10902:30;-1:-1:-1;;;10948:18:12;;;10941:48;11006:18;;959:61:9;10688:342:12;959:61:9;1068:6:10;;-1:-1:-1;;;;;1068:6:10;1035:10:9;:21;1031:209;;1080:4;;:26;;-1:-1:-1;;;1080:26:9;;1095:10;1080:26;;;1674:51:12;-1:-1:-1;;;;;1080:4:9;;;;:14;;1647:18:12;;1080:26:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1072:84;;;;-1:-1:-1;;;1072:84:9;;11426:2:12;1072:84:9;;;11408:21:12;11465:2;11445:18;;;11438:30;11504:34;11484:18;;;11477:62;-1:-1:-1;;;11555:18:12;;;11548:37;11602:19;;1072:84:9;11224:403:12;1072:84:9;1198:8;1191:4;;:15;;;;:::i;:::-;1178:9;:28;;1170:59;;;;-1:-1:-1;;;1170:59:9;;12007:2:12;1170:59:9;;;11989:21:12;12046:2;12026:18;;;12019:30;-1:-1:-1;;;12065:18:12;;;12058:48;12123:18;;1170:59:9;11805:342:12;1170:59:9;1249:31;1259:10;1271:8;1249:9;:31::i;7703:303:3:-;-1:-1:-1;;;;;7817:24:3;;665:10:1;7817:24:3;;7809:63;;;;-1:-1:-1;;;7809:63:3;;12354:2:12;7809:63:3;;;12336:21:12;12393:2;12373:18;;;12366:30;12432:28;12412:18;;;12405:56;12478:18;;7809:63:3;12152:350:12;7809:63:3;665:10:1;7883:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7883:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7883:53:3;;;;;;;;;;7951:48;;540:41:12;;;7883:42:3;;665:10:1;7951:48:3;;513:18:12;7951:48:3;;;;;;;7703:303;;:::o;8799:344::-;8952:28;8962:4;8968:2;8972:7;8952:9;:28::i;:::-;9011:48;9034:4;9040:2;9044:7;9053:5;9011:22;:48::i;:::-;8990:146;;;;-1:-1:-1;;;8990:146:3;;;;;;;:::i;:::-;8799:344;;;;:::o;212:37:9:-;;;;;;;:::i;1421:619::-;1534:13;1584:16;1592:7;9446:4:3;9479:12;-1:-1:-1;9469:22:3;9389:109;1584:16:9;1563:110;;;;-1:-1:-1;;;1563:110:9;;13129:2:12;1563:110:9;;;13111:21:12;13168:2;13148:18;;;13141:30;13207:34;13187:18;;;13180:62;-1:-1:-1;;;13258:18:12;;;13251:45;13313:19;;1563:110:9;12927:411:12;1563:110:9;1684:28;1715:10;:8;:10::i;:::-;1684:41;;1785:1;1760:14;1754:28;:32;:279;;;;;;;;;;;;;;;;;1875:14;1915:18;:7;:16;:18::i;:::-;1959:13;1833:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1754:279;1735:298;1421:619;-1:-1:-1;;;1421:619:9:o;2340:146::-;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;2446:33:9;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;1878:232:10:-:0;1068:6;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:10;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:10;;15203:2:12;1958:107:10::1;::::0;::::1;15185:21:12::0;15242:2;15222:18;;;15215:30;15281:34;15261:18;;;15254:62;-1:-1:-1;;;15332:18:12;;;15325:36;15378:19;;1958:107:10::1;15001:402:12::0;1958:107:10::1;2075:28;2094:8;2075:18;:28::i;:::-;1878:232:::0;:::o;14401:189:3:-;14511:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;14511:29:3;-1:-1:-1;;;;;14511:29:3;;;;;;;;;14555:28;;14511:24;;14555:28;;;;;;;14401:189;;;:::o;12239:2051::-;12349:35;12387:20;12399:7;12387:11;:20::i;:::-;12460:18;;12349:58;;-1:-1:-1;12418:22:3;;-1:-1:-1;;;;;12444:34:3;665:10:1;-1:-1:-1;;;;;12444:34:3;;:86;;;-1:-1:-1;665:10:1;12494:20:3;12506:7;12494:11;:20::i;:::-;-1:-1:-1;;;;;12494:36:3;;12444:86;:152;;;-1:-1:-1;12563:18:3;;12546:50;;665:10:1;8072:206:3;:::i;12546:50::-;12418:179;;12629:17;12608:114;;;;-1:-1:-1;;;12608:114:3;;15610:2:12;12608:114:3;;;15592:21:12;15649:2;15629:18;;;15622:30;15688:34;15668:18;;;15661:62;-1:-1:-1;;;15739:18:12;;;15732:48;15797:19;;12608:114:3;15408:414:12;12608:114:3;12776:4;-1:-1:-1;;;;;12754:26:3;:13;:18;;;-1:-1:-1;;;;;12754:26:3;;12733:111;;;;-1:-1:-1;;;12733:111:3;;16029:2:12;12733:111:3;;;16011:21:12;16068:2;16048:18;;;16041:30;16107:34;16087:18;;;16080:62;-1:-1:-1;;;16158:18:12;;;16151:36;16204:19;;12733:111:3;15827:402:12;12733:111:3;-1:-1:-1;;;;;12862:16:3;;12854:66;;;;-1:-1:-1;;;12854:66:3;;16436:2:12;12854:66:3;;;16418:21:12;16475:2;16455:18;;;16448:30;16514:34;16494:18;;;16487:62;-1:-1:-1;;;16565:18:12;;;16558:35;16610:19;;12854:66:3;16234:401:12;12854:66:3;13036:49;13053:1;13057:7;13066:13;:18;;;13036:8;:49::i;:::-;-1:-1:-1;;;;;13375:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;13375:31:3;;;-1:-1:-1;;;;;13375:31:3;;;-1:-1:-1;;13375:31:3;;;;;;;13420:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13420:29:3;;;;;;;;;;;;;13464:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;13508:61:3;;;;-1:-1:-1;;;13553:15:3;13508:61;;;;;;13839:11;;;13868:24;;;;;:29;13839:11;;13868:29;13864:315;;13935:20;13943:11;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;13935:20;13931:234;;;14011:18;;;13979:24;;;:11;:24;;;;;;;;:50;;14093:53;;;;14051:95;;-1:-1:-1;;;14051:95:3;-1:-1:-1;;;;;;14051:95:3;;;-1:-1:-1;;;;;13979:50:3;;;14051:95;;;;;;;13931:234;13351:838;14223:7;14219:2;-1:-1:-1;;;;;14204:27:3;14213:4;-1:-1:-1;;;;;14204:27:3;;;;;;;;;;;14241:42;12339:1951;;12239:2051;;;:::o;4927:552::-;-1:-1:-1;;;;;;;;;;;;;;;;;5057:16:3;5065:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;5057:16;5049:71;;;;-1:-1:-1;;;5049:71:3;;16842:2:12;5049:71:3;;;16824:21:12;16881:2;16861:18;;;16854:30;16920:34;16900:18;;;16893:62;-1:-1:-1;;;16971:18:12;;;16964:40;17021:19;;5049:71:3;16640:406:12;5049:71:3;5175:7;5155:240;5221:31;5255:17;;;:11;:17;;;;;;;;;5221:51;;;;;;;;;-1:-1:-1;;;;;5221:51:3;;;;;-1:-1:-1;;;5221:51:3;;;;;;;;;;;;5294:28;5290:91;;5353:9;4927:552;-1:-1:-1;;;4927:552:3:o;5290:91::-;-1:-1:-1;;;5195:6:3;5155:240;;2264:187:10;2356:6;;;-1:-1:-1;;;;;2372:17:10;;;-1:-1:-1;;;;;;2372:17:10;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;9504:102:3:-;9572:27;9582:2;9586:8;9572:27;;;;;;;;;;;;:9;:27::i;15143:955::-;15293:4;-1:-1:-1;;;;;15313:13:3;;1450:19:0;:23;15309:783:3;;15364:170;;-1:-1:-1;;;15364:170:3;;-1:-1:-1;;;;;15364:36:3;;;;;:170;;665:10:1;;15456:4:3;;15482:7;;15511:5;;15364:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15364:170:3;;;;;;;;-1:-1:-1;;15364:170:3;;;;;;;;;;;;:::i;:::-;;;15344:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15717:13:3;;15713:313;;15759:107;;-1:-1:-1;;;15759:107:3;;;;;;;:::i;15713:313::-;15978:6;15972:13;15963:6;15959:2;15955:15;15948:38;15344:696;-1:-1:-1;;;;;;15596:55:3;-1:-1:-1;;;15596:55:3;;-1:-1:-1;15589:62:3;;15309:783;-1:-1:-1;16077:4:3;15309:783;15143:955;;;;;;:::o;1309:106:9:-;1369:13;1401:7;1394:14;;;;;:::i;328:703:11:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:11;;;;;;;;;;;;-1:-1:-1;;;627:10:11;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:11;;-1:-1:-1;773:2:11;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:11;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:11;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:11;;;;;;;;-1:-1:-1;972:11:11;981:2;972:11;;:::i;:::-;;;844:150;;9957:157:3;10075:32;10081:2;10085:8;10095:5;10102:4;10494:20;10517:12;-1:-1:-1;;;;;10547:16:3;;10539:62;;;;-1:-1:-1;;;10539:62:3;;19193:2:12;10539:62:3;;;19175:21:12;19232:2;19212:18;;;19205:30;19271:34;19251:18;;;19244:62;-1:-1:-1;;;19322:18:12;;;19315:31;19363:19;;10539:62:3;18991:397:12;10539:62:3;10619:13;10611:66;;;;-1:-1:-1;;;10611:66:3;;19595:2:12;10611:66:3;;;19577:21:12;19634:2;19614:18;;;19607:30;19673:34;19653:18;;;19646:62;-1:-1:-1;;;19724:18:12;;;19717:38;19772:19;;10611:66:3;19393:404:12;10611:66:3;-1:-1:-1;;;;;11021:16:3;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;11021:45:3;;-1:-1:-1;;;;;11021:45:3;;;;;;;;;;11080:50;;;;;;;;;;;;;;11145:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;11194:66:3;;;;-1:-1:-1;;;11244:15:3;11194:66;;;;;;;11145:25;;11325:543;11345:8;11341:1;:12;11325:543;;;11383:38;;11408:12;;-1:-1:-1;;;;;11383:38:3;;;11400:1;;11383:38;;11400:1;;11383:38;11443:4;11439:382;;;11504:197;11564:1;11596:2;11628:12;11670:5;11504:22;:197::i;:::-;11471:331;;;;-1:-1:-1;;;11471:331:3;;;;;;;:::i;:::-;11839:14;;;;;11355:3;11325:543;;;-1:-1:-1;11882:12:3;:27;11930:60;8799:344;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:12;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:12;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:12:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:12;;1343:180;-1:-1:-1;1343:180:12:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:12;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:12:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2912:127::-;2973:10;2968:3;2964:20;2961:1;2954:31;3004:4;3001:1;2994:15;3028:4;3025:1;3018:15;3044:632;3109:5;3139:18;3180:2;3172:6;3169:14;3166:40;;;3186:18;;:::i;:::-;3261:2;3255:9;3229:2;3315:15;;-1:-1:-1;;3311:24:12;;;3337:2;3307:33;3303:42;3291:55;;;3361:18;;;3381:22;;;3358:46;3355:72;;;3407:18;;:::i;:::-;3447:10;3443:2;3436:22;3476:6;3467:15;;3506:6;3498;3491:22;3546:3;3537:6;3532:3;3528:16;3525:25;3522:45;;;3563:1;3560;3553:12;3522:45;3613:6;3608:3;3601:4;3593:6;3589:17;3576:44;3668:1;3661:4;3652:6;3644;3640:19;3636:30;3629:41;;;;3044:632;;;;;:::o;3681:451::-;3750:6;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;3859:9;3846:23;3892:18;3884:6;3881:30;3878:50;;;3924:1;3921;3914:12;3878:50;3947:22;;4000:4;3992:13;;3988:27;-1:-1:-1;3978:55:12;;4029:1;4026;4019:12;3978:55;4052:74;4118:7;4113:2;4100:16;4095:2;4091;4087:11;4052:74;:::i;4137:186::-;4196:6;4249:2;4237:9;4228:7;4224:23;4220:32;4217:52;;;4265:1;4262;4255:12;4217:52;4288:29;4307:9;4288:29;:::i;4328:347::-;4393:6;4401;4454:2;4442:9;4433:7;4429:23;4425:32;4422:52;;;4470:1;4467;4460:12;4422:52;4493:29;4512:9;4493:29;:::i;:::-;4483:39;;4572:2;4561:9;4557:18;4544:32;4619:5;4612:13;4605:21;4598:5;4595:32;4585:60;;4641:1;4638;4631:12;4585:60;4664:5;4654:15;;;4328:347;;;;;:::o;4680:667::-;4775:6;4783;4791;4799;4852:3;4840:9;4831:7;4827:23;4823:33;4820:53;;;4869:1;4866;4859:12;4820:53;4892:29;4911:9;4892:29;:::i;:::-;4882:39;;4940:38;4974:2;4963:9;4959:18;4940:38;:::i;:::-;4930:48;;5025:2;5014:9;5010:18;4997:32;4987:42;;5080:2;5069:9;5065:18;5052:32;5107:18;5099:6;5096:30;5093:50;;;5139:1;5136;5129:12;5093:50;5162:22;;5215:4;5207:13;;5203:27;-1:-1:-1;5193:55:12;;5244:1;5241;5234:12;5193:55;5267:74;5333:7;5328:2;5315:16;5310:2;5306;5302:11;5267:74;:::i;:::-;5257:84;;;4680:667;;;;;;;:::o;5352:260::-;5420:6;5428;5481:2;5469:9;5460:7;5456:23;5452:32;5449:52;;;5497:1;5494;5487:12;5449:52;5520:29;5539:9;5520:29;:::i;:::-;5510:39;;5568:38;5602:2;5591:9;5587:18;5568:38;:::i;:::-;5558:48;;5352:260;;;;;:::o;5617:380::-;5696:1;5692:12;;;;5739;;;5760:61;;5814:4;5806:6;5802:17;5792:27;;5760:61;5867:2;5859:6;5856:14;5836:18;5833:38;5830:161;;;5913:10;5908:3;5904:20;5901:1;5894:31;5948:4;5945:1;5938:15;5976:4;5973:1;5966:15;5830:161;;5617:380;;;:::o;8063:356::-;8265:2;8247:21;;;8284:18;;;8277:30;8343:34;8338:2;8323:18;;8316:62;8410:2;8395:18;;8063:356::o;10423:127::-;10484:10;10479:3;10475:20;10472:1;10465:31;10515:4;10512:1;10505:15;10539:4;10536:1;10529:15;10555:128;10595:3;10626:1;10622:6;10619:1;10616:13;10613:39;;;10632:18;;:::i;:::-;-1:-1:-1;10668:9:12;;10555:128::o;11035:184::-;11105:6;11158:2;11146:9;11137:7;11133:23;11129:32;11126:52;;;11174:1;11171;11164:12;11126:52;-1:-1:-1;11197:16:12;;11035:184;-1:-1:-1;11035:184:12:o;11632:168::-;11672:7;11738:1;11734;11730:6;11726:14;11723:1;11720:21;11715:1;11708:9;11701:17;11697:45;11694:71;;;11745:18;;:::i;:::-;-1:-1:-1;11785:9:12;;11632:168::o;12507:415::-;12709:2;12691:21;;;12748:2;12728:18;;;12721:30;12787:34;12782:2;12767:18;;12760:62;-1:-1:-1;;;12853:2:12;12838:18;;12831:49;12912:3;12897:19;;12507:415::o;13469:1527::-;13693:3;13731:6;13725:13;13757:4;13770:51;13814:6;13809:3;13804:2;13796:6;13792:15;13770:51;:::i;:::-;13884:13;;13843:16;;;;13906:55;13884:13;13843:16;13928:15;;;13906:55;:::i;:::-;14050:13;;13983:20;;;14023:1;;14110;14132:18;;;;14185;;;;14212:93;;14290:4;14280:8;14276:19;14264:31;;14212:93;14353:2;14343:8;14340:16;14320:18;14317:40;14314:167;;;-1:-1:-1;;;14380:33:12;;14436:4;14433:1;14426:15;14466:4;14387:3;14454:17;14314:167;14497:18;14524:110;;;;14648:1;14643:328;;;;14490:481;;14524:110;-1:-1:-1;;14559:24:12;;14545:39;;14604:20;;;;-1:-1:-1;14524:110:12;;14643:328;13416:1;13409:14;;;13453:4;13440:18;;14738:1;14752:169;14766:8;14763:1;14760:15;14752:169;;;14848:14;;14833:13;;;14826:37;14891:16;;;;14783:10;;14752:169;;;14756:3;;14952:8;14945:5;14941:20;14934:27;;14490:481;-1:-1:-1;14987:3:12;;13469:1527;-1:-1:-1;;;;;;;;;;;13469:1527:12:o;17467:489::-;-1:-1:-1;;;;;17736:15:12;;;17718:34;;17788:15;;17783:2;17768:18;;17761:43;17835:2;17820:18;;17813:34;;;17883:3;17878:2;17863:18;;17856:31;;;17661:4;;17904:46;;17930:19;;17922:6;17904:46;:::i;:::-;17896:54;17467:489;-1:-1:-1;;;;;;17467:489:12:o;17961:249::-;18030:6;18083:2;18071:9;18062:7;18058:23;18054:32;18051:52;;;18099:1;18096;18089:12;18051:52;18131:9;18125:16;18150:30;18174:5;18150:30;:::i;18215:135::-;18254:3;-1:-1:-1;;18275:17:12;;18272:43;;;18295:18;;:::i;:::-;-1:-1:-1;18342:1:12;18331:13;;18215:135::o;18355:127::-;18416:10;18411:3;18407:20;18404:1;18397:31;18447:4;18444:1;18437:15;18471:4;18468:1;18461:15;18487:120;18527:1;18553;18543:35;;18558:18;;:::i;:::-;-1:-1:-1;18592:9:12;;18487:120::o;18612:125::-;18652:4;18680:1;18677;18674:8;18671:34;;;18685:18;;:::i;:::-;-1:-1:-1;18722:9:12;;18612:125::o;18742:112::-;18774:1;18800;18790:35;;18805:18;;:::i;:::-;-1:-1:-1;18839:9:12;;18742:112::o;18859:127::-;18920:10;18915:3;18911:20;18908:1;18901:31;18951:4;18948:1;18941:15;18975:4;18972:1;18965:15
Swarm Source
ipfs://4f78f54e5dac2ef045e53fb282bc67ab5bb7b1bb8a424bd041b015bf6ebd975a
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.