Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint Article | 2463088 | 2 days ago | IN | 0 ETH | 0.00005649 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
2462798 | 2 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ArticleMinter
Compiler Version
v0.8.19+commit.7dd6d404
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract ArticleMinter is ERC721 { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; struct Article { string text; // The content of the article string author; // The name of the author string date; // The date of the article string title; // The title of the article } mapping(uint256 => Article) public articles; event ArticleMinted(uint256 indexed tokenId, address indexed minter); constructor() ERC721("ArticleNFT", "ANFT") {} function mintArticle( string memory text, string memory author, string memory date, string memory title ) public { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(msg.sender, tokenId); articles[tokenId] = Article(text, author, date, title); emit ArticleMinted(tokenId, msg.sender); } function getArticle(uint256 tokenId) public view returns ( string memory text, string memory author, string memory date, string memory title ) { require(ownerOf(tokenId) != address(0), "Article does not exist"); Article memory article = articles[tokenId]; return (article.text, article.author, article.date, article.title); } function getTotalArticles() public view returns (uint256) { return _tokenIdCounter.current(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// 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 (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
{ "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"ArticleMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"articles","outputs":[{"internalType":"string","name":"text","type":"string"},{"internalType":"string","name":"author","type":"string"},{"internalType":"string","name":"date","type":"string"},{"internalType":"string","name":"title","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getArticle","outputs":[{"internalType":"string","name":"text","type":"string"},{"internalType":"string","name":"author","type":"string"},{"internalType":"string","name":"date","type":"string"},{"internalType":"string","name":"title","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalArticles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"text","type":"string"},{"internalType":"string","name":"author","type":"string"},{"internalType":"string","name":"date","type":"string"},{"internalType":"string","name":"title","type":"string"}],"name":"mintArticle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003495cfccaa49019c77f467814d65197023d947fa5d2003a624faee8314d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000b000000000002000100000001035500000001002001900000003e0000c13d0000006002100270000002ef03200197000000800b0000390000004000b0043f000000040030008c000007800000413d000000000201043b000000e002200270000002f60020009c0000007f0000a13d000002f70020009c000000a50000a13d000002f80020009c0000018b0000a13d000002f90020009c000002450000613d000002fa0020009c000001dd0000613d000002fb0020009c000007800000c13d000000240030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000401100370000000000101043b000000000010043f0000000701000039000000200010043f000000400200003900000000010000190bb60b970000040f000900000001001d0bb6088b0000040f000800000001001d000000090100002900000001011000390bb6088b0000040f000700000001001d000000090100002900000002011000390bb6088b0000040f00000009020000290000000302200039000900000001001d00000000010200190bb6088b0000040f0000000005010019000000400100043d000600000001001d0000000802000029000000070300002900000009040000290bb6083a0000040f00000006020000290000042c0000013d0000000001000416000000000001004b000007800000c13d0000000a01000039000000800010043f000002f001000041000000a00010043f0000010001000039000000400010043f0000000401000039000000c00010043f000002f101000041000000e00010043f000000000100041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b0000005a0000613d0000032401000041000000000010043f0000002201000039000000040010043f000003250100004100000bb800010430000000200030008c000000720000413d000900000003001d000000000000043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b00000009020000290000001f0220003900000005022002700000000002210019000000000021004b000000720000813d000000000001041b0000000101100039000000000021004b0000006e0000413d000000a00100043d000002f30110019700000014011001bf000000000010041b000000c00500043d000002f40050009c000000d90000413d0000032401000041000000000010043f0000004101000039000000040010043f000003250100004100000bb800010430000003030020009c000000c10000213d000003090020009c000001470000213d0000030c0020009c000001fe0000613d0000030d0020009c000007800000c13d0000000001000416000000000001004b000007800000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000540000c13d000000800010043f000000000003004b000003dd0000613d000000000000043f000000000001004b000003af0000613d000003350200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000009c0000413d000004210000013d000002fe0020009c000001180000213d000003010020009c000001a70000613d000003020020009c000007800000c13d0000000001000416000000000001004b000007800000c13d0000000103000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000540000c13d000000800010043f000000000005004b000003ac0000c13d0000033901200197000000a00010043f000000000004004b000003e00000013d000003040020009c0000017e0000213d000003070020009c000002110000613d000003080020009c000007800000c13d0000000001000416000000000001004b000007800000c13d00000000010300190bb607c80000040f000900000001001d000800000002001d0000000002030019000700000003001d00000000010004110bb6097e0000040f0bb609460000040f0000000901000029000000080200002900000007030000290bb609ee0000040f000000000100001900000bb70001042e0000000104000039000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000540000c13d000000200030008c000001050000413d000800000003001d000900000005001d0000000101000039000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d00000009050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000104000039000001050000813d000000000002041b0000000102200039000000000012004b000001010000413d0000001f0050008c000003770000a13d000900000005001d000000000040043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d00000009060000290000033a02600198000000000101043b000003810000c13d000000e0030000390000038f0000013d000002ff0020009c000001be0000613d000003000020009c000007800000c13d000000840030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000402100370000000000202043b000900000002001d0000030e0020009c000007800000213d0000002402100370000000000202043b000800000002001d0000030e0020009c000007800000213d0000006402100370000000000402043b000003100040009c000007800000213d0000002302400039000000000032004b000007800000813d0000000402400039000000000221034f000000000202043b0000004401100370000000000101043b000700000001001d00000024014000390bb608020000040f000600000001001d000000000100041100000007020000290bb6097e0000040f0bb609460000040f0000000901000029000000080200002900000007030000290bb609ee0000040f000000090100002900000008020000290000000703000029000002400000013d0000030a0020009c000002190000613d0000030b0020009c000007800000c13d000000440030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000402100370000000000202043b000900000002001d0000030e0020009c000007800000213d0000002401100370000000000101043b000800000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000101041a0000030e01100198000003660000613d000000090010006b000004350000c13d000000400100043d00000064021000390000033203000041000000000032043500000044021000390000033303000041000000000032043500000024021000390000002103000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000330011001c700000bb800010430000003050020009c000002280000613d000003060020009c000007800000c13d000000240030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000401100370000000000101043b0bb608ec0000040f000002210000013d000002fc0020009c0000034e0000613d000002fd0020009c000007800000c13d000000240030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000401100370000000000101043b0bb60aa10000040f0bb608d80000040f000000400100043d000900000001001d0bb607e50000040f00000009010000290000000000010435000000400100043d000800000001001d0bb607e50000040f000000080100002900000000000104350000002002000039000000400300043d000900000003001d00000000022304360000042a0000013d000000240030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000401100370000000000101043b0000030e0010009c000007800000213d000000000001004b000003a20000c13d0000031501000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f0000032a01000041000000c40010043f0000032b01000041000000e40010043f0000032c0100004100000bb800010430000000440030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000402100370000000000202043b000900000002001d0000030e0020009c000007800000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b000007800000c13d0000000002000411000000090020006c000003e30000c13d0000031501000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000032701000041000000c40010043f000003280100004100000bb800010430000000440030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000402100370000000000202043b0000030e0020009c000007800000213d0000002401100370000000000101043b000900000001001d0000030e0010009c000007800000213d000000000020043f0000000501000039000000200010043f000000400200003900000000010000190bb60b970000040f0000000902000029000000000020043f000000200010043f000000000100001900000040020000390bb60b970000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000030f0100004100000bb70001042e000000240030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000401100370000000000201043b0000032000200198000007800000c13d0000000101000039000003360020009c000002160000613d000003370020009c000002160000613d000003380020009c000000000100c019000000800010043f0000030f0100004100000bb70001042e0000000001000416000000000001004b000007800000c13d0000000601000039000000000101041a000000800010043f0000030f0100004100000bb70001042e000000240030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000401100370000000000101043b0bb609100000040f000000400200043d0000000000120435000002ef0020009c000002ef0200804100000040012002100000032d011001c700000bb70001042e0000000001000416000000000001004b000007800000c13d00000000010300190bb607c80000040f000800000001001d000700000002001d000900000003001d000000400100043d000600000001001d0bb607e50000040f00000006010000290000000000010435000000000100041100000009020000290bb6097e0000040f0bb609460000040f0000000801000029000000070200002900000009030000290bb609ee0000040f00000008010000290000000702000029000000090300002900000006040000290bb60ab50000040f0bb6096a0000040f000000000100001900000bb70001042e000000840030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000402100370000000000402043b000003100040009c000007800000213d0000002302400039000000000032004b000007800000813d0000000405400039000000000251034f000000000202043b000003100020009c000000790000213d0000001f062000390000033a066001970000003f066000390000033a06600197000003110060009c000000790000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000007800000213d0000002004500039000000000541034f0000033a062001980000001f0720018f000000a0046000390000026f0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b0000026b0000c13d000000000007004b0000027c0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000002402100370000000000402043b000003100040009c000007800000213d0000002302400039000000000032004b000007800000813d0000000405400039000000000251034f000000000202043b000003100020009c000000790000213d0000001f062000390000033a066001970000003f066000390000033a06600197000000400800043d0000000006680019000000000086004b00000000070000390000000107004039000003100060009c000000790000213d0000000100700190000000790000c13d0000002407400039000000400060043f000900000008001d00000000042804360000000006720019000000000036004b000007800000213d00070000000b001d0000002005500039000000000651034f0000033a072001980000001f0820018f0000000005740019000002ab0000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000005a004b000002a70000c13d000000000008004b000002b80000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000224001900000000000204350000004402100370000000000402043b000003100040009c000007800000213d0000002302400039000000000032004b000007800000813d0000000405400039000000000251034f000000000202043b000003100020009c000000790000213d0000001f062000390000033a066001970000003f066000390000033a06600197000000400700043d0000000006670019000600000007001d000000000076004b00000000070000390000000107004039000003100060009c000000790000213d0000000100700190000000790000c13d0000002407400039000000400060043f000000060400002900000000042404360000000006720019000000000036004b000007800000213d0000002005500039000000000651034f0000033a072001980000001f0820018f0000000005740019000002e70000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000005a004b000002e30000c13d000000000008004b000002f40000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000224001900000000000204350000006402100370000000000402043b000003100040009c000007800000213d0000002302400039000000000032004b000007800000813d0000000405400039000000000251034f000000000202043b000003100020009c000000790000213d0000001f062000390000033a066001970000003f066000390000033a06600197000000400700043d0000000006670019000500000007001d000000000076004b00000000070000390000000107004039000003100060009c000000790000213d0000000100700190000000790000c13d0000002407400039000000400060043f000000050400002900000000042404360000000006720019000000000036004b000007800000213d0000002003500039000000000331034f0000033a052001980000001f0620018f0000000001540019000003230000613d000000000703034f0000000008040019000000007907043c0000000008980436000000000018004b0000031f0000c13d000000000006004b000003300000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000000124001900000000000104350000000601000039000000000201041a000300000002001d0000000102200039000000000021041b000000400100043d000400000001001d000003120010009c000000790000213d00000004020000290000002001200039000800000001001d000000400010043f00000000000204350000000001000411000000000001004b000004900000c13d000000400100043d000000440210003900000323030000410000000000320435000003150200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000003710000013d000000240030008c000007800000413d0000000002000416000000000002004b000007800000c13d0000000401100370000000000101043b000900000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000101041a0000030e00100198000003b10000c13d000000400100043d00000044021000390000033403000041000000000032043500000024021000390000001803000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000316011001c700000bb800010430000000000005004b00000000010000190000037b0000613d000000e00100043d00000003025002100000033b0220027f0000033b02200167000000000121016f00000001025002100000039b0000013d000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000003860000c13d000000e003500039000000000062004b000003980000813d0000000302600210000000f80220018f0000033b0220027f0000033b022001670000000003030433000000000223016f000000000021041b000000010160021000000001040000390000000002040019000000000121019f000000000014041b000000200100003900000100001004430000012000000443000002f50100004100000bb70001042e000000000010043f0000000301000039000000200010043f000000400200003900000000010000190bb60b970000040f000000000101041a000000800010043f0000030f0100004100000bb70001042e000000000030043f000000020020008c000004170000813d000000a001000039000004220000013d0000000901000029000000000010043f0000000701000039000000200010043f000000400200003900000000010000190bb60b970000040f000900000001001d000000400100043d000800000001001d0bb607da0000040f00000009010000290bb6088b0000040f00000008020000290000000001120436000700000001001d000000090100002900000001011000390bb6088b0000040f00000007020000290000000000120435000000090100002900000002011000390bb6088b0000040f00000008020000290000004002200039000600000002001d0000000000120435000000090100002900000003011000390bb6088b0000040f000000000501001900000008020000290000006001200039000000000051043500000000020204330000000701000029000000000301043300000006010000290000000004010433000000400100043d000900000001001d0bb6083a0000040f0000042b0000013d0000033902200197000000a00020043f000000000001004b000000c001000039000000a001006039000004220000013d000000000020043f0000000501000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000201041a00000339022001970000000803000029000000000232019f000000000021041b000000400100043d0000000000310435000002ef0010009c000002ef0100804100000040011002100000000002000414000002ef0020009c000002ef02008041000000c002200210000000000112019f000002f2011001c70000800d0200003900000003030000390000032604000041000000000500041100000009060000290bb60bac0000040f0000000100200190000007800000613d000000000100001900000bb70001042e000003290200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000004190000413d000000c001300039000000800210008a00000080010000390bb607f00000040f0000002001000039000000400200043d000900000002001d000000000212043600000080010000390bb607b60000040f00000009020000290000000001210049000002ef0010009c000002ef010080410000006001100210000002ef0020009c000002ef020080410000004002200210000000000121019f00000bb70001042e0000000002000411000000000012004b000004690000c13d0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000201041a000003170220019700000009022001af000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000101041a0000030e05100198000003660000613d0000000001000414000002ef0010009c000002ef01008041000000c00110021000000318011001c70000800d0200003900000004030000390000033104000041000000090600002900000008070000290bb60bac0000040f0000000100200190000007800000613d000004150000013d000000000010043f0000000501000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000101041a000000ff00100190000004380000c13d000000400100043d00000064021000390000032e03000041000000000032043500000044021000390000032f03000041000000000032043500000024021000390000003d03000039000001730000013d0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000101041a0000030e00100198000005620000c13d0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000101041a0000030e00100198000005620000c13d0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000000000201041a00000317022001970000000006000411000000000262019f000000000021041b0000000001000414000002ef0010009c000002ef01008041000000c00110021000000318011001c70000800d0200003900000004030000390000031904000041000000000500001900000003070000290bb60bac0000040f0000000100200190000007800000613d0000000001000415000200000001001d0000031a010000410000000000100443000000000100041100000004001004430000000001000414000002ef0010009c000002ef01008041000000c0011002100000031b011001c700008002020000390bb60bb10000040f0000000100200190000005690000613d000000000101043b000000000001004b0000056a0000c13d000000000100041500000002011000690000000001000002000000400100043d000800000001001d000003110010009c0000000902000029000000790000213d00000008040000290000008001400039000000400010043f0000006001400039000400000001001d0000000503000029000000000031043500000040034000390000000601000029000500000003001d000000000013043500000080010000390000000001140436000700000001001d00000000002104350000000301000029000000000010043f0000000701000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000000101043b000600000001001d00000008010000290000000001010433000900000001001d0000000021010434000200000002001d000800000001001d000003100010009c000000790000213d0000000601000029000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000540000c13d0000000101000029000000200010008c0000054e0000413d0000000601000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d00000008030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000054e0000813d000000000002041b0000000102200039000000000012004b0000054a0000413d00000008010000290000001f0010008c0000062a0000a13d0000000601000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000200200008a0000000802200180000000000101043b000006370000c13d0000002003000039000006430000013d000000400100043d00000044021000390000031403000041000000000032043500000024021000390000001c030000390000036c0000013d000000000001042f000000400300043d0000006401300039000000800200003900000000002104350000004401300039000000030200002900000000002104350000031c010000410000000000130435000000040130003900000000020004110000000000210435000000240130003900000000000104350000000401000029000000000101043300000084023000390000000000120435000100000003001d000000a402300039000000000001004b000005880000613d000000000300001900000000042300190000000805300029000000000505043300000000005404350000002003300039000000000013004b000005810000413d00000000022100190000000000020435000000000300041400000000020004110000030e02200197000000040020008c000005970000c13d00000000050004150000000b0550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000005c90000013d0000001f011000390000033a01100197000000a401100039000002ef0010009c000002ef0100804100000060011002100000000104000029000002ef0040009c000002ef040080410000004004400210000000000141019f000002ef0030009c000002ef03008041000000c003300210000000000113019f0bb60bac0000040f0000006003100270000002ef03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000105700029000005b60000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b000005b20000c13d000000000006004b000005c30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000000050004150000000a0550008a00000005055002100000000100200190000005e30000613d0000001f01400039000000600210018f0000000101200029000000000021004b00000000020000390000000102004039000003100010009c000000790000213d0000000100200190000000790000c13d000000400010043f000000200030008c000007800000413d000000010100002900000000010104330000032000100198000007800000c13d0000000502500270000000000201001f00000000020004150000000202200069000000000200000200000321011001970000031c0010009c000004f80000613d000005e90000013d000000000003004b000005f90000c13d00000060020000390000000001020433000000000001004b000006210000c13d000000400200043d000900000002001d0000031501000041000000000012043500000004012000390bb6095d0000040f00000009020000290000000001210049000002ef0010009c000002ef010080410000006001100210000002ef0020009c000002ef020080410000004002200210000000000121019f00000bb8000104300000001f023000390000031d022001970000003f022000390000031e04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003100040009c000000790000213d0000000100500190000000790000c13d000000400040043f0000001f0430018f00000000063204360000031f05300198000700000006001d0000000003560019000006130000613d000000000601034f0000000707000029000000006806043c0000000007870436000000000037004b0000060f0000c13d000000000004004b000005e60000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000005e60000013d0000000702000029000002ef0020009c000002ef020080410000004002200210000002ef0010009c000002ef010080410000006001100210000000000121019f00000bb800010430000000080000006b00000000010000190000062f0000613d00000002010000290000000001010433000000080400002900000003024002100000033b0220027f0000033b02200167000000000121016f0000000102400210000000000121019f000006510000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000009053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000063c0000c13d000000080020006c0000064e0000813d00000008020000290000000302200210000000f80220018f0000033b0220027f0000033b0220016700000009033000290000000003030433000000000223016f000000000021041b0000000801000029000000010110021000000001011001bf0000000602000029000000000012041b00000007010000290000000001010433000900000001001d0000000021010434000700000002001d000800000001001d000003100010009c000000790000213d00000006010000290000000101100039000200000001001d000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000540000c13d0000000101000029000000200010008c000006880000413d0000000201000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d00000008030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000006880000813d000000000002041b0000000102200039000000000012004b000006840000413d00000008010000290000001f0010008c0000069c0000a13d0000000201000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000200200008a0000000802200180000000000101043b000006a90000c13d0000002003000039000006b50000013d000000080000006b0000000001000019000006a10000613d00000007010000290000000001010433000000080400002900000003024002100000033b0220027f0000033b02200167000000000121016f0000000102400210000000000121019f000006c30000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000009053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000006ae0000c13d000000080020006c000006c00000813d00000008020000290000000302200210000000f80220018f0000033b0220027f0000033b0220016700000009033000290000000003030433000000000223016f000000000021041b0000000801000029000000010110021000000001011001bf0000000202000029000000000012041b00000005010000290000000001010433000900000001001d0000000021010434000700000002001d000800000001001d000003100010009c000000790000213d00000006010000290000000201100039000500000001001d000000000101041a000000010010019000000001021002700000007f0220618f000200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000540000c13d0000000201000029000000200010008c000006fa0000413d0000000501000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d00000008030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000006fa0000813d000000000002041b0000000102200039000000000012004b000006f60000413d00000008010000290000001f0010008c0000070e0000a13d0000000501000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000200200008a0000000802200180000000000101043b0000071b0000c13d0000002003000039000007270000013d000000080000006b0000000001000019000007130000613d00000007010000290000000001010433000000080400002900000003024002100000033b0220027f0000033b02200167000000000121016f0000000102400210000000000121019f000007350000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000009053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000007200000c13d000000080020006c000007320000813d00000008020000290000000302200210000000f80220018f0000033b0220027f0000033b0220016700000009033000290000000003030433000000000223016f000000000021041b0000000801000029000000010110021000000001011001bf0000000502000029000000000012041b00000004010000290000000001010433000900000001001d0000000021010434000700000002001d000800000001001d000003100010009c000000790000213d00000006010000290000000301100039000600000001001d000000000101041a000000010010019000000001021002700000007f0220618f000500000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000540000c13d0000000501000029000000200010008c0000076c0000413d0000000601000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d00000008030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000076c0000813d000000000002041b0000000102200039000000000012004b000007680000413d00000008010000290000001f0010008c000007820000a13d0000000601000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000007800000613d000000200200008a0000000802200180000000000101043b0000078f0000c13d00000020030000390000079b0000013d000000000100001900000bb800010430000000080000006b0000000001000019000007870000613d00000007010000290000000001010433000000080400002900000003024002100000033b0220027f0000033b02200167000000000121016f0000000102400210000000000121019f000007a90000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000009053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000007940000c13d000000080020006c000007a60000813d00000008020000290000000302200210000000f80220018f0000033b0220027f0000033b0220016700000009033000290000000003030433000000000223016f000000000021041b0000000801000029000000010110021000000001011001bf0000000602000029000000000012041b0000000001000414000002ef0010009c000002ef01008041000000c00110021000000318011001c70000800d020000390000000303000039000003220400004100000003050000290000000006000411000004120000013d00000000430104340000000001320436000000000003004b000007c20000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000007bb0000413d000000000231001900000000000204350000001f023000390000033a022001970000000001210019000000000001042d0000033c0010009c000007d80000213d000000630010008c000007d80000a13d00000001030003670000000401300370000000000101043b0000030e0010009c000007d80000213d0000002402300370000000000202043b0000030e0020009c000007d80000213d0000004403300370000000000303043b000000000001042d000000000100001900000bb8000104300000033d0010009c000007df0000813d0000008001100039000000400010043f000000000001042d0000032401000041000000000010043f0000004101000039000000040010043f000003250100004100000bb8000104300000033e0010009c000007ea0000813d0000002001100039000000400010043f000000000001042d0000032401000041000000000010043f0000004101000039000000040010043f000003250100004100000bb8000104300000001f022000390000033a022001970000000001120019000000000021004b00000000020000390000000102004039000003100010009c000007fc0000213d0000000100200190000007fc0000c13d000000400010043f000000000001042d0000032401000041000000000010043f0000004101000039000000040010043f000003250100004100000bb800010430000002f40020009c000008320000813d00000000040100190000001f012000390000033a011001970000003f011000390000033a05100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000003100050009c000008320000213d0000000100700190000008320000c13d000000400050043f00000000052104360000000007420019000000000037004b000008380000213d0000033a062001980000001f0720018f00000001044003670000000003650019000008220000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b0000081e0000c13d000000000007004b0000082f0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000032401000041000000000010043f0000004101000039000000040010043f000003250100004100000bb800010430000000000100001900000bb80001043000000080060000390000000006610436000000008202043400000080071000390000000000270435000000a007100039000000000002004b0000084a0000613d0000000009000019000000000a790019000000000b980019000000000b0b04330000000000ba04350000002009900039000000000029004b000008430000413d000000000827001900000000000804350000001f082000390000033a0880019700000000088700190000000007180049000000000076043500000000760304340000000003680436000000000006004b0000085d0000613d00000000080000190000000009380019000000000a870019000000000a0a04330000000000a904350000002008800039000000000068004b000008560000413d000000000763001900000000000704350000001f066000390000033a06600197000000000363001900000000061300490000004007100039000000000067043500000000640404340000000003430436000000000004004b000008710000613d000000000700001900000000083700190000000009760019000000000909043300000000009804350000002007700039000000000047004b0000086a0000413d000000000643001900000000000604350000001f044000390000033a04400197000000000643001900000000031600490000006001100039000000000031043500000000430504340000000001360436000000000003004b000008850000613d000000000500001900000000061500190000000007540019000000000707043300000000007604350000002005500039000000000035004b0000087e0000413d000000000431001900000000000404350000001f033000390000033a023001970000000001210019000000000001042d0003000000000002000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b000008ca0000c13d000000400500043d0000000004650436000000000003004b000008b50000613d000100000004001d000300000006001d000200000005001d000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c001100210000002f2011001c700008010020000390bb60bb10000040f0000000100200190000008d60000613d0000000306000029000000000006004b000008bb0000613d000000000201043b0000000001000019000000020500002900000001070000290000000003170019000000000402041a000000000043043500000001022000390000002001100039000000000061004b000008ad0000413d000008bd0000013d00000339012001970000000000140435000000000006004b00000020010000390000000001006039000008bd0000013d000000000100001900000002050000290000003f011000390000033a021001970000000001520019000000000021004b00000000020000390000000102004039000003100010009c000008d00000213d0000000100200190000008d00000c13d000000400010043f0000000001050019000000000001042d0000032401000041000000000010043f0000002201000039000000040010043f000003250100004100000bb8000104300000032401000041000000000010043f0000004101000039000000040010043f000003250100004100000bb800010430000000000100001900000bb800010430000000000001004b000008db0000613d000000000001042d000000400100043d00000044021000390000033403000041000000000032043500000024021000390000001803000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000316011001c700000bb800010430000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000008fd0000613d000000000101043b000000000101041a0000030e01100198000008ff0000613d000000000001042d000000000100001900000bb800010430000000400100043d00000044021000390000033403000041000000000032043500000024021000390000001803000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000316011001c700000bb8000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000009330000613d000000000101043b000000000101041a0000030e00100198000009350000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000009330000613d000000000101043b000000000101041a0000030e01100197000000000001042d000000000100001900000bb800010430000000400100043d00000044021000390000033403000041000000000032043500000024021000390000001803000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000316011001c700000bb800010430000000000001004b000009490000613d000000000001042d000000400100043d00000064021000390000033f03000041000000000032043500000044021000390000034003000041000000000032043500000024021000390000002d03000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000330011001c700000bb800010430000000600210003900000341030000410000000000320435000000400210003900000342030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000001004b0000096e0000613d000000000001042d000000400200043d000100000002001d0000031501000041000000000012043500000004012000390bb6095d0000040f00000001020000290000000001210049000002ef0010009c000002ef010080410000006001100210000002ef0020009c000002ef020080410000004002200210000000000121019f00000bb8000104300002000000000002000200000001001d000100000002001d000000000020043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000009db0000613d000000000101043b000000000101041a0000030e01100198000009dd0000613d00000002020000290000030e02200197000000000012004b000009970000c13d0000000101000039000000000001042d000200000002001d000000000010043f0000000501000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000009db0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000009db0000613d000000000101043b000000000101041a000000ff01100190000009b60000613d000000000001042d0000000101000029000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000009db0000613d000000000101043b000000000101041a0000030e00100198000009dd0000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f0000000100200190000009db0000613d000000000101043b000000000101041a0000030e01100197000000020010006c00000000010000390000000101006039000000000001042d000000000100001900000bb800010430000000400100043d00000044021000390000033403000041000000000032043500000024021000390000001803000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000316011001c700000bb8000104300003000000000002000100000002001d000200000001001d000300000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f000000010020019000000a700000613d000000000101043b000000000101041a0000030e0210019800000a720000613d00000002010000290000030e01100197000000000012004b00000a830000c13d000200000002001d00000001010000290001030e0010019c00000a8d0000613d0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f000000010020019000000a700000613d000000000101043b000000000101041a0000030e01100198000000020200002900000a720000613d000000000021004b00000a830000c13d0000000301000029000000000010043f0000000401000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f000000010020019000000a700000613d000000000101043b000000000201041a0000031702200197000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f000000010020019000000a700000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000101000029000000000010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f000000010020019000000a700000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f000000010020019000000a700000613d000000000101043b000000000201041a00000317022001970000000106000029000000000262019f000000000021041b0000000001000414000002ef0010009c000002ef01008041000000c00110021000000318011001c70000800d0200003900000004030000390000031904000041000000020500002900000003070000290bb60bac0000040f000000010020019000000a700000613d000000000001042d000000000100001900000bb800010430000000400100043d00000044021000390000033403000041000000000032043500000024021000390000001803000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000316011001c700000bb800010430000000400100043d0000006402100039000003430300004100000000003204350000004402100039000003440300004100000000003204350000002402100039000000250300003900000a960000013d000000400100043d00000064021000390000034503000041000000000032043500000044021000390000034603000041000000000032043500000024021000390000002403000039000000000032043500000315020000410000000000210435000000040210003900000020030000390000000000320435000002ef0010009c000002ef01008041000000400110021000000330011001c700000bb800010430000000000010043f0000000201000039000000200010043f0000000001000414000002ef0010009c000002ef01008041000000c00110021000000313011001c700008010020000390bb60bb10000040f000000010020019000000ab30000613d000000000101043b000000000101041a0000030e001001980000000001000039000000010100c039000000000001042d000000000100001900000bb8000104300006000000000002000300000004001d000200000003001d000100000001001d0000031a010000410000000000100443000400000002001d00000004002004430000000001000414000002ef0010009c000002ef01008041000000c0011002100000031b011001c700008002020000390bb60bb10000040f000000010020019000000b480000613d000000000101043b000000000001004b00000af70000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b000390000000202000029000000000021043500000001010000290000030e011001970000002402b0003900000000001204350000031c0100004100000000001b04350000000401b0003900000000020004110000000000210435000000030100002900000000230104340000008401b000390000000000310435000000a401b00039000000000003004b00000ae80000613d000000000400001900000000051400190000000006420019000000000606043300000000006504350000002004400039000000000034004b00000ae10000413d00000000023100190000000000020435000000000400041400000004020000290000030e02200197000000040020008c00000af90000c13d0000000005000415000000060550008a00000005055002100000000003000031000000200030008c0000002004000039000000000403401900000b2f0000013d0000000101000039000000000001042d000300000007001d0000001f033000390000033a033001970000000003b300490000000001130019000002ef0010009c000002ef010080410000006001100210000002ef00b0009c000002ef0300004100000000030b40190000004003300210000000000131019f000002ef0040009c000002ef04008041000000c003400210000000000131019f00040000000b001d0bb60bac0000040f000000040b0000290000006003100270000002ef03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000b1c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000b180000c13d000000000006004b00000b290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000005000415000000050550008a0000000505500210000000010020019000000b490000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003100010009c00000b870000213d000000010020019000000b870000c13d000000400010043f0000001f0030008c00000b460000a13d00000000010b0433000003200010019800000b460000c13d0000000502500270000000000201001f00000321011001970000031c0010009c00000000010000390000000101006039000000000001042d000000000100001900000bb800010430000000000001042f000000000003004b00000b4d0000c13d000000600200003900000b740000013d0000001f023000390000031d022001970000003f022000390000031e04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003100040009c00000b870000213d000000010050019000000b870000c13d000000400040043f0000001f0430018f00000000063204360000031f05300198000300000006001d000000000356001900000b670000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b00000b630000c13d000000000004004b00000b740000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000b8d0000c13d000000400200043d000400000002001d0000031501000041000000000012043500000004012000390bb6095d0000040f00000004020000290000000001210049000002ef0010009c000002ef010080410000006001100210000002ef0020009c000002ef020080410000004002200210000000000121019f00000bb8000104300000032401000041000000000010043f0000004101000039000000040010043f000003250100004100000bb8000104300000000302000029000002ef0020009c000002ef020080410000004002200210000002ef0010009c000002ef010080410000006001100210000000000121019f00000bb800010430000000000001042f000002ef0010009c000002ef010080410000004001100210000002ef0020009c000002ef020080410000006002200210000000000112019f0000000002000414000002ef0020009c000002ef02008041000000c002200210000000000112019f00000318011001c700008010020000390bb60bb10000040f000000010020019000000baa0000613d000000000101043b000000000001042d000000000100001900000bb80001043000000baf002104210000000102000039000000000001042d0000000002000019000000000001042d00000bb4002104230000000102000039000000000001042d0000000002000019000000000001042d00000bb60000043200000bb70001042e00000bb80001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff41727469636c654e465400000000000000000000000000000000000000000000414e4654000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000bd85d86600000000000000000000000000000000000000000000000000000000cfed7cc400000000000000000000000000000000000000000000000000000000cfed7cc500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000edcfafe600000000000000000000000000000000000000000000000000000000bd85d86700000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000000ebf1d3c0000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000000ebf1d3d0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff7f000000000000000000000000000000000000000000000000ffffffffffffffdf02000000000000000000000000000000000000400000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e7465640000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000233bf0912b812e899b849fdee58071fcb57020b73e7e4e8408b92e6e3b5ea3954552433732313a206d696e7420746f20746865207a65726f20616464726573734e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64552433732313a2061646472657373207a65726f206973206e6f7420612076616c6964206f776e65720000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000006b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f00000000000000000000000000000000000000840000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e654552433732313a20696e76616c696420746f6b656e2049440000000000000000290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff80000000000000000000000000000000000000000000000000ffffffffffffffe072206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6563656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152656f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f2061646400000000000000000000000000000000000000000000000000000000000000005b6cf42a8d0d8f30086961061fd7b5d39db9445745e6b71efb9831f0dc9cb6bc
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.