Overview
TokenID
1241
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
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:
UwuNFT
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)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.24;import {ERC721A} from "erc721a/contracts/ERC721A.sol";import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import {SafeTransferLib} from "solady/src/utils/ext/zksync/SafeTransferLib.sol";contract UwuNFT is ERC721A, Ownable, ReentrancyGuard {using Strings for uint256;error MaxPerWalletExceeded();error MaxSupplyReached();error TransfersNotEnabled();error IncorrectValue();error NotAllowed();error InvalidPhase();error IncorrectProof();error PenguTokenNotSet();error ArithmeticOverflow();error MaxPhaseSupplyReached();uint256 public constant MAX_SUPPLY = 2000;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../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.** The initial owner is set to the address provided by the deployer. 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;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)pragma solidity ^0.8.20;/*** @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 EIP-1153 (transient storage) is available on the chain you're deploying at,* consider using {ReentrancyGuardTransient} instead.** 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SafeCast} from "./math/SafeCast.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {using SafeCast for *;bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @dev The string being parsed contains characters that are not in scope of the given base.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721A.sol';/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}/*** @title ERC721A** @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)* Non-Fungible Token Standard, including the Metadata extension.* Optimized for lower gas during batch mints.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;import {SingleUseETHVault} from "./SingleUseETHVault.sol";/// @notice Library for force safe transferring ETH and ERC20s in ZKsync./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/ext/zksync/SafeTransferLib.sol)library SafeTransferLib {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* EVENTS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev A single use ETH vault has been created for `to`, with `amount`.event SingleUseETHVaultCreated(address indexed to, uint256 amount, address vault);/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The ETH transfer has failed.error ETHTransferFailed();/// @dev The ERC20 `transferFrom` has failed.error TransferFromFailed();/// @dev The ERC20 `transfer` has failed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MerkleProof.sol)// This file was procedurally generated from scripts/generate/templates/MerkleProof.js.pragma solidity ^0.8.20;import {Hashes} from "./Hashes.sol";/*** @dev These functions deal with verification of Merkle Tree proofs.** The tree and the proofs can be generated using our* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].* You will find a quickstart guide in the readme.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the Merkle tree could be reinterpreted as a leaf value.* OpenZeppelin's JavaScript library generates Merkle trees that are safe* against this attack out of the box.** IMPORTANT: Consider memory side-effects when using custom hashing functions* that access memory in an unsafe way.** NOTE: This library supports proof verification for merkle trees built using
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/*** @dev Interface of ERC721A.*/interface IERC721A {/*** The caller must own the token or be an approved operator.*/error ApprovalCallerNotOwnerNorApproved();/*** The token does not exist.*/error ApprovalQueryForNonexistentToken();/*** Cannot query the balance for the zero address.*/error BalanceQueryForZeroAddress();/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)pragma solidity ^0.8.20;import {Panic} from "../Panic.sol";import {SafeCast} from "./SafeCast.sol";/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an success flag (no overflow).*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such an operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;import {SafeCast} from "./SafeCast.sol";/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.** IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute* one branch when needed, making this function more expensive.*/function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {unchecked {// branchless ternary works because:// b ^ (a ^ b) == a// b ^ 0 == breturn b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/Hashes.sol)pragma solidity ^0.8.20;/*** @dev Library of standard hash functions.** _Available since v5.1._*/library Hashes {/*** @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.** NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library].*/function commutativeKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32) {return a < b ? _efficientKeccak256(a, b) : _efficientKeccak256(b, a);}/*** @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.*/function _efficientKeccak256(bytes32 a, bytes32 b) private pure returns (bytes32 value) {assembly ("memory-safe") {mstore(0x00, a)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice A single-use vault that allows a designated caller to withdraw all ETH in it./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/ext/zksync/SingleUseETHVault.sol)contract SingleUseETHVault {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev Unable to withdraw all.error WithdrawAllFailed();/// @dev Not authorized.error Unauthorized();/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* WITHDRAW ALL *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/fallback() external payable virtual {/// @solidity memory-safe-assemblyassembly {mstore(0x40, 0) // Optimization trick to remove free memory pointer initialization.let owner := sload(0)// Initialization.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)pragma solidity ^0.8.20;/*** @dev Helper library for emitting standardized panic codes.** ```solidity* contract Example {* using Panic for uint256;** // Use any of the declared internal constants* function foo() { Panic.GENERIC.panic(); }** // Alternatively* function foo() { Panic.panic(Panic.GENERIC); }* }* ```** Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].** _Available since v5.1._*/// slither-disable-next-line unused-statelibrary Panic {
12345678910111213141516171819202122{"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
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ArithmeticOverflow","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"IncorrectProof","type":"error"},{"inputs":[],"name":"IncorrectValue","type":"error"},{"inputs":[],"name":"InvalidPhase","type":"error"},{"inputs":[],"name":"MaxPerWalletExceeded","type":"error"},{"inputs":[],"name":"MaxPhaseSupplyReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PenguTokenNotSet","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransfersNotEnabled","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum UwuNFT.MintPhase","name":"newPhase","type":"uint8"}],"name":"MintPhaseChanged","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":false,"internalType":"uint256","name":"newEthPrice","type":"uint256"}],"name":"PricesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TokensMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"tokensPerRecipient","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum UwuNFT.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fcfsMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint64","name":"quantity","type":"uint64"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"fcfsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"fcfsMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fcfsMintedCount","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint64","name":"quantity","type":"uint64"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"prefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"payable","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":"payable","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":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum UwuNFT.MintPhase","name":"phase_","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prefix_","type":"string"}],"name":"setPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"ogRoot_","type":"bytes32"},{"internalType":"bytes32","name":"wlRoot_","type":"bytes32"},{"internalType":"bytes32","name":"fcfsRoot_","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"suffix_","type":"string"}],"name":"setSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTransfersEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"suffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint64","name":"quantity","type":"uint64"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010004876c73a8db2aee61bc973cf71787dabe3b7cd53bb018fc23e98757f7b800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0003000000000002000900000000000200020000000103550000006004100270000003db0040019d0000008003000039000000400030043f0000000100200190000000210000c13d000003db04400197000000040040008c0000091c0000413d000000000201043b000000e002200270000003f50020009c000000550000213d000004130020009c000000680000213d000004220020009c000001360000a13d000004230020009c000001af0000213d000004270020009c0000033b0000613d000004280020009c000003620000613d000004290020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000001201000039000005bb0000013d0000000001000416000000000001004b0000091c0000c13d0000000701000039000000800010043f000003dc01000041000000a00010043f0000010001000039000000400010043f0000000301000039000000c00010043f000003dd02000041000000e00020043f0000000202000039000000000302041a000000010430019000000001033002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000054004b0000004f0000c13d000000200030008c000000430000413d000000000020043f000003de040000410000001f033000390000000503300270000003df0330009a000000000004041b0000000104400039000000000034004b0000003f0000413d000003e003000041000000000032041b000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000820000613d0000046801000041000000000010043f0000002201000039000000040010043f000004690100004100000f6800010430000003f60020009c000000990000213d000004050020009c0000015d0000a13d000004060020009c0000028d0000213d0000040a0020009c000003bb0000613d0000040b0020009c000003da0000613d0000040c0020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000009601000039000000800010043f000004300100004100000f670001042e000004140020009c0000016e0000a13d000004150020009c0000029e0000213d000004190020009c000004b30000613d0000041a0020009c000004b80000613d0000041b0020009c0000091c0000c13d000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000401100370000000000101043b0f660efd0000040f000003e401100197000000400200043d0000000000120435000003db0020009c000003db02008041000000400120021000000436011001c700000f670001042e000000200020008c0000008d0000413d000000000010043f000003e1030000410000001f022000390000000502200270000003e20220009a000000000003041b0000000103300039000000000023004b000000890000413d000003e302000041000000000021041b0000000101000039000000000010041b0000000001000411000000000001004b000000b90000c13d000003f301000041000001000010043f000001040000043f000003f40100004100000f6800010430000003f70020009c000001860000a13d000003f80020009c000002a90000213d000003fc0020009c000004bd0000613d000003fd0020009c000004d80000613d000003fe0020009c0000091c0000c13d000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000401100370000000000601043b000003e40060009c0000091c0000213d0000000801000039000000000201041a000003e4032001970000000005000411000000000053004b0000072b0000c13d000000000006004b000007570000c13d000003f301000041000000800010043f000000840000043f000004330100004100000f6800010430000003e4061001970000000801000039000000000201041a000003e503200197000000000363019f000000000031041b0000000001000414000003e405200197000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000303000039000003e704000041000800000006001d0f660f5c0000040f00000001002001900000091c0000613d00000009010000390000000102000039000000000021041b000003e8010000410000000a02000039000000000012041b0000000b01000039000000000001041b0000000c01000039000000000001041b0000000d01000039000000000001041b0000000e01000039000000000201041a000003e902200197000003ea022001c7000000000021041b0000001102000039000000000302041a0000047701300197000000000012041b000000000100041a000900000001001d0000000801000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000201041a000003ec0220009a000000000021041b000003ed0100004100000000001004430000000001000414000003db0010009c000003db01008041000000c001100210000003ee011001c70000800b020000390f660f610000040f00000001002001900000091e0000613d000000000101043b000700000001001d0000000901000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d0000000702000029000000a0022002100000000806000029000000000262019f000000000101043b000000000021041b0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef04000041000000000500001900000009070000290f660f5c0000040f00000001002001900000091c0000613d0000000901000029000701900010003d00000009070000290000000107700039000000070070006c0000074d0000613d0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef0400004100000000050000190000000806000029000900000007001d0f660f5c0000040f0000000100200190000001230000c13d0000091c0000013d0000042a0020009c000002b40000a13d0000042b0020009c000004df0000613d0000042c0020009c0000051e0000613d0000042d0020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000004f0000c13d000000800010043f000000000004004b000007150000613d000000000030043f000000000001004b00000000020000190000071a0000613d000003de030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001550000413d0000071a0000013d0000040d0020009c000002cc0000a13d0000040e0020009c000005270000613d0000040f0020009c0000052c0000613d000004100020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000000801000039000000000101041a000003e401100197000000800010043f000004300100004100000f670001042e0000041c0020009c000002ef0000a13d0000041d0020009c0000056b0000613d0000041e0020009c0000058d0000613d0000041f0020009c0000091c0000c13d00000000010400190f660a930000040f000900000001001d000800000002001d000700000003001d000000400100043d000600000001001d0f660a610000040f000000060400002900000000000404350000000901000029000000080200002900000007030000290f660bc10000040f000000000100001900000f670001042e000003ff0020009c000003090000a13d000004000020009c000005940000613d000004010020009c000005b70000613d000004020020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000000801000039000000000101041a000003e4011001970000000002000411000000000021004b000007100000c13d00000437010000410000000000100443000000000100041000000004001004430000000001000414000003db0010009c000003db01008041000000c00110021000000438011001c70000800a020000390f660f610000040f00000001002001900000091e0000613d000000000301043b00000000010004140000000002000411000000040020008c0000070e0000613d000003db0010009c000003db01008041000000c001100210000000000003004b0000079b0000c13d0000079f0000013d000004240020009c000005bf0000613d000004250020009c000005dd0000613d000004260020009c0000091c0000c13d000000640040008c0000091c0000413d0000000402100370000000000202043b000800000002001d000003e40020009c0000091c0000213d0000002402100370000000000202043b000004420020009c0000091c0000213d0000004403100370000000000303043b000004420030009c0000091c0000213d0000002305300039000000000045004b0000091c0000813d0000000405300039000000000551034f000000000605043b000004420060009c0000097b0000213d00000005056002100000003f075000390000045607700197000004520070009c0000097b0000213d0000008007700039000000400070043f000000800060043f00000024033000390000000005350019000000000045004b0000091c0000213d000000000006004b000001e20000613d0000008004000039000000000631034f000000000606043b000000200440003900000000006404350000002003300039000000000053004b000001db0000413d0000001101000039000000000101041a000000ff0110018f000000030010008c000007300000213d000000010010008c000008890000c13d000704420020019b000000000100041a000000010110008a000000070010002a000008550000413d0000000702100029000000400100043d000007d00020008c0000051c0000213d0000001202000039000000000202041a000600000002001d00000014020000390000000002210436000000000300041100000060033002100000000000320435000004570010009c0000097b0000213d0000004003100039000000400030043f000003db0020009c000003db0200804100000040022002100000000001010433000003db0010009c000003db010080410000006001100210000000000121019f0000000002000414000003db0020009c000003db02008041000000c002200210000000000112019f000003e6011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000800200043d000000000002004b000002300000613d0000000003000019000900000003001d0000000502300210000000a0022000390000000002020433000000000021004b0000021f0000813d000000000010043f000000200020043f0000000001000414000002220000013d000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b00000009030000290000000103300039000000800200043d000000000023004b000002150000413d000000060010006c000009f80000c13d0000000b01000039000000000101041a000000070010002a000008550000413d0000000701100029000900000001001d000000960010008c000009f50000213d0000000001000411000003e401100197000600000001001d000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a000000c001100270000400000001001d0000000f0110018f0000000701100029000500000001001d000004420010009c000008550000213d0000000e01000039000000000101041a000000ff0110018f000000050010006b0000094f0000213d0000000a01000039000000000201041a00000007012000b9000000000002004b0000025f0000613d00000000032100d9000000070030006c000008550000c13d000000070000006b0000096c0000613d00000007031000fa000000000023004b00000a5b0000c13d0000000002000416000000000012004b00000a5e0000c13d0000000b010000390000000902000029000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d00000004020000290000045f0220019700000005030000290000000f0330018f000000000223019f000000c002200210000000000101043b000000000301041a0000045a03300197000000000223019f000000000021041b000000000100041100000007020000290f660d9d0000040f000000400100043d00000007020000290000000000210435000003db0010009c000003db010080410000004001100210000000000200041400000a500000013d000004070020009c000005e80000613d000004080020009c000006020000613d000004090020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000001101000039000000000101041a0000ff00001001900000000001000039000000010100c039000000800010043f000004300100004100000f670001042e000004160020009c000006470000613d000004170020009c000006560000613d000004180020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000000b01000039000005bb0000013d000003f90020009c0000066b0000613d000003fa0020009c000006840000613d000003fb0020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000000d01000039000005bb0000013d0000042e0020009c000006a30000613d0000042f0020009c0000091c0000c13d000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000401100370000000000201043b00000472002001980000091c0000c13d00000001010000390000047302200197000004740020009c000007450000613d000004750020009c000007450000613d000004760020009c000007450000613d000000800000043f000004300100004100000f670001042e000004110020009c000006aa0000613d000004120020009c0000091c0000c13d0000000001000416000000000001004b0000091c0000c13d0000000f03000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000004f0000c13d000000800010043f000000000004004b000007150000613d000000000030043f000000000001004b00000000020000190000071a0000613d00000446030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002e70000413d0000071a0000013d000004200020009c000006e90000613d000004210020009c0000091c0000c13d000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b0000091c0000c13d0f660f350000040f0000001101000039000000000201041a0000047802200197000000090000006b000001000220c1bf000000000021041b000000000100001900000f670001042e000004030020009c000006ee0000613d000004040020009c0000091c0000c13d000000440040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000402100370000000000302043b000004420030009c0000091c0000213d0000002302300039000000000042004b0000091c0000813d0000000402300039000000000521034f000000000505043b000500000005001d000004420050009c0000091c0000213d000400240030003d000000050300002900000005033002100000000403300029000000000043004b0000091c0000213d0000002403100370000000000303043b000300000003001d0000000803000039000000000303041a000003e4043001970000000003000411000000000034004b000007480000c13d0000000503000029000000640030008c000007bc0000a13d0000044d01000041000000800010043f0000002001000039000000840010043f0000001301000039000000a40010043f0000044f01000041000000c40010043f000004500100004100000f6800010430000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d00000080020000390000000401100370000000000301043b000000000003004b000007a90000613d000000000100041a000000000031004b000007a90000a13d000900000003001d000000000030043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a0000043b00100198000007a80000c13d0000000901000029000000000010043f0000000601000039000000200010043f000000400200003900000000010000190f660f470000040f000000000101041a0000007a0000013d000000440040008c0000091c0000413d0000000402100370000000000202043b000800000002001d000003e40020009c0000091c0000213d00000080020000390000002401100370000000000301043b000000000003004b0000073b0000613d000000000100041a000000000031004b0000073b0000a13d000700000003001d000000000030043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a0000043b00100198000007dd0000c13d000000000001004b000003980000c13d000900070000002d0000000901000029000000010110008a000900000001001d000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a000000000001004b000003850000613d000903e40010019b0000000002000411000000090020006c000008670000c13d0000000701000029000000000010043f0000000601000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d0000000802000029000003e406200197000000000101043b000000000201041a000003e502200197000000000262019f000000000021041b0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d0200003900000004030000390000046504000041000000090500002900000007070000290000070b0000013d0000000001000416000000000001004b0000091c0000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000004f0000c13d000000800010043f000000000004004b000007150000613d000000000030043f000000000001004b00000000020000190000071a0000613d000003e1030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000003d20000413d0000071a0000013d000000640040008c0000091c0000413d0000000402100370000000000202043b000800000002001d000003e40020009c0000091c0000213d0000002402100370000000000202043b000004420020009c0000091c0000213d0000004403100370000000000303043b000004420030009c0000091c0000213d0000002305300039000000000045004b0000091c0000813d0000000405300039000000000551034f000000000605043b000004420060009c0000097b0000213d00000005056002100000003f075000390000045607700197000004520070009c0000097b0000213d0000008007700039000000400070043f000000800060043f00000024033000390000000005350019000000000045004b0000091c0000213d000000000006004b000004070000613d0000008004000039000000000631034f000000000606043b000000200440003900000000006404350000002003300039000000000053004b000004000000413d0000001101000039000000000101041a000000ff0110018f000000030010008c000007300000213d000000010010008c000008890000c13d000704420020019b000000000100041a000000010110008a000000070010002a000008550000413d0000000702100029000000400100043d000007d00020008c0000051c0000213d0000001302000039000000000202041a000600000002001d00000014020000390000000002210436000000000300041100000060033002100000000000320435000004570010009c0000097b0000213d0000004003100039000000400030043f000003db0020009c000003db0200804100000040022002100000000001010433000003db0010009c000003db010080410000006001100210000000000121019f0000000002000414000003db0020009c000003db02008041000000c002200210000000000112019f000003e6011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000800200043d000000000002004b000004550000613d0000000003000019000900000003001d0000000502300210000000a0022000390000000002020433000000000021004b000004440000813d000000000010043f000000200020043f0000000001000414000004470000013d000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b00000009030000290000000103300039000000800200043d000000000023004b0000043a0000413d000000060010006c000009f80000c13d0000000c01000039000000000101041a000000070010002a000008550000413d0000000701100029000900000001001d000004e20010008c000009f50000213d0000000001000411000003e401100197000600000001001d000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a000400000001001d000000c4011002700000000f0110018f0000000701100029000500000001001d000004420010009c000008550000213d0000000e01000039000000000101041a0000000801100270000000ff0110018f000000050010006b0000094f0000213d0000000a01000039000000000201041a00000007012000b9000000000002004b000004850000613d00000000032100d9000000070030006c000008550000c13d000000070000006b0000096c0000613d00000007031000fa000000000023004b00000a5b0000c13d0000000002000416000000000012004b00000a5e0000c13d0000000c010000390000000902000029000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000040200002900000458022001970000000503000029000000c4033002100000045903300197000000000223019f000000000101043b000000000301041a0000045a03300197000000000232019f000000000021041b000000080100002900000007020000290f660d9d0000040f000000400100043d00000007020000290000000000210435000003db0010009c000003db010080410000004001100210000000000200041400000a500000013d0000000001000416000000000001004b0000091c0000c13d0000000c01000039000005bb0000013d0000000001000416000000000001004b0000091c0000c13d0000001301000039000005bb0000013d000000440040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000402100370000000000202043b000003e40020009c0000091c0000213d0000002401100370000000000101043b000900000001001d000003e40010009c0000091c0000213d000000000020043f0000000701000039000000200010043f000000400200003900000000010000190f660f470000040f00000009020000290f660aa50000040f000000000101041a000000ff001001900000000001000039000000010100c0390000007b0000013d0000000001000416000000000001004b0000091c0000c13d000000c801000039000000800010043f000004300100004100000f670001042e000000640040008c0000091c0000413d0000000402100370000000000202043b000800000002001d000003e40020009c0000091c0000213d0000002402100370000000000202043b000004420020009c0000091c0000213d0000004403100370000000000303043b000004420030009c0000091c0000213d0000002305300039000000000045004b0000091c0000813d0000000405300039000000000551034f000000000605043b0000046a0060009c0000097b0000813d00000005056002100000003f075000390000045607700197000004520070009c0000097b0000213d0000008007700039000000400070043f000000800060043f00000024033000390000000005350019000000000045004b0000091c0000213d000000000006004b0000050c0000613d0000008004000039000000000631034f000000000606043b000000200440003900000000006404350000002003300039000000000053004b000005050000413d0000001101000039000000000101041a000000ff0110018f000000040010008c000007300000813d000000020010008c000008890000c13d000704420020019b000000000100041a000000010110008a000000070010002a000008550000413d0000000702100029000000400100043d000007d00020008c000009720000a13d0000046302000041000007510000013d0000000001000416000000000001004b0000091c0000c13d0000001101000039000000000101041a000000ff0110018f000000030010008c000007450000a13d000007300000013d0000000001000416000000000001004b0000091c0000c13d0000001401000039000005bb0000013d000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000402100370000000000302043b000004420030009c0000091c0000213d0000002302300039000000000042004b0000091c0000813d0000000406300039000000000261034f000000000202043b000004420020009c0000091c0000213d00000024053000390000000003520019000000000043004b0000091c0000213d0000000803000039000000000303041a000003e4043001970000000003000411000000000034004b000007480000c13d0000000f03000039000000000703041a000000010070019000000001047002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000787013f00000001007001900000004f0000c13d000000200040008c000005630000413d000000000030043f0000001f0720003900000005077002700000045c0770009a000000200020008c00000446070040410000001f0440003900000005044002700000045c0440009a000000000047004b000005630000813d000000000007041b0000000107700039000000000047004b0000055f0000413d0000001f0020008c0000085b0000a13d000000000030043f00000479062001980000088c0000c13d00000446040000410000000007000019000008a10000013d000000640040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000004402100370000000000202043b0000002403100370000000000303043b0000000401100370000000000101043b0000000804000039000000000404041a000003e4054001970000000004000411000000000045004b000007360000c13d0000001204000039000000000504041a000000000051004b000005810000613d000000000014041b0000001301000039000000000401041a000000000043004b000005860000613d000000000031041b0000001401000039000000000301041a000000000032004b0000070e0000613d000000000021041b000000000100001900000f670001042e0000000001000416000000000001004b0000091c0000c13d000007d001000039000000800010043f000004300100004100000f670001042e000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000401100370000000000201043b000000000002004b000007b10000613d000000000100041a000000000021004b000007b10000a13d000900000002001d000000000020043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a0000043b00100198000007b00000c13d00000009010000290000043c0010009c000007e00000413d00000040020000390000043c0110012a000007e80000013d0000000001000416000000000001004b0000091c0000c13d0000000a01000039000000000101041a000000800010043f000004300100004100000f670001042e000000440040008c0000091c0000413d0000000402100370000000000202043b000900000002001d000003e40020009c0000091c0000213d0000002401100370000000000101043b000800000001001d000004420010009c0000091c0000213d0000001101000039000000000101041a000000ff0110018f000000030010008c000007300000213d000007b80000c13d000000000100041a000000010110008a0000000802000029000000000021001a000008550000413d0000000001210019000007d10010008c0000083d0000413d0000046301000041000000800010043f0000044b0100004100000f68000104300000000001000416000000000001004b0000091c0000c13d0000000101000039000000000101041a0000047a01100167000000000200041a0000000001120019000000800010043f000004300100004100000f670001042e000000440040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000402100370000000000202043b000900000002001d000003e40020009c0000091c0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b0000091c0000c13d0000001101000039000000000101041a0000ff0000100190000007630000c13d0000045501000041000000800010043f0000044b0100004100000f6800010430000000840040008c0000091c0000413d0000000402100370000000000502043b000003e40050009c0000091c0000213d0000002402100370000000000202043b000003e40020009c0000091c0000213d0000006403100370000000000603043b000004420060009c0000091c0000213d0000002303600039000000000043004b0000091c0000813d0000000407600039000000000371034f000000000303043b000004420030009c0000097b0000213d0000001f0930003900000479099001970000003f099000390000047909900197000004520090009c0000097b0000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b0000091c0000213d0000002004700039000000000641034f00000479073001980000001f0830018f000000a004700039000006310000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b0000062d0000c13d000000000008004b0000063e0000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b000000800400003900000000010500190f660bc10000040f000000000100001900000f670001042e000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000401100370000000000101043b000003e40010009c0000091c0000213d000000000001004b0000073d0000c13d0000045e01000041000000800010043f0000044b0100004100000f68000104300000000001000416000000000001004b0000091c0000c13d0000000801000039000000000201041a000003e4032001970000000005000411000000000053004b0000072b0000c13d000003e502200197000000000021041b0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000303000039000003e70400004100000000060000190000070b0000013d000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000802000039000000000202041a000003e4032001970000000002000411000000000023004b000007100000c13d0000000401100370000000000101043b0000000a02000039000000000012041b000000800010043f0000000001000414000003db0010009c000003db01008041000000c00110021000000434011001c70000800d02000039000000010300003900000435040000410000070b0000013d0000000001000416000000000001004b0000091c0000c13d0000001003000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000004f0000c13d000000800010043f000000000004004b000007150000613d000000000030043f000000000001004b00000000020000190000071a0000613d00000431030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000069b0000413d0000071a0000013d0000000001000416000000000001004b0000091c0000c13d000004e201000039000000800010043f000004300100004100000f670001042e000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000402100370000000000302043b000004420030009c0000091c0000213d0000002302300039000000000042004b0000091c0000813d0000000406300039000000000261034f000000000202043b000004420020009c0000091c0000213d00000024053000390000000003520019000000000043004b0000091c0000213d0000000803000039000000000303041a000003e4043001970000000003000411000000000034004b000007480000c13d0000001003000039000000000703041a000000010070019000000001047002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000787013f00000001007001900000004f0000c13d000000200040008c000006e10000413d000000000030043f0000001f0720003900000005077002700000045d0770009a000000200020008c00000431070040410000001f0440003900000005044002700000045d0440009a000000000047004b000006e10000813d000000000007041b0000000107700039000000000047004b000006dd0000413d0000001f0020008c0000085b0000a13d000000000030043f0000047906200198000008970000c13d00000431040000410000000007000019000008a10000013d00000000010400190f660a930000040f0f660ab50000040f000000000100001900000f670001042e000000240040008c0000091c0000413d0000000002000416000000000002004b0000091c0000c13d0000000401100370000000000101043b000000030010008c0000091c0000213d0000000802000039000000000202041a000003e4032001970000000002000411000000000023004b000007100000c13d0000001102000039000000000302041a0000047703300197000000000313019f000000000032041b000000800010043f0000000001000414000003db0010009c000003db01008041000000c00110021000000434011001c70000800d02000039000000010300003900000451040000410f660f5c0000040f00000001002001900000091c0000613d000000000100001900000f670001042e0000043201000041000000800010043f000000840020043f000004330100004100000f68000104300000047702200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390f660a6c0000040f000000400100043d000900000001001d00000080020000390f660a7e0000040f00000009020000290000000001210049000003db0010009c000003db010080410000006001100210000003db0020009c000003db020080410000004002200210000000000121019f00000f670001042e0000043201000041000000800010043f000000840050043f000004330100004100000f68000104300000046801000041000000000010043f0000002101000039000000040010043f000004690100004100000f68000104300000043201000041000000800010043f000000840040043f000004330100004100000f68000104300000046601000041000007aa0000013d000000000010043f0000000501000039000000200010043f000000400200003900000000010000190f660f470000040f000000000101041a0000044201100197000000800010043f000004300100004100000f670001042e0000043201000041000000800010043f000000840030043f000004330100004100000f6800010430000000080000006b000007940000c13d000000400100043d000003f1020000410000000000210435000003db0010009c000003db010080410000004001100210000003f2011001c700000f6800010430000003e502200197000000000262019f000000000021041b0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000303000039000003e7040000410000070b0000013d0000000001000411000000000010043f0000000701000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000201041a00000477022001970000000803000029000000000232019f000000000021041b000000400100043d0000000000310435000003db0010009c000003db0100804100000040011002100000000002000414000003db0020009c000003db02008041000000c002200210000000000112019f00000453011001c70000800d0200003900000003030000390000045404000041000000000500041100000009060000290000070b0000013d0000000701000029000000000010041b000000200100003900000100001004430000012000000443000003f00100004100000f670001042e000003e6011001c70000800902000039000000000400041100000000050000190f660f5c0000040f0000006001100270000103db0010019d00000001002001900000070e0000c13d0000043901000041000000000010043f0000043a0100004100000f6800010430000000400200043d00000467010000410000000000120435000003db0020009c000003db020080410000004001200210000003f2011001c700000f6800010430000000400300043d00000447010000410000000000130435000003db0030009c000003db030080410000004001300210000003f2011001c700000f68000104300000046001000041000000800010043f0000044b0100004100000f6800010430000000000003004b0000070e0000613d0000000303000029000000010030008c00000000040000190000044804006041000200000004001d000000000003004b000008b20000c13d0000002002200039000000000121034f000000000101043b000003e40010009c0000091c0000213d000000000001004b000009810000c13d000000800100003900000044021000390000044c03000041000000000032043500000024021000390000001e0300003900000000003204350000044d020000410000000000210435000000040210003900000020030000390000000000320435000003db0010009c000003db0100804100000040011002100000044e011001c700000f6800010430000000400200043d0000046601000041000007aa0000013d0000043e0010009c0000043d0110212a000000000200003900000020020020390000043f0010009c00000010022081bf00000440011081970000043f0110812a000004410010009c00000008022080390000044201108197000004410110812a000027100010008c0000000402208039000003db01108197000027100110811a000000640010008c00000002022080390000ffff0110818f000000640110811a000000090010008c000000010220203900000479052001970000005f015000390000047906100197000000400300043d0000000001360019000000000061004b00000000060000390000000106004039000004420010009c0000097b0000213d00000001006001900000097b0000c13d000000400010043f00000001012000390000000001130436000000200650003900000479056001980000001f0460018f000008110000613d0000000005510019000000000600003100000002066003670000000007010019000000006806043c0000000007870436000000000057004b0000080d0000c13d000000000004004b000000000223001900000021022000390000000906000029000000090060008c0000000a4660011a0000000304400210000000010220008a00000000050204330000044305500197000004440440021f0000044504400197000000000454019f0000000000420435000008150000213d0000000f06000039000000000506041a000000010750019000000001025002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000445013f00000001004001900000004f0000c13d000000400400043d00000000090400190000002004400039000000000007004b0000091f0000613d000000000060043f000000000002004b000009210000613d000004460500004100000000060000190000000007460019000000000805041a000000000087043500000001055000390000002006600039000000000026004b000008350000413d000009210000013d0000000001000411000003e401100197000700000001001d000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a000500000001001d000000cc011002700000000f0110018f0000000801100029000600000001001d000004420010009c000009490000a13d0000046801000041000000000010043f0000001101000039000000040010043f000004690100004100000f6800010430000000000002004b0000000004000019000008610000613d0000002004600039000000000141034f000000000401043b00000003012002100000047a0110027f0000047a01100167000000000414016f0000000101200210000008ae0000013d0000000901000029000000000010043f0000000701000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b0000000002000411000003e402200197000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a000000ff001001900000039c0000c13d000000400100043d0000046402000041000007510000013d000000400100043d0000046002000041000007510000013d000004460400004100000000070000190000000008570019000000000881034f000000000808043b000000000084041b00000001044000390000002007700039000000000067004b0000088e0000413d000008a10000013d000004310400004100000000070000190000000008570019000000000881034f000000000808043b000000000084041b00000001044000390000002007700039000000000067004b000008990000413d000000000026004b000008ac0000813d0000000306200210000000f80660018f0000047a0660027f0000047a066001670000000005570019000000000151034f000000000101043b000000000161016f000000000014041b00000001010000390000000104200210000000000114019f000000000013041b000000000100001900000f670001042e000000030100002900010449001000d5000600000000001d000008bd0000013d0000000701000029000000000010041b00000006020000290000000102200039000600000002001d000000050020006c0000070e0000813d0000000601000029000000050110021000000004011000290000000201100367000000000101043b000800000001001d000003e40010009c0000091c0000213d0000000801000029000000000001004b000009fb0000613d000000000200041a000900000002001d000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000201041a0000000102200029000000000021041b000003ed0100004100000000001004430000000001000414000003db0010009c000003db01008041000000c001100210000003ee011001c70000800b020000390f660f610000040f00000001002001900000091e0000613d000000000101043b000700000001001d0000000901000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d0000000702000029000000a00220021000000002022001af0000000806000029000000000262019f000000000101043b000000000021041b0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef04000041000000000500001900000009070000290f660f5c0000040f00000001002001900000091c0000613d0000000902000029000700030020002d00000009070000290000000107700039000000070070006c000008b60000613d0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef0400004100000000050000190000000806000029000900000007001d0f660f5c0000040f00000001002001900000090a0000c13d000000000100001900000f6800010430000000000001042f0000047705500197000000000054043500000000024200190000000003030433000000000003004b0000092d0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b000009260000413d000000000123001900000000000104350000001004000039000000000304041a000000010530019000000001023002700000007f0220618f0000001f0020008c00000000060000390000000106002039000000000663013f00000001006001900000004f0000c13d000000000005004b000009520000613d000000000040043f000000000002004b000009540000613d000004310300004100000000040000190000000005140019000000000603041a000000000065043500000001033000390000002004400039000000000024004b000009410000413d000009540000013d0000000e01000039000000000101041a0000001801100270000000ff0110018f000000060010006b000009610000a13d000000400100043d0000047002000041000007510000013d00000477033001970000000000310435000900000009001d00000000019100490000000002120019000000200120008a000000000019043500000000010900190f660a6c0000040f000000400100043d000800000001001d00000009020000290f660a7e0000040f0000000802000029000007220000013d0000000a01000039000000000201041a000000080400002900000000014200a9000000000002004b0000096a0000613d00000000032100d9000000000043004b000008550000c13d000000000004004b000009850000c13d0000046801000041000000000010043f0000001201000039000000040010043f000004690100004100000f68000104300000001402000039000000000302041a000600000003001d0000000002210436000000000300041100000060033002100000000000320435000004570010009c000009b70000a13d0000046801000041000000000010043f0000004101000039000000040010043f000004690100004100000f68000104300000044a01000041000000800010043f0000044b0100004100000f680001043000000008031000fa000000000023004b00000a5b0000c13d0000000002000416000000000012004b00000a5e0000c13d0000000701000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000050200002900000461022001970000000603000029000000cc033002100000046203300197000000000223019f000000000101043b000000000301041a0000045a03300197000000000232019f000000000021041b000000090100002900000008020000290f660d9d0000040f000000400100043d00000008020000290000000000210435000003db0010009c000003db0100804100000040011002100000000002000414000003db0020009c000003db02008041000000c002200210000000000112019f00000453011001c70000800d0200003900000002030000390000045b0400004100000009050000290000070b0000013d0000004003100039000000400030043f000003db0020009c000003db0200804100000040022002100000000001010433000003db0010009c000003db010080410000006001100210000000000121019f0000000002000414000003db0020009c000003db02008041000000c002200210000000000112019f000003e6011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000800200043d000000000002004b000009eb0000613d0000000003000019000900000003001d0000000502300210000000a0022000390000000002020433000000000021004b000009da0000813d000000000010043f000000200020043f0000000001000414000009dd0000013d000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b00000009030000290000000103300039000000800200043d000000000023004b000009d00000413d000000060010006c000009f80000c13d0000000d01000039000000000101041a000000070010002a000008550000413d0000000701100029000900000001001d000000c90010008c000009fd0000413d000000400100043d0000047102000041000007510000013d000000400100043d0000046b02000041000007510000013d000000400100043d000007cd0000013d0000000001000411000003e401100197000600000001001d000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d000000000101043b000000000101041a000400000001001d000000c8011002700000000f0110018f0000000701100029000500000001001d000004420010009c000008550000213d0000000e01000039000000000101041a0000001001100270000000ff0110018f000000050010006b0000094f0000213d0000000a01000039000000000201041a00000007012000b9000000000002004b00000a230000613d00000000032100d9000000070030006c000008550000c13d000000070000006b0000096c0000613d00000007031000fa000000000023004b00000a5b0000c13d0000000002000416000000000012004b00000a5e0000c13d0000000d010000390000000902000029000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f00000001002001900000091c0000613d00000004020000290000046e022001970000000503000029000000c8033002100000046f03300197000000000223019f000000000101043b000000000301041a0000045a03300197000000000232019f000000000021041b000000080100002900000007020000290f660d9d0000040f000000400100043d00000007020000290000000000210435000003db0010009c000003db0100804100000040011002100000000002000414000003db0020009c000003db02008041000000c002200210000000000112019f0000000802000029000003e40520019700000453011001c70000800d0200003900000002030000390000045b040000410000070b0000013d000000400100043d0000046c02000041000007510000013d000000400100043d0000046d02000041000007510000013d0000047b0010009c00000a660000813d0000002001100039000000400010043f000000000001042d0000046801000041000000000010043f0000004101000039000000040010043f000004690100004100000f68000104300000001f0220003900000479022001970000000001120019000000000021004b00000000020000390000000102004039000004420010009c00000a780000213d000000010020019000000a780000c13d000000400010043f000000000001042d0000046801000041000000000010043f0000004101000039000000040010043f000004690100004100000f680001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000a8d0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000a860000413d000000000312001900000000000304350000001f0220003900000479022001970000000001120019000000000001042d0000047c0010009c00000aa30000213d000000630010008c00000aa30000a13d00000002030003670000000401300370000000000101043b000003e40010009c00000aa30000213d0000002402300370000000000202043b000003e40020009c00000aa30000213d0000004403300370000000000303043b000000000001042d000000000100001900000f6800010430000003e402200197000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000ab30000613d000000000101043b000000000001042d000000000100001900000f68000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b00000bac0000613d000000000100041a000000060010006c00000bac0000a13d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b000000000101041a0000043b0010019800000bac0000c13d000000000001004b00000ae50000c13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b000000000101041a000000000001004b000000070200002900000ad20000613d0000000502000029000003e402200197000400000001001d000003e401100197000500000002001d000000000021004b00000baf0000c13d0000000601000029000000000010043f0000000601000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000301043b000000000403041a0000000001000411000003e4011001970000000502000029000000000021004b00000b250000613d000000000041004b00000b250000613d000700000001001d000100000004001d000200000003001d000000000020043f0000000701000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b000000000101041a000000ff0010019000000005020000290000000203000029000000010400002900000bb90000613d0000000301000029000703e40010019c00000bb20000613d000000000002004b00000b2e0000613d0000001101000039000000000101041a0000ff000010019000000bb50000613d000000000004004b00000b310000613d000000000003041b000000000020043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000701000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b000000000201041a0000000102200039000000000021041b000003ed0100004100000000001004430000000001000414000003db0010009c000003db01008041000000c001100210000003ee011001c70000800b020000390f660f610000040f000000010020019000000bb80000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d0000000302000029000000a00220021000000007022001af00000448022001c7000000000101043b000000000021041b0000000401000029000004480010019800000b9b0000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b000000000101041a000000000001004b00000b9b0000c13d000000000100041a000000030010006b00000b9b0000613d0000000301000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000baa0000613d000000000101043b0000000402000029000000000021041b0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef040000410000000505000029000000070600002900000006070000290f660f5c0000040f000000010020019000000baa0000613d000000000001042d000000000100001900000f6800010430000000400100043d000004660200004100000bbb0000013d000000400100043d0000047d0200004100000bbb0000013d000000400100043d0000047f0200004100000bbb0000013d000000400100043d000004550200004100000bbb0000013d000000000001042f000000400100043d0000047e020000410000000000210435000003db0010009c000003db010080410000004001100210000003f2011001c700000f6800010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b00000d480000613d000000000100041a000000070010006c00000d480000a13d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b000000000101041a0000043b0010019800000d480000c13d000000000001004b00000bf20000c13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b000000000101041a000000000001004b000000080200002900000bdf0000613d0000000602000029000003e402200197000300000001001d000003e401100197000800000002001d000000000021004b00000d4c0000c13d0000000701000029000000000010043f0000000601000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000301043b000000000403041a0000000001000411000003e402100197000400000002001d000000080020006c00000c310000613d000000040040006b00000c310000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b000000000101041a000000ff001001900000000603000029000000020400002900000d550000613d0000000501000029000003e40210019800000d4f0000613d000000080000006b00000c3a0000613d0000001101000039000000000101041a0000ff000010019000000d520000613d000600000002001d000000000004004b00000c3e0000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b000000000201041a0000000102200039000000000021041b000003ed0100004100000000001004430000000001000414000003db0010009c000003db01008041000000c001100210000003ee011001c70000800b020000390f660f610000040f000000010020019000000d4b0000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d0000000202000029000000a0022002100000000606000029000000000262019f00000448022001c7000000000101043b000000000021041b0000000301000029000004480010019800000cac0000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b000000000101041a000000000001004b000000060600002900000cac0000c13d000000000100041a000000020010006b00000cac0000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000d460000613d000000000101043b0000000302000029000000000021041b00000006060000290000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef04000041000000080500002900000007070000290f660f5c0000040f000000010020019000000d460000613d00000480010000410000000000100443000000050100002900000004001004430000000001000414000003db0010009c000003db01008041000000c00110021000000438011001c700008002020000390f660f610000040f000000010020019000000d4b0000613d000000000101043b000000000001004b00000d450000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000008020000290000000000210435000004810100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b00000ce80000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00000ce10000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c00000cf60000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000d2d0000013d000700000008001d000500000007001d0000001f011000390000047901100197000000a401100039000003db0010009c000003db010080410000006001100210000003db00b0009c000003db0300004100000000030b40190000004003300210000000000131019f000003db0040009c000003db04008041000000c003400210000000000113019f00080000000b001d0f660f5c0000040f000000080b0000290000006003100270000003db03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000d190000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000d150000c13d000000000006004b00000d260000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000005000415000000090550008a0000000505500210000000010020019000000d580000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000004420010009c00000d8e0000213d000000010020019000000d8e0000c13d000000400010043f000000200030008c00000d460000413d00000000010b0433000004720010019800000d460000c13d0000000502500270000000000201001f0000000002000415000000000228004900000000020000020000047301100197000004810010009c00000d860000c13d000000000001042d000000000100001900000f6800010430000000400100043d000004660200004100000d880000013d000000000001042f000000400100043d0000047d0200004100000d880000013d000000400100043d0000047f0200004100000d880000013d000000400100043d000004550200004100000d880000013d000000400100043d0000047e0200004100000d880000013d000000000003004b00000d5c0000c13d000000600200003900000d830000013d0000001f0230003900000482022001970000003f022000390000048304200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000004420040009c00000d8e0000213d000000010050019000000d8e0000c13d000000400040043f0000001f0430018f00000000063204360000048405300198000500000006001d000000000356001900000d760000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00000d720000c13d000000000004004b00000d830000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000d940000c13d000000400100043d00000485020000410000000000210435000003db0010009c000003db010080410000004001100210000003f2011001c700000f68000104300000046801000041000000000010043f0000004101000039000000040010043f000004690100004100000f68000104300000000502000029000003db0020009c000003db020080410000004002200210000003db0010009c000003db010080410000006001100210000000000121019f00000f6800010430000c000000000002000000400300043d000700000003001d0000047b0030009c00000ef00000813d00000007040000290000002003400039000400000003001d000000400030043f0000000000040435000600000002001d000000000002004b00000ef70000613d000000000200041a000a00000002001d000500000001001d000003e401100197000900000001001d000000000010043f0000000501000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000e070000613d000000060200002900000449022000d1000000000101043b000000000301041a0000000002230019000000000021041b000003ed0100004100000000001004430000000001000414000003db0010009c000003db01008041000000c001100210000003ee011001c70000800b020000390f660f610000040f000000010020019000000ef60000613d000000000101043b000800000001001d0000000a01000029000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000e070000613d0000000802000029000000a0022002100000000603000029000000010030008c00000000030000190000044803006041000000000223019f0000000906000029000000000262019f000000000101043b000000000021041b0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef0400004100000000050000190000000a070000290f660f5c0000040f000000010020019000000e070000613d0000000a02000029000800060020002d0000000a070000290000000107700039000000080070006c00000e090000613d0000000001000414000003db0010009c000003db01008041000000c001100210000003e6011001c70000800d020000390000000403000039000003ef0400004100000000050000190000000906000029000a00000007001d0f660f5c0000040f000000010020019000000df50000c13d000000000100001900000f6800010430000000090000006b00000efa0000613d0000000801000029000000000010041b00000480010000410000000000100443000000050100002900000004001004430000000001000414000003db0010009c000003db01008041000000c00110021000000438011001c700008002020000390f660f610000040f000000010020019000000ef60000613d000000000101043b000000000001004b000000040600002900000eb80000613d0000000101000039000000000800041a000000060980006a0000008007000039000004810a0000410000000002000411000003e40b200197000100000007001d000200000008001d00030000000b001d000000000089004b000000000c000039000000010c004039000000010010019000000eb50000613d000000000d000415000000400e00043d0000006401e0003900000000007104350000000000ae04350000000401e000390000000000b104350000004401e0003900000000009104350000002401e000390000000000010435000000070100002900000000010104330000008402e000390000000000120435000000a402e00039000000000001004b00000e470000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00000e400000413d0000000002210019000000000002043500000000040004140000000902000029000000040020008c00000e550000c13d00000000050004150000000c0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000e930000013d00060000000d001d00080000000c001d000a00000009001d0000001f011000390000047901100197000000a401100039000003db0010009c000003db010080410000006001100210000003db00e0009c000003db0300004100000000030e40190000004003300210000000000131019f000003db0040009c000003db04008041000000c003400210000000000113019f00050000000e001d0f660f5c0000040f000000050e0000290000006003100270000003db03300197000000200030008c00000020040000390000000004034019000000200640019000000000056e001900000e780000613d000000000701034f00000000080e0019000000007907043c0000000008980436000000000058004b00000e740000c13d0000001f0740019000000e850000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000000050004150000000b0550008a000000050550021000000001002001900000000a09000029000004810a000041000000030b000029000000080c000029000000060d00002900000eb90000613d0000000406000029000000800700003900000002080000290000001f01400039000000600210018f0000000001e20019000000000021004b00000000020000390000000102004039000004420010009c00000ef00000213d000000010020019000000ef00000c13d000000400010043f000000200030008c00000e070000413d00000000010e0433000004720010019800000e070000c13d00000001099000390000000502500270000000000201001f000000000200041500000000022d004900000000020000020000047301100197000004810010009c00000000010c001900000e280000613d000000400100043d00000485020000410000000000210435000003db0010009c000003db010080410000004001100210000003f2011001c700000f6800010430000000000100041a000000000081004b00000e070000c13d000000000001042d000000000003004b00000ebd0000c13d000000600200003900000ee40000013d0000001f0230003900000482022001970000003f022000390000048304200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000004420040009c00000ef00000213d000000010050019000000ef00000c13d000000400040043f0000001f0430018f00000000063204360000048405300198000100000006001d000000000356001900000ed70000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b00000ed30000c13d000000000004004b00000ee40000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000000010200002900000ead0000613d000003db0020009c000003db020080410000004002200210000003db0010009c000003db010080410000006001100210000000000121019f00000f68000104300000046801000041000000000010043f0000004101000039000000040010043f000004690100004100000f6800010430000000000001042f000000400100043d0000044a0200004100000eaf0000013d000000400100043d000003f10200004100000eaf0000013d0001000000000002000000000001004b00000f2d0000613d000000000200041a000000000012004b00000f2d0000a13d000100000001001d000000000010043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000f2b0000613d000000000101043b000000000101041a0000043b00100198000000010200002900000f2d0000c13d000000000001004b00000f2a0000c13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000003db0010009c000003db01008041000000c001100210000003eb011001c700008010020000390f660f610000040f000000010020019000000f2b0000613d000000000101043b000000000101041a000000000001004b000000010200002900000f170000613d000000000001042d000000000100001900000f6800010430000000400100043d00000466020000410000000000210435000003db0010009c000003db010080410000004001100210000003f2011001c700000f68000104300000000801000039000000000101041a000003e4021001970000000001000411000000000012004b00000f3c0000c13d000000000001042d000000400200043d0000043203000041000000000032043500000004032000390000000000130435000003db0020009c000003db02008041000000400120021000000469011001c700000f6800010430000000000001042f000003db0010009c000003db010080410000004001100210000003db0020009c000003db020080410000006002200210000000000112019f0000000002000414000003db0020009c000003db02008041000000c002200210000000000112019f000003e6011001c700008010020000390f660f610000040f000000010020019000000f5a0000613d000000000101043b000000000001042d000000000100001900000f680001043000000f5f002104210000000102000039000000000001042d0000000002000019000000000001042d00000f64002104230000000102000039000000000001042d0000000002000019000000000001042d00000f660000043200000f670001042e00000f680001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff55775574746572000000000000000000000000000000000000000000000000005577550000000000000000000000000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532557755747465720000000000000000000000000000000000000000000000000ec2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a55577550000000000000000000000000000000000000000000000000000000006000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000000000000000000000000000000000000000000000018838370f34000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000a0202030200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffe6ffffffffffffffe70796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000002000000000000000000000000000000400000010000000000000000002e0763000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000001e4fbdf70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000010000000000000000000000000000000000000000000000000000000000000000000000000075d5ae9e00000000000000000000000000000000000000000000000000000000c03afb5800000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000f4a0a52700000000000000000000000000000000000000000000000000000000f4a0a52800000000000000000000000000000000000000000000000000000000f7073c3a00000000000000000000000000000000000000000000000000000000fd9d5fd000000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ef43281500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000c973db0b00000000000000000000000000000000000000000000000000000000e086e5ec00000000000000000000000000000000000000000000000000000000c03afb5900000000000000000000000000000000000000000000000000000000c204642c0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bef97c870000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000097e8d38500000000000000000000000000000000000000000000000000000000a15e9c3c000000000000000000000000000000000000000000000000000000007bb23e39000000000000000000000000000000000000000000000000000000007bb23e3a0000000000000000000000000000000000000000000000000000000085cb593b000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000075d5ae9f0000000000000000000000000000000000000000000000000000000075dadb320000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000045fac1d20000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007515ab680000000000000000000000000000000000000000000000000000000045fac1d30000000000000000000000000000000000000000000000000000000054c06aee000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000026cca8a70000000000000000000000000000000000000000000000000000000026cca8a80000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000026b9ce1300000000000000000000000000000000000000000000000000000000081812fb000000000000000000000000000000000000000000000000000000001138ebad000000000000000000000000000000000000000000000000000000001138ebae0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001ca53dbe00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000a302530000000000000000000000000000000000000000000000000000000000271662f000000000000000000000000000000000000000000000000000000000271663000000000000000000000000000000000000000000000000000000000055ad42e0000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000124c34e0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000200000008000000000000000001b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672118cdaa70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000008000000000000000000200000000000000000000000000000000000020000000800000000000000000702ec30635253cae6d3600d38314e616495cf01545d34e549c49ebf6451dab3b00000000000000000000000000000000000000200000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000b12d13eb00000000000000000000000000000000000000040000001c000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000ffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000008d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802a14c4b500000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000001b562e8dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000080000000000000000043616e6e6f742061697264726f7020746f207a65726f2061646472657373000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000546f6f206d616e7920726563697069656e74730000000000000000000000000000000000000000000000000000000000000000640000008000000000000000002757d185fc153b2591e9d55b19b9e625d6c548ff923105c32ac05fd515ffaa13000000000000000000000000000000000000000000000000ffffffffffffff7f020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c317bf21fee000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffffbfffffffffffffff0f00000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff3f2c9d57c068687834f0de942a9babb9e5acab57d516d3480a3c16ee165a427372eef71ef43483d822203fd126296c5f8bfc62fd930b15bdbf4bf082a7e537fee497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198e8f4eb60400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffff09a36fd9c00000000000000000000000000000000000000000000000000000000ffffffffffff0fff000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000d05cb60900000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e4000000000000000000000000000000000000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000100000000000000000027b15500000000000000000000000000000000000000000000000000000000e47ec07400000000000000000000000000000000000000000000000000000000d2ade55600000000000000000000000000000000000000000000000000000000fffffffffffff0ff0000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000f560625a00000000000000000000000000000000000000000000000000000000873ac7e80000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ea553b34000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0d1a57ed600000000000000000000000000000000000000000000000000000000b987c73fb4ff2ff7bcf5545442a11fe64fab1a24754181644273fb7c437d3143
[ 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.