ERC-721
Overview
Max Total Supply
19 CCA
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 CCALoading...
Loading
Loading...
Loading
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 Source Code Verified (Exact Match)
Contract Name:
Chinchillabstract
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Chinchillabstract is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public maxSupply = 51; uint256 public totalSupply; uint256 private nextTokenId = 1; uint256 private mintLimit = 1; uint256 private price = 0; mapping(address => uint256) private minted; string private uri = "https://arweave.net/qA4XuymtkZ5fEZJLB6hymVEJVwtJ__sFDL6Sqy6-_0I/"; constructor() ERC721("Chinchillabstract", "CCA") Ownable() {} function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(uri, tokenId.toString(), ".json")); } function mint(address _reserver, uint256 _quantity) external payable nonReentrant { require(totalSupply + _quantity <= maxSupply, "Max minted"); require( minted[msg.sender] + _quantity <= mintLimit, "Already minted max" ); require(msg.value >= price * _quantity, "Not enough funds"); minted[msg.sender] += _quantity; for (uint256 i = 0; i < _quantity; i++) { uint256 tokenId = nextTokenId; _safeMint(_reserver, tokenId); totalSupply++; nextTokenId++; } } function airDrop(address[] memory _addresses, uint256 _quantity) external onlyOwner nonReentrant { uint256 totalAirdropAmount = _addresses.length * _quantity; require( totalSupply + totalAirdropAmount <= maxSupply, "Exceeds max supply" ); totalSupply += totalAirdropAmount; for (uint256 i = 0; i < _addresses.length; i++) { for (uint256 j = 0; j < _quantity; j++) { uint256 tokenId = nextTokenId; _safeMint(_addresses[i], tokenId); nextTokenId++; } } } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function setMintLimit(uint256 _newLimit) external onlyOwner { mintLimit = _newLimit; } function withdraw(address _recipient) external onlyOwner { require(_recipient != address(0), "Cannot send to 0 address"); (bool success, ) = payable(_recipient).call{value: address(this).balance}(""); require(success, "Transfer failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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 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.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 (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); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": true, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_reserver","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000365fb4dddf7305fa5092136e1d561fdaf34e5728306d75066a7cce00b6800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x000300000000000200040000000000020000006003100270000002f1043001970002000000410355000100000001035500000001002001900000002e0000c13d0000008002000039000000400020043f000000040040008c000005b70000413d000000000201043b000000e002200270000002fe0020009c0000006f0000a13d000002ff0020009c0000008c0000213d000003070020009c000000e70000213d0000030b0020009c0000018d0000613d0000030c0020009c000001a60000613d0000030d0020009c000005b70000c13d000000240040008c000005b70000413d0000000001000416000000000001004b000005b70000c13d0000000601000039000000000101041a000002f8011001970000000002000411000000000021004b000000000100003900000001010060390bc006900000040f00000004010000390000000101100367000000000101043b0000000c02000039000000000012041b000000000100001900000bc10001042e0000000001000416000000000001004b000005b70000c13d0000001101000039000000800010043f000002f201000041000000a00010043f0000010001000039000000400010043f0000000301000039000000c00010043f000002f301000041000000e00010043f000000000100041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b0000004a0000613d0000032a01000041000000000010043f0000002201000039000000040010043f0000032b0100004100000bc200010430000000200030008c000000620000413d000400000003001d000000000000043f0000000001000414000002f10010009c000002f101008041000000c001100210000002f4011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b00000004020000290000001f0220003900000005022002700000000002210019000000000021004b000000620000813d000000000001041b0000000101100039000000000021004b0000005e0000413d000000a00100043d000002f50110019700000022011001bf000000000010041b000000c00500043d000002f60050009c000000a90000413d0000032a01000041000000000010043f0000004101000039000000040010043f0000032b0100004100000bc2000104300000030e0020009c000000990000a13d0000030f0020009c0000010c0000213d000003130020009c000001af0000613d000003140020009c000001c10000613d000003150020009c000005b70000c13d0000000001000416000000000001004b000005b70000c13d00000000010400190bc006010000040f000400000001001d000300000002001d000200000003001d000000400100043d000100000001001d0bc006130000040f000000010400002900000000000404350000000401000029000000030200002900000002030000290bc006ca0000040f000000000100001900000bc10001042e000003000020009c000001290000213d000003040020009c000001d80000613d000003050020009c000002200000613d000003060020009c000005b70000c13d0000000001000416000000000001004b000005b70000c13d0000000801000039000000a50000013d000003160020009c0000016b0000a13d000003170020009c0000024a0000613d000003180020009c000002530000613d000003190020009c000005b70000c13d0000000001000416000000000001004b000005b70000c13d0000000901000039000000000101041a000000800010043f000003280100004100000bc10001042e0000000104000039000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000440000c13d000000200030008c000000d40000413d000300000003001d000400000005001d000000000040043f0000000001000414000002f10010009c000002f101008041000000c001100210000002f4011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d00000004050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000104000039000000d40000813d000000000002041b0000000102200039000000000012004b000000d00000413d0000001f0050008c000003240000a13d000400000005001d000000000040043f0000000001000414000002f10010009c000002f101008041000000c001100210000002f4011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d00000004060000290000034c02600198000000000101043b000003770000c13d000000e003000039000003850000013d000003080020009c0000027a0000613d000003090020009c000002990000613d0000030a0020009c000005b70000c13d000000440040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000402100370000000000202043b000400000002001d000002f80020009c000005b70000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000300000002001d000000000012004b000005b70000c13d0000000002000411000000040020006c000004260000c13d0000032001000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000033201000041000000c40010043f000003330100004100000bc200010430000003100020009c000002ad0000613d000003110020009c000002c90000613d000003120020009c000005b70000c13d000000240040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000401100370000000000101043b000002f80010009c000005b70000213d000000000001004b000003e50000c13d0000032001000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f0000033501000041000000c40010043f0000033601000041000000e40010043f000003260100004100000bc200010430000003010020009c000002d80000613d000003020020009c000002f30000613d000003030020009c000005b70000c13d000000440040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000402100370000000000202043b0000031c0020009c000005b70000213d0000002303200039000000000043004b000005b70000813d0000000403200039000000000331034f000000000503043b0000031c0050009c000000690000213d00000005035002100000003f063000390000031d066001970000031e0060009c000000690000213d0000008006600039000000400060043f000000800050043f00000024022000390000000003230019000000000043004b000005b70000213d000000000005004b000001570000613d000000a004000039000000000521034f000000000505043b000002f80050009c000005b70000213d00000000045404360000002002200039000000000032004b0000014f0000413d0000002401100370000000000101043b000100000001001d0000000601000039000000000101041a000002f8011001970000000002000411000000000021004b000005240000c13d0000000701000039000000000201041a000000020020008c000005760000c13d000000400100043d00000044021000390000032303000041000000000032043500000024021000390000001f03000039000005420000013d0000031a0020009c000003100000613d0000031b0020009c000005b70000c13d0000000001000416000000000001004b000005b70000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000440000c13d000000800010043f000000000003004b000003690000613d000000000000043f000000000001004b00000000020000190000036e0000613d00000346030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001850000413d0000036e0000013d0000000001000416000000000001004b000005b70000c13d0000000601000039000000000201041a000002f8032001970000000005000411000000000053004b0000032f0000c13d000002f702200197000000000021041b0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d020000390000000303000039000002fa0400004100000000060000190bc00bb60000040f0000000100200190000005b70000613d000000000100001900000bc10001042e0000000001000416000000000001004b000005b70000c13d0000000601000039000000000101041a000002f801100197000000800010043f000003280100004100000bc10001042e0000000001000416000000000001004b000005b70000c13d00000000010400190bc006010000040f000400000001001d000300000002001d0000000002030019000200000003001d00000000010004110bc008ea0000040f0bc006690000040f0000000401000029000000030200002900000002030000290bc0097f0000040f000000000100001900000bc10001042e000000440040008c000005b70000413d0000000402100370000000000202043b000300000002001d000002f80020009c000005b70000213d0000002401100370000000000301043b0000000701000039000000000201041a000000020020008c000003ec0000c13d0000032001000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000032301000041000000c40010043f000003330100004100000bc200010430000000840040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000402100370000000000502043b000002f80050009c000005b70000213d0000002402100370000000000202043b000002f80020009c000005b70000213d0000006403100370000000000603043b0000031c0060009c000005b70000213d0000002303600039000000000043004b000005b70000813d0000000407600039000000000371034f000000000303043b0000031c0030009c000000690000213d0000001f093000390000034c099001970000003f099000390000034c099001970000031e0090009c000000690000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b000005b70000213d0000002004700039000000000641034f0000034c073001980000001f0830018f000000a0047000390000020a0000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b000002060000c13d000000000008004b000002170000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b000000800400003900000000010500190bc006ca0000040f000000000100001900000bc10001042e000000240040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000402100370000000000202043b000000000002004b000003380000c13d000000c001000039000000400010043f0000000102000039000000800020043f0000032d02000041000000a00020043f0000000e04000039000000000304041a000000010530019000000001073002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000223013f0000000100200190000000440000c13d0000002002100039000000000005004b000004010000613d000000000040043f000000000007004b000004030000613d0000032e0300004100000000040000190000000005240019000000000603041a000000000065043500000001033000390000002004400039000000000074004b000002420000413d000004030000013d000000240040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000401100370000000000101043b0bc006300000040f000002d10000013d000000440040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000402100370000000000202043b000400000002001d000002f80020009c000005b70000213d0000002401100370000000000101043b000300000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b000000000101041a000002f801100198000004560000c13d000000400100043d00000064021000390000034403000041000000000032043500000044021000390000034503000041000000000032043500000024021000390000002903000039000004610000013d0000000001000416000000000001004b000005b70000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000440000c13d000000800010043f000000000004004b000003690000613d000000000030043f000000000001004b00000000020000190000036e0000613d00000334030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002910000413d0000036e0000013d000000240040008c000005b70000413d0000000001000416000000000001004b000005b70000c13d0000000601000039000000000101041a000002f8011001970000000002000411000000000021004b000000000100003900000001010060390bc006900000040f00000004010000390000000101100367000000000101043b0000000b02000039000000000012041b000000000100001900000bc10001042e000000240040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000401100370000000000101043b000400000001001d000002f80010009c000005b70000213d0000000601000039000000000101041a000002f8011001970000000002000411000000000021004b0000032f0000c13d000000040000006b0000046c0000c13d0000032001000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f0000033a01000041000000c40010043f000003330100004100000bc200010430000000240040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000401100370000000000101043b0bc006a30000040f000000400200043d0000000000120435000002f10020009c000002f102008041000000400120021000000327011001c700000bc10001042e000000440040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000402100370000000000202043b000002f80020009c000005b70000213d0000002401100370000000000101043b000400000001001d000002f80010009c000005b70000213d000000000020043f0000000501000039000000200010043f000000400200003900000000010000190bc00ba10000040f00000004020000290bc006800000040f000000000101041a000000ff001001900000000001000039000000010100c039000002d10000013d000000240040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000401100370000000000601043b000002f80060009c000005b70000213d0000000601000039000000000201041a000002f8032001970000000005000411000000000053004b0000032f0000c13d000000000006004b000004810000c13d0000032001000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000032401000041000000c40010043f0000032501000041000000e40010043f000003260100004100000bc200010430000000240040008c000005b70000413d0000000002000416000000000002004b000005b70000c13d0000000401100370000000000201043b0000034700200198000005b70000c13d00000001010000390000034802200197000003490020009c000001ac0000613d0000034a0020009c000001ac0000613d0000034b0020009c000000000100c019000000800010043f000003280100004100000bc10001042e000000000005004b0000000001000019000003280000613d000000e00100043d00000003025002100000034d0220027f0000034d02200167000000000121016f0000000102500210000000000121019f000003910000013d0000032001000041000000800010043f0000002001000039000000840010043f000000a40010043f0000031f01000041000000c40010043f000003330100004100000bc200010430000000000341034f000000000502001900000000010000190000000004010019000000010110003a000005e00000613d000000090050008c0000000a0550011a0000033b0000213d000003290040009c000000690000213d0000034c044001970000005f064000390000034c066001970000031e0060009c000000690000213d0000008006600039000000400060043f000000800010043f00000020044000390000034c054001980000001f0440018f000003550000613d000000a005500039000000a006000039000000003703043c0000000006760436000000000056004b000003510000c13d000000000004004b000000000001004b000005e00000613d000000010310008a000000800400043d000000000034004b000005e60000a13d000000090020008c0000000a4220011a000000f8044002100000009f0110003900000000050104330000032c05500197000000000454019f0000032d044001c700000000004104350000000001030019000003560000213d000000400100043d0000022f0000013d0000034e02200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390bc0061e0000040f000000400100043d000400000001001d00000080020000390bc005ec0000040f00000004020000290000041d0000013d000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b0000037c0000c13d000000e003500039000000000062004b0000038e0000813d0000000302600210000000f80220018f0000034d0220027f0000034d022001670000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000104000039000000000014041b0000000601000039000000000201041a000002f7032001970000000006000411000000000363019f000000000031041b0000000001000414000002f805200197000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d020000390000000303000039000002fa040000410bc00bb60000040f0000000100200190000005b70000613d00000007010000390000000103000039000000000031041b00000033010000390000000802000039000000000012041b0000000a01000039000000000031041b0000000b01000039000000000031041b0000000c01000039000000000001041b0000000e03000039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f0000000100100190000000440000c13d000000200040008c000003d50000413d000400000004001d000000000030043f0000000001000414000002f10010009c000002f101008041000000c001100210000002f4011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000201043b00000004010000290000001f01100039000000050110027000000000011200190000000202200039000000000012004b0000000e03000039000003d50000813d000000000002041b0000000102200039000000000012004b000003d10000413d0000008101000039000000000013041b000000000030043f000000200200003900000000010000190bc00ba10000040f000002fb02000041000000000021041b0000000101100039000002fc02000041000000000021041b000000200100003900000100001004430000012000000443000002fd0100004100000bc10001042e000000000010043f0000000301000039000000200010043f000000400200003900000000010000190bc00ba10000040f000000a50000013d0000000202000039000000000021041b0000000901000039000000000101041a000000000031001a000005e00000413d00000000013100190000000802000039000000000202041a000000000021004b0000048d0000a13d0000032001000041000000800010043f0000002001000039000000840010043f0000000a01000039000000a40010043f0000033d01000041000000c40010043f000003330100004100000bc2000104300000034e0330019700000000003204350000000006720019000000800200043d000000000002004b0000040f0000613d00000000030000190000000004630019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000004080000413d00000000036200190000032f02000041000000000023043500000000031300490000001b0230008a00000000002104350000000502300039000400000001001d0bc0061e0000040f000000400100043d000300000001001d00000004020000290bc005ec0000040f00000003020000290000000001210049000002f10010009c000002f1010080410000006001100210000002f10020009c000002f1020080410000004002200210000000000121019f00000bc10001042e000000000020043f0000000501000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b000000000201041a0000034e022001970000000303000029000000000232019f000000000021041b000000400100043d0000000000310435000002f10010009c000002f10100804100000040011002100000000002000414000002f10020009c000002f102008041000000c002200210000000000112019f000002f4011001c70000800d020000390000000303000039000003310400004100000000050004110000000406000029000001a10000013d000000040010006b000004ae0000c13d000000400100043d00000064021000390000034203000041000000000032043500000044021000390000034303000041000000000032043500000024021000390000002103000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000340011001c700000bc20001043000000337010000410000000000100443000000000100041000000004001004430000000001000414000002f10010009c000002f101008041000000c00110021000000338011001c70000800a020000390bc00bbb0000040f0000000100200190000004e20000613d000000000301043b00000000010004140000000402000029000000040020008c000004e30000c13d00000001020000390000000001000031000005380000013d000002f702200197000000000262019f000000000021041b0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d020000390000000303000039000002fa04000041000001a10000013d000200000003001d0000000001000411000002f801100197000400000001001d000000000010043f0000000d01000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b000000000101041a0000000203000029000000000031001a000005e00000413d00000000013100190000000b02000039000000000202041a000000000021004b000004ea0000a13d000000400100043d00000044021000390000033c03000041000000000032043500000024021000390000001203000039000005420000013d0000000002000411000000000012004b000004fc0000c13d0000000301000029000000000010043f0000000401000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b000000000201041a000002f70220019700000004022001af000000000021041b0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b000000000101041a000002f805100198000002700000613d0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d0200003900000004030000390000034104000041000000040600002900000003070000290bc00bb60000040f0000000100200190000005b70000613d000001a40000013d000000000001042f000002f10010009c000002f101008041000000c001100210000000000003004b0000052f0000c13d0000000402000029000005330000013d0000000c01000039000000000201041a00000000013200a9000000000002004b000004f20000613d00000000022100d9000000000032004b000005e00000c13d0000000002000416000000000012004b0000058c0000813d000000400100043d00000044021000390000033b03000041000000000032043500000024021000390000001003000039000005420000013d000000000010043f0000000501000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b0000000002000411000002f802200197000000000020043f000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b000000000101041a000000ff00100190000004b10000c13d000000400100043d00000064021000390000033e03000041000000000032043500000044021000390000033f03000041000000000032043500000024021000390000003803000039000004610000013d000000400100043d00000044021000390000031f030000410000000000320435000003200200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000005470000013d000002f9011001c70000800902000039000000040400002900000000050000190bc00bb60000040f00020000000103550000006001100270000002f10010019d000002f101100197000000000001004b0000054d0000c13d0000000100200190000001a40000c13d000000400100043d00000044021000390000033903000041000000000032043500000024021000390000000f03000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000321011001c700000bc2000104300000031c0010009c000000690000213d0000001f041000390000034c044001970000003f044000390000034c05400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000031c0050009c000000690000213d0000000100600190000000690000c13d000000400050043f00000000061404360000034c031001980000001f0410018f00000000013600190000000205000367000005680000613d000000000705034f000000007807043c0000000006860436000000000016004b000005640000c13d000000000004004b0000053a0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000053a0000013d0000000202000039000000000021041b000000800100043d00000001021000b9000000000001004b0000057f0000613d00000000031200d9000000010030006c000005e00000c13d0000000903000039000000000403041a000000000024001a000005e00000413d00000000022400190000000804000039000000000404041a000000000042004b000005b90000a13d000000400100043d00000044021000390000032203000041000004aa0000013d0000000401000029000000000010043f0000000d01000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000005b70000613d000000000101043b000000000201041a0000000203000029000000000032001a000005e00000413d0000000002320019000000000021041b000000000003004b000005db0000613d0000000a01000039000000000201041a000400000000001d00000003010000290bc00a3f0000040f0000000902000039000000000102041a000000010110003a00000002030000290000000a04000039000005e00000613d000000000012041b000000000104041a000000010210003a000005e00000613d000000000024041b0000000401000029000400010010003d000000040030006b000005a50000413d000005db0000013d000000000100001900000bc200010430000000000023041b000000000001004b000005db0000613d000000010000006b000005db0000613d00000000020000190000000501200210000300a00010003d0000000003000019000200000002001d000400000003001d000000800100043d000000000021004b000005e60000a13d000000030100002900000000010104330000000a02000039000000000202041a000002f8011001970bc00a3f0000040f0000000a02000039000000000102041a000000010110003a000005e00000613d000000000012041b00000004030000290000000103300039000000010030006c0000000202000029000005c30000413d0000000102200039000000800100043d000000000012004b000005bf0000413d00000001010000390000000702000039000000000012041b000000000100001900000bc10001042e0000032a01000041000000000010043f0000001101000039000000040010043f0000032b0100004100000bc2000104300000032a01000041000000000010043f0000003201000039000000040010043f0000032b0100004100000bc20001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000005fb0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000005f40000413d000000000312001900000000000304350000001f022000390000034c022001970000000001120019000000000001042d0000034f0010009c000006110000213d000000630010008c000006110000a13d00000001030003670000000401300370000000000101043b000002f80010009c000006110000213d0000002402300370000000000202043b000002f80020009c000006110000213d0000004403300370000000000303043b000000000001042d000000000100001900000bc200010430000003500010009c000006180000813d0000002001100039000000400010043f000000000001042d0000032a01000041000000000010043f0000004101000039000000040010043f0000032b0100004100000bc2000104300000001f022000390000034c022001970000000001120019000000000021004b000000000200003900000001020040390000031c0010009c0000062a0000213d00000001002001900000062a0000c13d000000400010043f000000000001042d0000032a01000041000000000010043f0000004101000039000000040010043f0000032b0100004100000bc2000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000006530000613d000000000101043b000000000101041a000002f800100198000006550000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000006530000613d000000000101043b000000000101041a000002f801100197000000000001042d000000000100001900000bc200010430000000400100043d00000064021000390000035103000041000000000032043500000044021000390000035203000041000000000032043500000024021000390000002c03000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000340011001c700000bc200010430000000000001004b0000066c0000613d000000000001042d000000400100043d00000064021000390000035303000041000000000032043500000044021000390000035403000041000000000032043500000024021000390000003103000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000340011001c700000bc200010430000002f802200197000000000020043f000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f00000001002001900000068e0000613d000000000101043b000000000001042d000000000100001900000bc200010430000000000001004b000006930000613d000000000001042d000000400100043d00000044021000390000031f0300004100000000003204350000032002000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002f10010009c000002f101008041000000400110021000000321011001c700000bc200010430000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000006b40000613d000000000101043b000000000101041a000002f801100198000006b60000613d000000000001042d000000000100001900000bc200010430000000400100043d00000064021000390000034403000041000000000032043500000044021000390000034503000041000000000032043500000024021000390000002903000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000340011001c700000bc2000104300009000000000002000100000004001d000400000002001d000500000001001d000700000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000101041a000002f800100198000008630000613d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000101041a000002f801100198000008530000613d0000000002000411000302f80020019b000000030010006b000007340000613d000000000010043f0000000501000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000101041a000000ff00100190000007340000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000101041a000002f800100198000008900000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000101041a000002f801100197000000030010006c000008970000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000101041a000602f80010019c000008530000613d0000000501000029000002f801100197000000060010006b0000086d0000c13d0000000401000029000502f80010019c000008770000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000201041a000002f702200197000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000101041a000002f805100198000008530000613d0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d0200003900000004030000390000034104000041000000000600001900000007070000290bc00bb60000040f0000000100200190000008510000613d0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000201041a000000000002004b0000085d0000613d000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000201041a000000010220003a0000085d0000613d000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000008510000613d000000000101043b000000000201041a000002f7022001970000000506000029000000000262019f000000000021041b0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d0200003900000004030000390000035704000041000000060500002900000007070000290bc00bb60000040f0000000100200190000008510000613d0000000001000415000200000001001d00000358010000410000000000100443000000040100002900000004001004430000000001000414000002f10010009c000002f101008041000000c00110021000000338011001c700008002020000390bc00bbb0000040f00000001002001900000088b0000613d000000000101043b000000000001004b000007fe0000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000006020000290000000000210435000003590100004100000000001b04350000000401b00039000000030200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000007f00000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b000007e90000413d0000000002310019000000000002043500000000040004140000000502000029000000040020008c000008020000c13d0000000005000415000000090550008a00000005055002100000000003000031000000200030008c00000020040000390000000004034019000008380000013d000000000100041500000002011000690000000001000002000000000001042d000600000007001d0000001f011000390000034c01100197000000a401100039000002f10010009c000002f1010080410000006001100210000002f100b0009c000002f10300004100000000030b40190000004003300210000000000131019f000002f10040009c000002f104008041000000c003400210000000000113019f00070000000b001d0bc00bb60000040f000000070b0000290000006003100270000002f103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000008240000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000008200000c13d000000000006004b000008310000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000005000415000000080550008a000000050550021000000001002001900000088c0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000031c0010009c000008db0000213d0000000100200190000008db0000c13d000000400010043f000000200030008c000008510000413d00000000010b04330000034700100198000008510000c13d0000000502500270000000000201001f0000000002000415000000020220006900000000020000020000034801100197000003590010009c000008cb0000c13d000000000001042d000000000100001900000bc200010430000000400100043d00000064021000390000034403000041000000000032043500000044021000390000034503000041000000000032043500000024021000390000002903000039000008800000013d0000032a01000041000000000010043f0000001101000039000000040010043f0000032b0100004100000bc200010430000000400100043d00000064021000390000035103000041000000000032043500000044021000390000035f03000041000000000032043500000024021000390000002c03000039000008800000013d000000400100043d00000064021000390000035503000041000000000032043500000044021000390000035603000041000000000032043500000024021000390000002503000039000008800000013d000000400100043d00000064021000390000035d03000041000000000032043500000044021000390000035e03000041000000000032043500000024021000390000002403000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000340011001c700000bc200010430000000000001042f000000000003004b000008a10000c13d0000006002000039000008c80000013d000000400100043d00000064021000390000035103000041000000000032043500000044021000390000035203000041000008690000013d000000400100043d00000064021000390000035303000041000000000032043500000044021000390000035403000041000000000032043500000024021000390000003103000039000008800000013d0000001f023000390000035a022001970000003f022000390000035b04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000031c0040009c000008db0000213d0000000100500190000008db0000c13d000000400040043f0000001f0430018f00000000063204360000035c05300198000600000006001d0000000003560019000008bb0000613d000000000601034f0000000607000029000000006806043c0000000007870436000000000037004b000008b70000c13d000000000004004b000008c80000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000008e10000c13d000000400200043d000700000002001d0000032001000041000000000012043500000004012000390bc00b930000040f00000007020000290000000001210049000002f10010009c000002f1010080410000006001100210000002f10020009c000002f1020080410000004002200210000000000121019f00000bc2000104300000032a01000041000000000010043f0000004101000039000000040010043f0000032b0100004100000bc2000104300000000602000029000002f10020009c000002f1020080410000004002200210000002f10010009c000002f1010080410000006001100210000000000121019f00000bc2000104300002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000009580000613d000000000101043b000000000101041a000002f8001001980000095a0000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000009580000613d000000000101043b000000000101041a000002f801100198000009640000613d0000000102000029000002f802200197000000000012004b000009140000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000009580000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000009580000613d000000000101043b000000000101041a000000ff01100190000009330000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000009580000613d000000000101043b000000000101041a000002f800100198000009780000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f0000000100200190000009580000613d000000000101043b000000000101041a000002f801100197000000010010006c00000000010000390000000101006039000000000001042d000000000100001900000bc200010430000000400100043d00000064021000390000035103000041000000000032043500000044021000390000035f03000041000000000032043500000024021000390000002c030000390000096d0000013d000000400100043d00000064021000390000034403000041000000000032043500000044021000390000034503000041000000000032043500000024021000390000002903000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000340011001c700000bc200010430000000400100043d00000064021000390000035103000041000000000032043500000044021000390000035203000041000009600000013d0004000000000002000100000002001d000200000001001d000400000003001d000000000030043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000a0f0000613d000000000101043b000000000101041a000302f80010019c00000a110000613d0000000201000029000002f801100197000000030010006b00000a210000c13d0000000101000029000202f80010019c00000a2b0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000a0f0000613d000000000101043b000000000201041a000002f702200197000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000a0f0000613d000000000101043b000000000101041a000002f80510019800000a110000613d0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d0200003900000004030000390000034104000041000000000600001900000004070000290bc00bb60000040f000000010020019000000a0f0000613d0000000301000029000000000010043f0000000301000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000a0f0000613d000000000101043b000000000201041a000000000002004b00000a1b0000613d000000010220008a000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000a0f0000613d000000000101043b000000000201041a000000010220003a00000a1b0000613d000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000a0f0000613d000000000101043b000000000201041a000002f7022001970000000206000029000000000262019f000000000021041b0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d0200003900000004030000390000035704000041000000030500002900000004070000290bc00bb60000040f000000010020019000000a0f0000613d000000000001042d000000000100001900000bc200010430000000400100043d0000006402100039000003440300004100000000003204350000004402100039000003450300004100000000003204350000002402100039000000290300003900000a340000013d0000032a01000041000000000010043f0000001101000039000000040010043f0000032b0100004100000bc200010430000000400100043d0000006402100039000003550300004100000000003204350000004402100039000003560300004100000000003204350000002402100039000000250300003900000a340000013d000000400100043d00000064021000390000035d03000041000000000032043500000044021000390000035e03000041000000000032043500000024021000390000002403000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000340011001c700000bc2000104300008000000000002000600000002001d000000400200043d000003500020009c00000b840000813d0000002003200039000300000003001d000000400030043f000100000002001d0000000000020435000400000001001d000502f80010019c00000b230000613d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000b210000613d000000000101043b000000000101041a000002f80010019800000b2e0000c13d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000b210000613d000000000101043b000000000201041a000000010220003a00000b3f0000613d000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000002f10010009c000002f101008041000000c00110021000000330011001c700008010020000390bc00bbb0000040f000000010020019000000b210000613d000000000101043b000000000201041a000002f7022001970000000506000029000000000262019f000000000021041b0000000001000414000002f10010009c000002f101008041000000c001100210000002f9011001c70000800d0200003900000004030000390000035704000041000000000500001900000006070000290bc00bb60000040f000000010020019000000b210000613d0000000001000415000200000001001d00000358010000410000000000100443000000040100002900000004001004430000000001000414000002f10010009c000002f101008041000000c00110021000000338011001c700008002020000390bc00bbb0000040f000000010020019000000b450000613d000000000101043b000000000001004b0000000502000029000000030700002900000ace0000613d000000400b00043d0000006401b00039000000800800003900000000008104350000004401b0003900000006030000290000000000310435000003590100004100000000001b04350000000001000411000002f8011001970000000403b0003900000000001304350000002401b000390000000000010435000000010100002900000000010104330000008403b000390000000000130435000000a406b00039000000000001004b00000ac10000613d000000000300001900000000046300190000000005730019000000000505043300000000005404350000002003300039000000000013004b00000aba0000413d000000000361001900000000000304350000000004000414000000040020008c00000ad20000c13d0000000005000415000000080550008a00000005055002100000000003000031000000200030008c0000002004000039000000000403401900000b080000013d000000000100041500000002011000690000000001000002000000000001042d000400000008001d0000001f011000390000034c01100197000000a401100039000002f10010009c000002f1010080410000006001100210000002f100b0009c000002f10300004100000000030b40190000004003300210000000000131019f000002f10040009c000002f104008041000000c003400210000000000113019f00060000000b001d0bc00bb60000040f000000060b0000290000006003100270000002f103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000af40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000af00000c13d000000000006004b00000b010000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000005000415000000070550008a0000000505500210000000010020019000000b460000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000031c0010009c00000b840000213d000000010020019000000b840000c13d000000400010043f000000200030008c00000b210000413d00000000010b0433000003470010019800000b210000c13d0000000502500270000000000201001f0000000002000415000000020220006900000000020000020000034801100197000003590010009c00000b740000c13d000000000001042d000000000100001900000bc200010430000000400100043d00000044021000390000036103000041000000000032043500000320020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000b390000013d000000400100043d00000044021000390000036003000041000000000032043500000024021000390000001c03000039000000000032043500000320020000410000000000210435000000040210003900000020030000390000000000320435000002f10010009c000002f101008041000000400110021000000321011001c700000bc2000104300000032a01000041000000000010043f0000001101000039000000040010043f0000032b0100004100000bc200010430000000000001042f000000000003004b00000b4a0000c13d000000600200003900000b710000013d0000001f023000390000035a022001970000003f022000390000035b04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000031c0040009c00000b840000213d000000010050019000000b840000c13d000000400040043f0000001f0430018f00000000063204360000035c05300198000400000006001d000000000356001900000b640000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b00000b600000c13d000000000004004b00000b710000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000b8a0000c13d000000400200043d000600000002001d0000032001000041000000000012043500000004012000390bc00b930000040f00000006020000290000000001210049000002f10010009c000002f1010080410000006001100210000002f10020009c000002f1020080410000004002200210000000000121019f00000bc2000104300000032a01000041000000000010043f0000004101000039000000040010043f0000032b0100004100000bc2000104300000000402000029000002f10020009c000002f1020080410000004002200210000002f10010009c000002f1010080410000006001100210000000000121019f00000bc200010430000000600210003900000362030000410000000000320435000000400210003900000363030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000002f10010009c000002f1010080410000004001100210000002f10020009c000002f1020080410000006002200210000000000112019f0000000002000414000002f10020009c000002f102008041000000c002200210000000000112019f000002f9011001c700008010020000390bc00bbb0000040f000000010020019000000bb40000613d000000000101043b000000000001042d000000000100001900000bc20001043000000bb9002104210000000102000039000000000001042d0000000002000019000000000001042d00000bbe002104230000000102000039000000000001042d0000000002000019000000000001042d00000bc00000043200000bc10001042e00000bc200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4368696e6368696c6c616273747261637400000000000000000000000000000043434100000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e068747470733a2f2f617277656176652e6e65742f7141345875796d746b5a3566455a4a4c423668796d56454a5677744a5f5f7346444c36537179362d5f30492f000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fd1fc4a000000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d5abeb010000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009e6a1d7d00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000091b7f5ed0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000051cff8d80000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657208c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000045786365656473206d617820737570706c7900000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000fffffffffffffffe4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd2e6a736f6e000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000004000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64552433732313a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005472616e73666572206661696c6564000000000000000000000000000000000043616e6e6f742073656e6420746f2030206164647265737300000000000000004e6f7420656e6f7567682066756e647300000000000000000000000000000000416c7265616479206d696e746564206d617800000000000000000000000000004d6178206d696e746564000000000000000000000000000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f7700000000000000000000000000000000000000840000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56300000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f6f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f727265637420ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164644552433732313a206f70657261746f7220717565727920666f72206e6f6e65784552433732313a20746f6b656e20616c7265616479206d696e746564000000004552433732313a206d696e7420746f20746865207a65726f206164647265737363656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e20455243373231526569431e7deb4ab710d01a7722a13f4ad55f340ce1592c64445be56165f43dfea7
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.