ERC-721
Overview
Max Total Supply
888 KK
Holders
769
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Katanaz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // props to chiru for 721A pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } /**/ pragma solidity ^0.8.0; contract Katanaz is ERC721A, Ownable { using Strings for uint; //Standard Variables uint256 MAX_MINTS = 1; uint256 MAX_SUPPLY = 888; uint256 public mintRate = 0.0 ether; bool public paused = true; bool public wlOnly = true; address[] private wl; constructor( ) ERC721A("Kozoku Katanaz", "KK")payable{ _mint(msg.sender, 100,"",true); } //Public Functions function publicMint(uint qty) external payable { require( totalSupply() + qty <= MAX_SUPPLY, "Not enough tokens left" ); if (msg.sender != owner()) { require(!paused); require( qty + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit" ); require(balanceOf(msg.sender) < 1, "Exceeded the limit"); require(msg.value >= mintRate * qty); if (wlOnly) { require(onWl(msg.sender), "Not On Whitelist"); } } _safeMint(msg.sender, qty); } //Metadata Functions string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); } function tokenURI(uint tokenId) public view virtual override returns (string memory) { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } //OnlyOwner Functions function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function giftMint(address recipient, uint qty) external onlyOwner { require(_totalMinted() + qty < MAX_SUPPLY, "SOLD OUT!"); _mint(recipient, qty, '', true); } function airDrop(address[] memory users) external onlyOwner { for (uint256 i; i < users.length; i++) { _mint(users[i], 1, '', true); } } function pause(bool _state) public onlyOwner() { paused = _state; } function setWL(address[] calldata _wallets) external onlyOwner { delete wl; wl = _wallets; } function wlGate(bool _wlOnly) public onlyOwner { wlOnly = _wlOnly; } function onWl(address _u) public view returns (bool) { uint i = 0; while(i < wl.length){ if(wl[i] == _u){ return true; } i++; } return false; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","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":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_u","type":"address"}],"name":"onWl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"setWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlOnly","type":"bool"}],"name":"wlGate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6001600955610378600a556000600b55600c805461ffff1916610101179055600e60808181526d25b7bd37b5ba9025b0ba30b730bd60911b60a0908152610100604052600260c0818152614b4b60f01b60e0529293620000609290620003b2565b50805162000076906003906020840190620003b2565b50506001600055506200008933620000b4565b620000ae3360646040518060200160405280600081525060016200010660201b60201c565b62000543565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005483620001285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620001e15750620001e1876001600160a01b0316620002a260201b62000ebd1760201c565b1562000261575b60405182906001600160a01b0389169060009060008051602062002329833981519152908290a460018201916200022590600090899088620002b1565b62000243576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620001e85782600054146200025b57600080fd5b62000297565b5b6040516001830192906001600160a01b0389169060009060008051602062002329833981519152908290a48082141562000262575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620002e89033908990889088906004016200048b565b602060405180830381600087803b1580156200030357600080fd5b505af192505050801562000336575060408051601f3d908101601f19168201909252620003339181019062000458565b60015b62000395573d80801562000367576040519150601f19603f3d011682016040523d82523d6000602084013e6200036c565b606091505b5080516200038d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620003c09062000506565b90600052602060002090601f016020900481019282620003e457600085556200042f565b82601f10620003ff57805160ff19168380011785556200042f565b828001600101855582156200042f579182015b828111156200042f57825182559160200191906001019062000412565b506200043d92915062000441565b5090565b5b808211156200043d576000815560010162000442565b6000602082840312156200046b57600080fd5b81516001600160e01b0319811681146200048457600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620004da5785810182015185820160a001528101620004bc565b82811115620004ed57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c908216806200051b57607f821691505b602082108114156200053d57634e487b7160e01b600052602260045260246000fd5b50919050565b611dd680620005536000396000f3fe6080604052600436106101cc5760003560e01c80635c975abb116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461051b578063eaa099e514610564578063ec33e2cd14610583578063f2fde38b146105a357600080fd5b8063b88d4fde146104a5578063c3f1d185146104c5578063c87b56dd146104e5578063ca0dcf161461050557600080fd5b8063715018a6116100d1578063715018a61461043d5780638da5cb5b1461045257806395d89b4114610470578063a22cb4651461048557600080fd5b80635c975abb146103c45780636352211e146103de57806370a08231146103fe57600080fd5b806323b872dd1161016f57806345bf9b151161013e57806345bf9b15146103445780634628c15f146103645780634f558e791461038457806355f804b3146103a457600080fd5b806323b872dd146102e95780632db11544146103095780633ccfd60b1461031c57806342842e0e1461032457600080fd5b806306fdde03116101ab57806306fdde0314610248578063081812fc1461026a578063095ea7b3146102a257806318160ddd146102c257600080fd5b8062b6849f146101d157806301ffc9a7146101f357806302329a2914610228575b600080fd5b3480156101dd57600080fd5b506101f16101ec3660046119b1565b6105c3565b005b3480156101ff57600080fd5b5061021361020e366004611a7f565b61064e565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b506101f1610243366004611a64565b6106a0565b34801561025457600080fd5b5061025d6106dd565b60405161021f9190611bc2565b34801561027657600080fd5b5061028a610285366004611b01565b61076f565b6040516001600160a01b03909116815260200161021f565b3480156102ae57600080fd5b506101f16102bd366004611913565b6107b3565b3480156102ce57600080fd5b5060015460005403600019015b60405190815260200161021f565b3480156102f557600080fd5b506101f1610304366004611832565b610841565b6101f1610317366004611b01565b61084c565b6101f1610a1d565b34801561033057600080fd5b506101f161033f366004611832565b610a9c565b34801561035057600080fd5b506101f161035f366004611913565b610ab7565b34801561037057600080fd5b506101f161037f366004611a64565b610b51565b34801561039057600080fd5b5061021361039f366004611b01565b610b95565b3480156103b057600080fd5b506101f16103bf366004611ab9565b610ba0565b3480156103d057600080fd5b50600c546102139060ff1681565b3480156103ea57600080fd5b5061028a6103f9366004611b01565b610bdd565b34801561040a57600080fd5b506102db6104193660046117e4565b6001600160a01b03166000908152600560205260409020546001600160401b031690565b34801561044957600080fd5b506101f1610bef565b34801561045e57600080fd5b506008546001600160a01b031661028a565b34801561047c57600080fd5b5061025d610c25565b34801561049157600080fd5b506101f16104a03660046118e9565b610c34565b3480156104b157600080fd5b506101f16104c036600461186e565b610cca565b3480156104d157600080fd5b506101f16104e036600461193d565b610d1b565b3480156104f157600080fd5b5061025d610500366004611b01565b610d5d565b34801561051157600080fd5b506102db600b5481565b34801561052757600080fd5b506102136105363660046117ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057057600080fd5b50600c5461021390610100900460ff1681565b34801561058f57600080fd5b5061021361059e3660046117e4565b610dbb565b3480156105af57600080fd5b506101f16105be3660046117e4565b610e25565b6008546001600160a01b031633146105f65760405162461bcd60e51b81526004016105ed90611bd5565b60405180910390fd5b60005b815181101561064a5761063882828151811061061757610617611d5e565b60200260200101516001604051806020016040528060008152506001610ecc565b8061064281611d03565b9150506105f9565b5050565b60006001600160e01b031982166380ac58cd60e01b148061067f57506001600160e01b03198216635b5e139f60e01b145b8061069a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106ca5760405162461bcd60e51b81526004016105ed90611bd5565b600c805460ff1916911515919091179055565b6060600280546106ec90611cc8565b80601f016020809104026020016040519081016040528092919081815260200182805461071890611cc8565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061077a82611074565b610797576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107be82610bdd565b9050806001600160a01b0316836001600160a01b031614156107f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061081357506108118133610536565b155b15610831576040516367d9dca160e11b815260040160405180910390fd5b61083c8383836110ad565b505050565b61083c838383611109565b600a5460015460005483919003600019016108679190611c3a565b11156108ae5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016105ed565b6008546001600160a01b03163314610a1057600c5460ff16156108d057600080fd5b60095433600090815260056020526040902054600160401b90046001600160401b03166108fd9083611c3a565b11156109405760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016105ed565b336000908152600560205260409020546001906001600160401b03161061099e5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016105ed565b80600b546109ac9190611c66565b3410156109b857600080fd5b600c54610100900460ff1615610a10576109d133610dbb565b610a105760405162461bcd60e51b815260206004820152601060248201526f139bdd0813db8815da1a5d195b1a5cdd60821b60448201526064016105ed565b610a1a33826112b3565b50565b6008546001600160a01b03163314610a475760405162461bcd60e51b81526004016105ed90611bd5565b604051600090339047908381818185875af1925050503d8060008114610a89576040519150601f19603f3d011682016040523d82523d6000602084013e610a8e565b606091505b5050905080610a1a57600080fd5b61083c83838360405180602001604052806000815250610cca565b6008546001600160a01b03163314610ae15760405162461bcd60e51b81526004016105ed90611bd5565b600a5481610af26000546000190190565b610afc9190611c3a565b10610b355760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b60448201526064016105ed565b61064a8282604051806020016040528060008152506001610ecc565b6008546001600160a01b03163314610b7b5760405162461bcd60e51b81526004016105ed90611bd5565b600c80549115156101000261ff0019909216919091179055565b600061069a82611074565b6008546001600160a01b03163314610bca5760405162461bcd60e51b81526004016105ed90611bd5565b805161064a90600e906020840190611657565b6000610be8826112cd565b5192915050565b6008546001600160a01b03163314610c195760405162461bcd60e51b81526004016105ed90611bd5565b610c2360006113f4565b565b6060600380546106ec90611cc8565b6001600160a01b038216331415610c5e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd5848484611109565b6001600160a01b0383163b15158015610cf75750610cf584848484611446565b155b15610d15576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d455760405162461bcd60e51b81526004016105ed90611bd5565b610d51600d60006116db565b61083c600d83836116f9565b60606000610d6961153e565b90506000815111610d895760405180602001604052806000815250610db4565b80610d938461154d565b604051602001610da4929190611b46565b6040516020818303038152906040525b9392505050565b6000805b600d54811015610e1c57826001600160a01b0316600d8281548110610de657610de6611d5e565b6000918252602090912001546001600160a01b03161415610e0a5750600192915050565b80610e1481611d03565b915050610dbf565b50600092915050565b6008546001600160a01b03163314610e4f5760405162461bcd60e51b81526004016105ed90611bd5565b6001600160a01b038116610eb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ed565b610a1a816113f4565b6001600160a01b03163b151590565b60005483610eed5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610f9957506001600160a01b0387163b15155b15611022575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610fea6000888480600101955088611446565b611007576040516368d2bf6b60e11b815260040160405180910390fd5b80821415610f9f57826000541461101d57600080fd5b611068565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611023575b506000555b5050505050565b600081600111158015611088575060005482105b801561069a575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611114826112cd565b9050836001600160a01b031681600001516001600160a01b03161461114b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061116957506111698533610536565b806111845750336111798461076f565b6001600160a01b0316145b9050806111a457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111cb57604051633a954ecd60e21b815260040160405180910390fd5b6111d7600084876110ad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112ab5760005482146112ab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505061106d565b61064a82826040518060200160405280600081525061164a565b604080516060810182526000808252602082018190529181019190915281806001111580156112fd575060005481105b156113db57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113d95780516001600160a01b031615611370579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113d4579392505050565b611370565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061147b903390899088908890600401611b85565b602060405180830381600087803b15801561149557600080fd5b505af19250505080156114c5575060408051601f3d908101601f191682019092526114c291810190611a9c565b60015b611520573d8080156114f3576040519150601f19603f3d011682016040523d82523d6000602084013e6114f8565b606091505b508051611518576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546106ec90611cc8565b6060816115715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561159b578061158581611d03565b91506115949050600a83611c52565b9150611575565b6000816001600160401b038111156115b5576115b5611d74565b6040519080825280601f01601f1916602001820160405280156115df576020820181803683370190505b5090505b8415611536576115f4600183611c85565b9150611601600a86611d1e565b61160c906030611c3a565b60f81b81838151811061162157611621611d5e565b60200101906001600160f81b031916908160001a905350611643600a86611c52565b94506115e3565b61083c8383836001610ecc565b82805461166390611cc8565b90600052602060002090601f01602090048101928261168557600085556116cb565b82601f1061169e57805160ff19168380011785556116cb565b828001600101855582156116cb579182015b828111156116cb5782518255916020019190600101906116b0565b506116d792915061174c565b5090565b5080546000825590600052602060002090810190610a1a919061174c565b8280548282559060005260206000209081019282156116cb579160200282015b828111156116cb5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611719565b5b808211156116d7576000815560010161174d565b60006001600160401b0383111561177a5761177a611d74565b61178d601f8401601f1916602001611c0a565b90508281528383830111156117a157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146117cf57600080fd5b919050565b803580151581146117cf57600080fd5b6000602082840312156117f657600080fd5b610db4826117b8565b6000806040838503121561181257600080fd5b61181b836117b8565b9150611829602084016117b8565b90509250929050565b60008060006060848603121561184757600080fd5b611850846117b8565b925061185e602085016117b8565b9150604084013590509250925092565b6000806000806080858703121561188457600080fd5b61188d856117b8565b935061189b602086016117b8565b92506040850135915060608501356001600160401b038111156118bd57600080fd5b8501601f810187136118ce57600080fd5b6118dd87823560208401611761565b91505092959194509250565b600080604083850312156118fc57600080fd5b611905836117b8565b9150611829602084016117d4565b6000806040838503121561192657600080fd5b61192f836117b8565b946020939093013593505050565b6000806020838503121561195057600080fd5b82356001600160401b038082111561196757600080fd5b818501915085601f83011261197b57600080fd5b81358181111561198a57600080fd5b8660208260051b850101111561199f57600080fd5b60209290920196919550909350505050565b600060208083850312156119c457600080fd5b82356001600160401b03808211156119db57600080fd5b818501915085601f8301126119ef57600080fd5b813581811115611a0157611a01611d74565b8060051b9150611a12848301611c0a565b8181528481019084860184860187018a1015611a2d57600080fd5b600095505b83861015611a5757611a43816117b8565b835260019590950194918601918601611a32565b5098975050505050505050565b600060208284031215611a7657600080fd5b610db4826117d4565b600060208284031215611a9157600080fd5b8135610db481611d8a565b600060208284031215611aae57600080fd5b8151610db481611d8a565b600060208284031215611acb57600080fd5b81356001600160401b03811115611ae157600080fd5b8201601f81018413611af257600080fd5b61153684823560208401611761565b600060208284031215611b1357600080fd5b5035919050565b60008151808452611b32816020860160208601611c9c565b601f01601f19169290920160200192915050565b60008351611b58818460208801611c9c565b835190830190611b6c818360208801611c9c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bb890830184611b1a565b9695505050505050565b602081526000610db46020830184611b1a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611c3257611c32611d74565b604052919050565b60008219821115611c4d57611c4d611d32565b500190565b600082611c6157611c61611d48565b500490565b6000816000190483118215151615611c8057611c80611d32565b500290565b600082821015611c9757611c97611d32565b500390565b60005b83811015611cb7578181015183820152602001611c9f565b83811115610d155750506000910152565b600181811c90821680611cdc57607f821691505b60208210811415611cfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1757611d17611d32565b5060010190565b600082611d2d57611d2d611d48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1a57600080fdfea264697066735822122024f660682783ce392fdb28f38763f6735ff939e9b30ed83388a84f77f5515b6264736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106101cc5760003560e01c80635c975abb116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461051b578063eaa099e514610564578063ec33e2cd14610583578063f2fde38b146105a357600080fd5b8063b88d4fde146104a5578063c3f1d185146104c5578063c87b56dd146104e5578063ca0dcf161461050557600080fd5b8063715018a6116100d1578063715018a61461043d5780638da5cb5b1461045257806395d89b4114610470578063a22cb4651461048557600080fd5b80635c975abb146103c45780636352211e146103de57806370a08231146103fe57600080fd5b806323b872dd1161016f57806345bf9b151161013e57806345bf9b15146103445780634628c15f146103645780634f558e791461038457806355f804b3146103a457600080fd5b806323b872dd146102e95780632db11544146103095780633ccfd60b1461031c57806342842e0e1461032457600080fd5b806306fdde03116101ab57806306fdde0314610248578063081812fc1461026a578063095ea7b3146102a257806318160ddd146102c257600080fd5b8062b6849f146101d157806301ffc9a7146101f357806302329a2914610228575b600080fd5b3480156101dd57600080fd5b506101f16101ec3660046119b1565b6105c3565b005b3480156101ff57600080fd5b5061021361020e366004611a7f565b61064e565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b506101f1610243366004611a64565b6106a0565b34801561025457600080fd5b5061025d6106dd565b60405161021f9190611bc2565b34801561027657600080fd5b5061028a610285366004611b01565b61076f565b6040516001600160a01b03909116815260200161021f565b3480156102ae57600080fd5b506101f16102bd366004611913565b6107b3565b3480156102ce57600080fd5b5060015460005403600019015b60405190815260200161021f565b3480156102f557600080fd5b506101f1610304366004611832565b610841565b6101f1610317366004611b01565b61084c565b6101f1610a1d565b34801561033057600080fd5b506101f161033f366004611832565b610a9c565b34801561035057600080fd5b506101f161035f366004611913565b610ab7565b34801561037057600080fd5b506101f161037f366004611a64565b610b51565b34801561039057600080fd5b5061021361039f366004611b01565b610b95565b3480156103b057600080fd5b506101f16103bf366004611ab9565b610ba0565b3480156103d057600080fd5b50600c546102139060ff1681565b3480156103ea57600080fd5b5061028a6103f9366004611b01565b610bdd565b34801561040a57600080fd5b506102db6104193660046117e4565b6001600160a01b03166000908152600560205260409020546001600160401b031690565b34801561044957600080fd5b506101f1610bef565b34801561045e57600080fd5b506008546001600160a01b031661028a565b34801561047c57600080fd5b5061025d610c25565b34801561049157600080fd5b506101f16104a03660046118e9565b610c34565b3480156104b157600080fd5b506101f16104c036600461186e565b610cca565b3480156104d157600080fd5b506101f16104e036600461193d565b610d1b565b3480156104f157600080fd5b5061025d610500366004611b01565b610d5d565b34801561051157600080fd5b506102db600b5481565b34801561052757600080fd5b506102136105363660046117ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057057600080fd5b50600c5461021390610100900460ff1681565b34801561058f57600080fd5b5061021361059e3660046117e4565b610dbb565b3480156105af57600080fd5b506101f16105be3660046117e4565b610e25565b6008546001600160a01b031633146105f65760405162461bcd60e51b81526004016105ed90611bd5565b60405180910390fd5b60005b815181101561064a5761063882828151811061061757610617611d5e565b60200260200101516001604051806020016040528060008152506001610ecc565b8061064281611d03565b9150506105f9565b5050565b60006001600160e01b031982166380ac58cd60e01b148061067f57506001600160e01b03198216635b5e139f60e01b145b8061069a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106ca5760405162461bcd60e51b81526004016105ed90611bd5565b600c805460ff1916911515919091179055565b6060600280546106ec90611cc8565b80601f016020809104026020016040519081016040528092919081815260200182805461071890611cc8565b80156107655780601f1061073a57610100808354040283529160200191610765565b820191906000526020600020905b81548152906001019060200180831161074857829003601f168201915b5050505050905090565b600061077a82611074565b610797576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107be82610bdd565b9050806001600160a01b0316836001600160a01b031614156107f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061081357506108118133610536565b155b15610831576040516367d9dca160e11b815260040160405180910390fd5b61083c8383836110ad565b505050565b61083c838383611109565b600a5460015460005483919003600019016108679190611c3a565b11156108ae5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016105ed565b6008546001600160a01b03163314610a1057600c5460ff16156108d057600080fd5b60095433600090815260056020526040902054600160401b90046001600160401b03166108fd9083611c3a565b11156109405760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016105ed565b336000908152600560205260409020546001906001600160401b03161061099e5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016105ed565b80600b546109ac9190611c66565b3410156109b857600080fd5b600c54610100900460ff1615610a10576109d133610dbb565b610a105760405162461bcd60e51b815260206004820152601060248201526f139bdd0813db8815da1a5d195b1a5cdd60821b60448201526064016105ed565b610a1a33826112b3565b50565b6008546001600160a01b03163314610a475760405162461bcd60e51b81526004016105ed90611bd5565b604051600090339047908381818185875af1925050503d8060008114610a89576040519150601f19603f3d011682016040523d82523d6000602084013e610a8e565b606091505b5050905080610a1a57600080fd5b61083c83838360405180602001604052806000815250610cca565b6008546001600160a01b03163314610ae15760405162461bcd60e51b81526004016105ed90611bd5565b600a5481610af26000546000190190565b610afc9190611c3a565b10610b355760405162461bcd60e51b8152602060048201526009602482015268534f4c44204f55542160b81b60448201526064016105ed565b61064a8282604051806020016040528060008152506001610ecc565b6008546001600160a01b03163314610b7b5760405162461bcd60e51b81526004016105ed90611bd5565b600c80549115156101000261ff0019909216919091179055565b600061069a82611074565b6008546001600160a01b03163314610bca5760405162461bcd60e51b81526004016105ed90611bd5565b805161064a90600e906020840190611657565b6000610be8826112cd565b5192915050565b6008546001600160a01b03163314610c195760405162461bcd60e51b81526004016105ed90611bd5565b610c2360006113f4565b565b6060600380546106ec90611cc8565b6001600160a01b038216331415610c5e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd5848484611109565b6001600160a01b0383163b15158015610cf75750610cf584848484611446565b155b15610d15576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610d455760405162461bcd60e51b81526004016105ed90611bd5565b610d51600d60006116db565b61083c600d83836116f9565b60606000610d6961153e565b90506000815111610d895760405180602001604052806000815250610db4565b80610d938461154d565b604051602001610da4929190611b46565b6040516020818303038152906040525b9392505050565b6000805b600d54811015610e1c57826001600160a01b0316600d8281548110610de657610de6611d5e565b6000918252602090912001546001600160a01b03161415610e0a5750600192915050565b80610e1481611d03565b915050610dbf565b50600092915050565b6008546001600160a01b03163314610e4f5760405162461bcd60e51b81526004016105ed90611bd5565b6001600160a01b038116610eb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ed565b610a1a816113f4565b6001600160a01b03163b151590565b60005483610eed5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610f9957506001600160a01b0387163b15155b15611022575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610fea6000888480600101955088611446565b611007576040516368d2bf6b60e11b815260040160405180910390fd5b80821415610f9f57826000541461101d57600080fd5b611068565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611023575b506000555b5050505050565b600081600111158015611088575060005482105b801561069a575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611114826112cd565b9050836001600160a01b031681600001516001600160a01b03161461114b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061116957506111698533610536565b806111845750336111798461076f565b6001600160a01b0316145b9050806111a457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111cb57604051633a954ecd60e21b815260040160405180910390fd5b6111d7600084876110ad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112ab5760005482146112ab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505061106d565b61064a82826040518060200160405280600081525061164a565b604080516060810182526000808252602082018190529181019190915281806001111580156112fd575060005481105b156113db57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113d95780516001600160a01b031615611370579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113d4579392505050565b611370565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061147b903390899088908890600401611b85565b602060405180830381600087803b15801561149557600080fd5b505af19250505080156114c5575060408051601f3d908101601f191682019092526114c291810190611a9c565b60015b611520573d8080156114f3576040519150601f19603f3d011682016040523d82523d6000602084013e6114f8565b606091505b508051611518576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546106ec90611cc8565b6060816115715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561159b578061158581611d03565b91506115949050600a83611c52565b9150611575565b6000816001600160401b038111156115b5576115b5611d74565b6040519080825280601f01601f1916602001820160405280156115df576020820181803683370190505b5090505b8415611536576115f4600183611c85565b9150611601600a86611d1e565b61160c906030611c3a565b60f81b81838151811061162157611621611d5e565b60200101906001600160f81b031916908160001a905350611643600a86611c52565b94506115e3565b61083c8383836001610ecc565b82805461166390611cc8565b90600052602060002090601f01602090048101928261168557600085556116cb565b82601f1061169e57805160ff19168380011785556116cb565b828001600101855582156116cb579182015b828111156116cb5782518255916020019190600101906116b0565b506116d792915061174c565b5090565b5080546000825590600052602060002090810190610a1a919061174c565b8280548282559060005260206000209081019282156116cb579160200282015b828111156116cb5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611719565b5b808211156116d7576000815560010161174d565b60006001600160401b0383111561177a5761177a611d74565b61178d601f8401601f1916602001611c0a565b90508281528383830111156117a157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146117cf57600080fd5b919050565b803580151581146117cf57600080fd5b6000602082840312156117f657600080fd5b610db4826117b8565b6000806040838503121561181257600080fd5b61181b836117b8565b9150611829602084016117b8565b90509250929050565b60008060006060848603121561184757600080fd5b611850846117b8565b925061185e602085016117b8565b9150604084013590509250925092565b6000806000806080858703121561188457600080fd5b61188d856117b8565b935061189b602086016117b8565b92506040850135915060608501356001600160401b038111156118bd57600080fd5b8501601f810187136118ce57600080fd5b6118dd87823560208401611761565b91505092959194509250565b600080604083850312156118fc57600080fd5b611905836117b8565b9150611829602084016117d4565b6000806040838503121561192657600080fd5b61192f836117b8565b946020939093013593505050565b6000806020838503121561195057600080fd5b82356001600160401b038082111561196757600080fd5b818501915085601f83011261197b57600080fd5b81358181111561198a57600080fd5b8660208260051b850101111561199f57600080fd5b60209290920196919550909350505050565b600060208083850312156119c457600080fd5b82356001600160401b03808211156119db57600080fd5b818501915085601f8301126119ef57600080fd5b813581811115611a0157611a01611d74565b8060051b9150611a12848301611c0a565b8181528481019084860184860187018a1015611a2d57600080fd5b600095505b83861015611a5757611a43816117b8565b835260019590950194918601918601611a32565b5098975050505050505050565b600060208284031215611a7657600080fd5b610db4826117d4565b600060208284031215611a9157600080fd5b8135610db481611d8a565b600060208284031215611aae57600080fd5b8151610db481611d8a565b600060208284031215611acb57600080fd5b81356001600160401b03811115611ae157600080fd5b8201601f81018413611af257600080fd5b61153684823560208401611761565b600060208284031215611b1357600080fd5b5035919050565b60008151808452611b32816020860160208601611c9c565b601f01601f19169290920160200192915050565b60008351611b58818460208801611c9c565b835190830190611b6c818360208801611c9c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bb890830184611b1a565b9695505050505050565b602081526000610db46020830184611b1a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611c3257611c32611d74565b604052919050565b60008219821115611c4d57611c4d611d32565b500190565b600082611c6157611c61611d48565b500490565b6000816000190483118215151615611c8057611c80611d32565b500290565b600082821015611c9757611c97611d32565b500390565b60005b83811015611cb7578181015183820152602001611c9f565b83811115610d155750506000910152565b600181811c90821680611cdc57607f821691505b60208210811415611cfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1757611d17611d32565b5060010190565b600082611d2d57611d2d611d48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1a57600080fdfea264697066735822122024f660682783ce392fdb28f38763f6735ff939e9b30ed83388a84f77f5515b6264736f6c63430008070033
Deployed Bytecode Sourcemap
55073:3049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57183:188;;;;;;;;;;-1:-1:-1;57183:188:0;;;;;:::i;:::-;;:::i;:::-;;37412:305;;;;;;;;;;-1:-1:-1;37412:305:0;;;;;:::i;:::-;;:::i;:::-;;;7643:14:1;;7636:22;7618:41;;7606:2;7591:18;37412:305:0;;;;;;;;57379:87;;;;;;;;;;-1:-1:-1;57379:87:0;;;;;:::i;:::-;;:::i;40464:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41967:204::-;;;;;;;;;;-1:-1:-1;41967:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6941:32:1;;;6923:51;;6911:2;6896:18;41967:204:0;6777:203:1;41530:371:0;;;;;;;;;;-1:-1:-1;41530:371:0;;;;;:::i;:::-;;:::i;36661:303::-;;;;;;;;;;-1:-1:-1;36518:1:0;36915:12;36705:7;36899:13;:28;-1:-1:-1;;36899:46:0;36661:303;;;10188:25:1;;;10176:2;10161:18;36661:303:0;10042:177:1;42832:170:0;;;;;;;;;;-1:-1:-1;42832:170:0;;;;;:::i;:::-;;:::i;55527:681::-;;;;;;:::i;:::-;;:::i;57937:174::-;;;:::i;43073:185::-;;;;;;;;;;-1:-1:-1;43073:185:0;;;;;:::i;:::-;;:::i;56977:198::-;;;;;;;;;;-1:-1:-1;56977:198:0;;;;;:::i;:::-;;:::i;57597:82::-;;;;;;;;;;-1:-1:-1;57597:82:0;;;;;:::i;:::-;;:::i;56404:108::-;;;;;;;;;;-1:-1:-1;56404:108:0;;;;;:::i;:::-;;:::i;56853:110::-;;;;;;;;;;-1:-1:-1;56853:110:0;;;;;:::i;:::-;;:::i;55287:25::-;;;;;;;;;;-1:-1:-1;55287:25:0;;;;;;;;40272:125;;;;;;;;;;-1:-1:-1;40272:125:0;;;;;:::i;:::-;;:::i;37781:145::-;;;;;;;;;;-1:-1:-1;37781:145:0;;;;;:::i;:::-;-1:-1:-1;;;;;37890:19:0;37845:7;37890:19;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37890:27:0;;37781:145;2479:103;;;;;;;;;;;;;:::i;1828:87::-;;;;;;;;;;-1:-1:-1;1901:6:0;;-1:-1:-1;;;;;1901:6:0;1828:87;;40633:104;;;;;;;;;;;;;:::i;42243:287::-;;;;;;;;;;-1:-1:-1;42243:287:0;;;;;:::i;:::-;;:::i;43329:369::-;;;;;;;;;;-1:-1:-1;43329:369:0;;;;;:::i;:::-;;:::i;57474:115::-;;;;;;;;;;-1:-1:-1;57474:115:0;;;;;:::i;:::-;;:::i;56520:296::-;;;;;;;;;;-1:-1:-1;56520:296:0;;;;;:::i;:::-;;:::i;55245:35::-;;;;;;;;;;;;;;;;42601:164;;;;;;;;;;-1:-1:-1;42601:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42722:25:0;;;42698:4;42722:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42601:164;55319:25;;;;;;;;;;-1:-1:-1;55319:25:0;;;;;;;;;;;57687:240;;;;;;;;;;-1:-1:-1;57687:240:0;;;;;:::i;:::-;;:::i;2737:201::-;;;;;;;;;;-1:-1:-1;2737:201:0;;;;;:::i;:::-;;:::i;57183:188::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;;;;;;;;;57265:9:::1;57260:104;57280:5;:12;57276:1;:16;57260:104;;;57324:28;57330:5;57336:1;57330:8;;;;;;;;:::i;:::-;;;;;;;57340:1;57324:28;;;;;;;;;;;::::0;57347:4:::1;57324:5;:28::i;:::-;57294:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57260:104;;;;57183:188:::0;:::o;37412:305::-;37514:4;-1:-1:-1;;;;;;37551:40:0;;-1:-1:-1;;;37551:40:0;;:105;;-1:-1:-1;;;;;;;37608:48:0;;-1:-1:-1;;;37608:48:0;37551:105;:158;;;-1:-1:-1;;;;;;;;;;33096:40:0;;;37673:36;37531:178;37412:305;-1:-1:-1;;37412:305:0:o;57379:87::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;57443:6:::1;:15:::0;;-1:-1:-1;;57443:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57379:87::o;40464:100::-;40518:13;40551:5;40544:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40464:100;:::o;41967:204::-;42035:7;42060:16;42068:7;42060;:16::i;:::-;42055:64;;42085:34;;-1:-1:-1;;;42085:34:0;;;;;;;;;;;42055:64;-1:-1:-1;42139:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42139:24:0;;41967:204::o;41530:371::-;41603:13;41619:24;41635:7;41619:15;:24::i;:::-;41603:40;;41664:5;-1:-1:-1;;;;;41658:11:0;:2;-1:-1:-1;;;;;41658:11:0;;41654:48;;;41678:24;;-1:-1:-1;;;41678:24:0;;;;;;;;;;;41654:48;680:10;-1:-1:-1;;;;;41719:21:0;;;;;;:63;;-1:-1:-1;41745:37:0;41762:5;680:10;42601:164;:::i;41745:37::-;41744:38;41719:63;41715:138;;;41806:35;;-1:-1:-1;;;41806:35:0;;;;;;;;;;;41715:138;41865:28;41874:2;41878:7;41887:5;41865:8;:28::i;:::-;41592:309;41530:371;;:::o;42832:170::-;42966:28;42976:4;42982:2;42986:7;42966:9;:28::i;55527:681::-;55641:10;;36518:1;36915:12;36705:7;36899:13;55634:3;;36899:28;;-1:-1:-1;;36899:46:0;55618:19;;;;:::i;:::-;:33;;55596:105;;;;-1:-1:-1;;;55596:105:0;;8850:2:1;55596:105:0;;;8832:21:1;8889:2;8869:18;;;8862:30;-1:-1:-1;;;8908:18:1;;;8901:52;8970:18;;55596:105:0;8648:346:1;55596:105:0;1901:6;;-1:-1:-1;;;;;1901:6:0;55718:10;:21;55714:441;;55765:6;;;;55764:7;55756:16;;;;;;55848:9;;55833:10;38069:7;38104:19;;;:12;:19;;;;;:32;-1:-1:-1;;;38104:32:0;;-1:-1:-1;;;;;38104:32:0;55813:31;;:3;:31;:::i;:::-;:44;;55787:124;;;;-1:-1:-1;;;55787:124:0;;8503:2:1;55787:124:0;;;8485:21:1;8542:2;8522:18;;;8515:30;-1:-1:-1;;;8561:18:1;;;8554:48;8619:18;;55787:124:0;8301:342:1;55787:124:0;55944:10;37845:7;37890:19;;;:12;:19;;;;;:27;55958:1;;-1:-1:-1;;;;;37890:27:0;55934:25;55926:56;;;;-1:-1:-1;;;55926:56:0;;8503:2:1;55926:56:0;;;8485:21:1;8542:2;8522:18;;;8515:30;-1:-1:-1;;;8561:18:1;;;8554:48;8619:18;;55926:56:0;8301:342:1;55926:56:0;56029:3;56018:8;;:14;;;;:::i;:::-;56005:9;:27;;55997:36;;;;;;56054:6;;;;;;;56050:92;;;56089:16;56094:10;56089:4;:16::i;:::-;56081:45;;;;-1:-1:-1;;;56081:45:0;;9899:2:1;56081:45:0;;;9881:21:1;9938:2;9918:18;;;9911:30;-1:-1:-1;;;9957:18:1;;;9950:46;10013:18;;56081:45:0;9697:340:1;56081:45:0;56167:26;56177:10;56189:3;56167:9;:26::i;:::-;55527:681;:::o;57937:174::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;58018:58:::1;::::0;58000:12:::1;::::0;58026:10:::1;::::0;58050:21:::1;::::0;58000:12;58018:58;58000:12;58018:58;58050:21;58026:10;58018:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57999:77;;;58095:7;58087:16;;;::::0;::::1;43073:185:::0;43211:39;43228:4;43234:2;43238:7;43211:39;;;;;;;;;;;;:16;:39::i;56977:198::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;57091:10:::1;;57085:3;57068:14;37104:7:::0;37290:13;-1:-1:-1;;37290:31:0;;37057:283;57068:14:::1;:20;;;;:::i;:::-;:33;57060:55;;;::::0;-1:-1:-1;;;57060:55:0;;9201:2:1;57060:55:0::1;::::0;::::1;9183:21:1::0;9240:1;9220:18;;;9213:29;-1:-1:-1;;;9258:18:1;;;9251:39;9307:18;;57060:55:0::1;8999:332:1::0;57060:55:0::1;57136:31;57142:9;57153:3;57136:31;;;;;;;;;;;::::0;57162:4:::1;57136:5;:31::i;57597:82::-:0;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;57655:6:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;57655:16:0;;::::1;::::0;;;::::1;::::0;;57597:82::o;56404:108::-;56458:4;56488:16;56496:7;56488;:16::i;56853:110::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;56932:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;40272:125::-:0;40336:7;40363:21;40376:7;40363:12;:21::i;:::-;:26;;40272:125;-1:-1:-1;;40272:125:0:o;2479:103::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;2544:30:::1;2571:1;2544:18;:30::i;:::-;2479:103::o:0;40633:104::-;40689:13;40722:7;40715:14;;;;;:::i;42243:287::-;-1:-1:-1;;;;;42342:24:0;;680:10;42342:24;42338:54;;;42375:17;;-1:-1:-1;;;42375:17:0;;;;;;;;;;;42338:54;680:10;42405:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42405:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42405:53:0;;;;;;;;;;42474:48;;7618:41:1;;;42405:42:0;;680:10;42474:48;;7591:18:1;42474:48:0;;;;;;;42243:287;;:::o;43329:369::-;43496:28;43506:4;43512:2;43516:7;43496:9;:28::i;:::-;-1:-1:-1;;;;;43539:13:0;;10421:19;:23;;43539:76;;;;;43559:56;43590:4;43596:2;43600:7;43609:5;43559:30;:56::i;:::-;43558:57;43539:76;43535:156;;;43639:40;;-1:-1:-1;;;43639:40:0;;;;;;;;;;;43535:156;43329:369;;;;:::o;57474:115::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;57548:9:::1;57555:2;;57548:9;:::i;:::-;57568:13;:2;57573:8:::0;;57568:13:::1;:::i;56520:296::-:0;56590:13;56626:28;56657:10;:8;:10::i;:::-;56626:41;;56712:1;56687:14;56681:28;:32;:127;;;;;;;;;;;;;;;;;56749:14;56765:18;:7;:16;:18::i;:::-;56732:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56681:127;56674:134;56520:296;-1:-1:-1;;;56520:296:0:o;57687:240::-;57734:4;;57772:125;57782:2;:9;57778:13;;57772:125;;;57819:2;-1:-1:-1;;;;;57810:11:0;:2;57813:1;57810:5;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;57810:5:0;:11;57807:61;;;-1:-1:-1;57848:4:0;;57687:240;-1:-1:-1;;57687:240:0:o;57807:61::-;57882:3;;;;:::i;:::-;;;;57772:125;;;-1:-1:-1;57914:5:0;;57687:240;-1:-1:-1;;57687:240:0:o;2737:201::-;1901:6;;-1:-1:-1;;;;;1901:6:0;680:10;2048:23;2040:68;;;;-1:-1:-1;;;2040:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2826:22:0;::::1;2818:73;;;::::0;-1:-1:-1;;;2818:73:0;;8096:2:1;2818:73:0::1;::::0;::::1;8078:21:1::0;8135:2;8115:18;;;8108:30;8174:34;8154:18;;;8147:62;-1:-1:-1;;;8225:18:1;;;8218:36;8271:19;;2818:73:0::1;7894:402:1::0;2818:73:0::1;2902:28;2921:8;2902:18;:28::i;10126:326::-:0;-1:-1:-1;;;;;10421:19:0;;:23;;;10126:326::o;45024:1763::-;45173:20;45196:13;45234;45230:44;;45256:18;;-1:-1:-1;;;45256:18:0;;;;;;;;;;;45230:44;-1:-1:-1;;;;;45652:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45711:49:0;;-1:-1:-1;;;;;45652:44:0;;;;;;;45711:49;;;-1:-1:-1;;;;;45652:44:0;;;;;;45711:49;;;;;;;;;;;;;;;;45777:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45827:66:0;;;;-1:-1:-1;;;45877:15:0;45827:66;;;;;;;;;;45777:25;45974:23;;;46018:4;:23;;;;-1:-1:-1;;;;;;46026:13:0;;10421:19;:23;;46026:15;46014:641;;;46062:314;46093:38;;46118:12;;-1:-1:-1;;;;;46093:38:0;;;46110:1;;46093:38;;46110:1;;46093:38;46159:69;46198:1;46202:2;46206:14;;;;;;46222:5;46159:30;:69::i;:::-;46154:174;;46264:40;;-1:-1:-1;;;46264:40:0;;;;;;;;;;;46154:174;46371:3;46355:12;:19;;46062:314;;46457:12;46440:13;;:29;46436:43;;46471:8;;;46436:43;46014:641;;;46520:120;46551:40;;46576:14;;;;;-1:-1:-1;;;;;46551:40:0;;;46568:1;;46551:40;;46568:1;;46551:40;46635:3;46619:12;:19;;46520:120;;46014:641;-1:-1:-1;46669:13:0;:28;46719:60;45152:1635;45024:1763;;;;:::o;43953:174::-;44010:4;44053:7;36518:1;44034:26;;:53;;;;;44074:13;;44064:7;:23;44034:53;:85;;;;-1:-1:-1;;44092:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44092:27:0;;;;44091:28;;43953:174::o;52056:196::-;52171:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52171:29:0;-1:-1:-1;;;;;52171:29:0;;;;;;;;;52216:28;;52171:24;;52216:28;;;;;;;52056:196;;;:::o;47041:2088::-;47156:35;47194:21;47207:7;47194:12;:21::i;:::-;47156:59;;47254:4;-1:-1:-1;;;;;47232:26:0;:13;:18;;;-1:-1:-1;;;;;47232:26:0;;47228:67;;47267:28;;-1:-1:-1;;;47267:28:0;;;;;;;;;;;47228:67;47308:22;680:10;-1:-1:-1;;;;;47334:20:0;;;;:73;;-1:-1:-1;47371:36:0;47388:4;680:10;42601:164;:::i;47371:36::-;47334:126;;;-1:-1:-1;680:10:0;47424:20;47436:7;47424:11;:20::i;:::-;-1:-1:-1;;;;;47424:36:0;;47334:126;47308:153;;47479:17;47474:66;;47505:35;;-1:-1:-1;;;47505:35:0;;;;;;;;;;;47474:66;-1:-1:-1;;;;;47555:16:0;;47551:52;;47580:23;;-1:-1:-1;;;47580:23:0;;;;;;;;;;;47551:52;47724:35;47741:1;47745:7;47754:4;47724:8;:35::i;:::-;-1:-1:-1;;;;;48055:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48055:31:0;;;-1:-1:-1;;;;;48055:31:0;;;-1:-1:-1;;48055:31:0;;;;;;;48101:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48101:29:0;;;;;;;;;;;48181:20;;;:11;:20;;;;;;48216:18;;-1:-1:-1;;;;;;48249:49:0;;;;-1:-1:-1;;;48282:15:0;48249:49;;;;;;;;;;48572:11;;48632:24;;;;;48675:13;;48181:20;;48632:24;;48675:13;48671:384;;48885:13;;48870:11;:28;48866:174;;48923:20;;48992:28;;;;-1:-1:-1;;;;;48966:54:0;-1:-1:-1;;;48966:54:0;-1:-1:-1;;;;;;48966:54:0;;;-1:-1:-1;;;;;48923:20:0;;48966:54;;;;48866:174;48030:1036;;;49079:42;43329:369;44135:104;44204:27;44214:2;44218:8;44204:27;;;;;;;;;;;;:9;:27::i;39101:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39212:7:0;;36518:1;39261:23;;:47;;;;;39295:13;;39288:4;:20;39261:47;39257:886;;;39329:31;39363:17;;;:11;:17;;;;;;;;;39329:51;;;;;;;;;-1:-1:-1;;;;;39329:51:0;;;;-1:-1:-1;;;39329:51:0;;-1:-1:-1;;;;;39329:51:0;;;;;;;;-1:-1:-1;;;39329:51:0;;;;;;;;;;;;;;39399:729;;39449:14;;-1:-1:-1;;;;;39449:28:0;;39445:101;;39513:9;39101:1109;-1:-1:-1;;;39101:1109:0:o;39445:101::-;-1:-1:-1;;;39888:6:0;39933:17;;;;:11;:17;;;;;;;;;39921:29;;;;;;;;;-1:-1:-1;;;;;39921:29:0;;;;;-1:-1:-1;;;39921:29:0;;-1:-1:-1;;;;;39921:29:0;;;;;;;;-1:-1:-1;;;39921:29:0;;;;;;;;;;;;;39981:28;39977:109;;40049:9;39101:1109;-1:-1:-1;;;39101:1109:0:o;39977:109::-;39848:261;;;39310:833;39257:886;40171:31;;-1:-1:-1;;;40171:31:0;;;;;;;;;;;3098:191;3191:6;;;-1:-1:-1;;;;;3208:17:0;;;-1:-1:-1;;;;;;3208:17:0;;;;;;;3241:40;;3191:6;;;3208:17;3191:6;;3241:40;;3172:16;;3241:40;3161:128;3098:191;:::o;52744:667::-;52928:72;;-1:-1:-1;;;52928:72:0;;52907:4;;-1:-1:-1;;;;;52928:36:0;;;;;:72;;680:10;;52979:4;;52985:7;;52994:5;;52928:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52928:72:0;;;;;;;;-1:-1:-1;;52928:72:0;;;;;;;;;;;;:::i;:::-;;;52924:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53162:13:0;;53158:235;;53208:40;;-1:-1:-1;;;53208:40:0;;;;;;;;;;;53158:235;53351:6;53345:13;53336:6;53332:2;53328:15;53321:38;52924:480;-1:-1:-1;;;;;;53047:55:0;-1:-1:-1;;;53047:55:0;;-1:-1:-1;52924:480:0;52744:667;;;;;;:::o;56276:120::-;56336:13;56375;56368:20;;;;;:::i;30357:723::-;30413:13;30634:10;30630:53;;-1:-1:-1;;30661:10:0;;;;;;;;;;;;-1:-1:-1;;;30661:10:0;;;;;30357:723::o;30630:53::-;30708:5;30693:12;30749:78;30756:9;;30749:78;;30782:8;;;;:::i;:::-;;-1:-1:-1;30805:10:0;;-1:-1:-1;30813:2:0;30805:10;;:::i;:::-;;;30749:78;;;30837:19;30869:6;-1:-1:-1;;;;;30859:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30859:17:0;;30837:39;;30887:154;30894:10;;30887:154;;30921:11;30931:1;30921:11;;:::i;:::-;;-1:-1:-1;30990:10:0;30998:2;30990:5;:10;:::i;:::-;30977:24;;:2;:24;:::i;:::-;30964:39;;30947:6;30954;30947:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;30947:56:0;;;;;;;;-1:-1:-1;31018:11:0;31027:2;31018:11;;:::i;:::-;;;30887:154;;44602:163;44725:32;44731:2;44735:8;44745:5;44752:4;44725:5;:32::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:615::-;2832:6;2840;2893:2;2881:9;2872:7;2868:23;2864:32;2861:52;;;2909:1;2906;2899:12;2861:52;2949:9;2936:23;-1:-1:-1;;;;;3019:2:1;3011:6;3008:14;3005:34;;;3035:1;3032;3025:12;3005:34;3073:6;3062:9;3058:22;3048:32;;3118:7;3111:4;3107:2;3103:13;3099:27;3089:55;;3140:1;3137;3130:12;3089:55;3180:2;3167:16;3206:2;3198:6;3195:14;3192:34;;;3222:1;3219;3212:12;3192:34;3275:7;3270:2;3260:6;3257:1;3253:14;3249:2;3245:23;3241:32;3238:45;3235:65;;;3296:1;3293;3286:12;3235:65;3327:2;3319:11;;;;;3349:6;;-1:-1:-1;2746:615:1;;-1:-1:-1;;;;2746:615:1:o;3366:963::-;3450:6;3481:2;3524;3512:9;3503:7;3499:23;3495:32;3492:52;;;3540:1;3537;3530:12;3492:52;3580:9;3567:23;-1:-1:-1;;;;;3650:2:1;3642:6;3639:14;3636:34;;;3666:1;3663;3656:12;3636:34;3704:6;3693:9;3689:22;3679:32;;3749:7;3742:4;3738:2;3734:13;3730:27;3720:55;;3771:1;3768;3761:12;3720:55;3807:2;3794:16;3829:2;3825;3822:10;3819:36;;;3835:18;;:::i;:::-;3881:2;3878:1;3874:10;3864:20;;3904:28;3928:2;3924;3920:11;3904:28;:::i;:::-;3966:15;;;3997:12;;;;4029:11;;;4059;;;4055:20;;4052:33;-1:-1:-1;4049:53:1;;;4098:1;4095;4088:12;4049:53;4120:1;4111:10;;4130:169;4144:2;4141:1;4138:9;4130:169;;;4201:23;4220:3;4201:23;:::i;:::-;4189:36;;4162:1;4155:9;;;;;4245:12;;;;4277;;4130:169;;;-1:-1:-1;4318:5:1;3366:963;-1:-1:-1;;;;;;;;3366:963:1:o;4334:180::-;4390:6;4443:2;4431:9;4422:7;4418:23;4414:32;4411:52;;;4459:1;4456;4449:12;4411:52;4482:26;4498:9;4482:26;:::i;4519:245::-;4577:6;4630:2;4618:9;4609:7;4605:23;4601:32;4598:52;;;4646:1;4643;4636:12;4598:52;4685:9;4672:23;4704:30;4728:5;4704:30;:::i;4769:249::-;4838:6;4891:2;4879:9;4870:7;4866:23;4862:32;4859:52;;;4907:1;4904;4897:12;4859:52;4939:9;4933:16;4958:30;4982:5;4958:30;:::i;5023:450::-;5092:6;5145:2;5133:9;5124:7;5120:23;5116:32;5113:52;;;5161:1;5158;5151:12;5113:52;5201:9;5188:23;-1:-1:-1;;;;;5226:6:1;5223:30;5220:50;;;5266:1;5263;5256:12;5220:50;5289:22;;5342:4;5334:13;;5330:27;-1:-1:-1;5320:55:1;;5371:1;5368;5361:12;5320:55;5394:73;5459:7;5454:2;5441:16;5436:2;5432;5428:11;5394:73;:::i;5478:180::-;5537:6;5590:2;5578:9;5569:7;5565:23;5561:32;5558:52;;;5606:1;5603;5596:12;5558:52;-1:-1:-1;5629:23:1;;5478:180;-1:-1:-1;5478:180:1:o;5663:257::-;5704:3;5742:5;5736:12;5769:6;5764:3;5757:19;5785:63;5841:6;5834:4;5829:3;5825:14;5818:4;5811:5;5807:16;5785:63;:::i;:::-;5902:2;5881:15;-1:-1:-1;;5877:29:1;5868:39;;;;5909:4;5864:50;;5663:257;-1:-1:-1;;5663:257:1:o;5925:637::-;6205:3;6243:6;6237:13;6259:53;6305:6;6300:3;6293:4;6285:6;6281:17;6259:53;:::i;:::-;6375:13;;6334:16;;;;6397:57;6375:13;6334:16;6431:4;6419:17;;6397:57;:::i;:::-;-1:-1:-1;;;6476:20:1;;6505:22;;;6554:1;6543:13;;5925:637;-1:-1:-1;;;;5925:637:1:o;6985:488::-;-1:-1:-1;;;;;7254:15:1;;;7236:34;;7306:15;;7301:2;7286:18;;7279:43;7353:2;7338:18;;7331:34;;;7401:3;7396:2;7381:18;;7374:31;;;7179:4;;7422:45;;7447:19;;7439:6;7422:45;:::i;:::-;7414:53;6985:488;-1:-1:-1;;;;;;6985:488:1:o;7670:219::-;7819:2;7808:9;7801:21;7782:4;7839:44;7879:2;7868:9;7864:18;7856:6;7839:44;:::i;9336:356::-;9538:2;9520:21;;;9557:18;;;9550:30;9616:34;9611:2;9596:18;;9589:62;9683:2;9668:18;;9336:356::o;10224:275::-;10295:2;10289:9;10360:2;10341:13;;-1:-1:-1;;10337:27:1;10325:40;;-1:-1:-1;;;;;10380:34:1;;10416:22;;;10377:62;10374:88;;;10442:18;;:::i;:::-;10478:2;10471:22;10224:275;;-1:-1:-1;10224:275:1:o;10504:128::-;10544:3;10575:1;10571:6;10568:1;10565:13;10562:39;;;10581:18;;:::i;:::-;-1:-1:-1;10617:9:1;;10504:128::o;10637:120::-;10677:1;10703;10693:35;;10708:18;;:::i;:::-;-1:-1:-1;10742:9:1;;10637:120::o;10762:168::-;10802:7;10868:1;10864;10860:6;10856:14;10853:1;10850:21;10845:1;10838:9;10831:17;10827:45;10824:71;;;10875:18;;:::i;:::-;-1:-1:-1;10915:9:1;;10762:168::o;10935:125::-;10975:4;11003:1;11000;10997:8;10994:34;;;11008:18;;:::i;:::-;-1:-1:-1;11045:9:1;;10935:125::o;11065:258::-;11137:1;11147:113;11161:6;11158:1;11155:13;11147:113;;;11237:11;;;11231:18;11218:11;;;11211:39;11183:2;11176:10;11147:113;;;11278:6;11275:1;11272:13;11269:48;;;-1:-1:-1;;11313:1:1;11295:16;;11288:27;11065:258::o;11328:380::-;11407:1;11403:12;;;;11450;;;11471:61;;11525:4;11517:6;11513:17;11503:27;;11471:61;11578:2;11570:6;11567:14;11547:18;11544:38;11541:161;;;11624:10;11619:3;11615:20;11612:1;11605:31;11659:4;11656:1;11649:15;11687:4;11684:1;11677:15;11541:161;;11328:380;;;:::o;11713:135::-;11752:3;-1:-1:-1;;11773:17:1;;11770:43;;;11793:18;;:::i;:::-;-1:-1:-1;11840:1:1;11829:13;;11713:135::o;11853:112::-;11885:1;11911;11901:35;;11916:18;;:::i;:::-;-1:-1:-1;11950:9:1;;11853:112::o;11970:127::-;12031:10;12026:3;12022:20;12019:1;12012:31;12062:4;12059:1;12052:15;12086:4;12083:1;12076:15;12102:127;12163:10;12158:3;12154:20;12151:1;12144:31;12194:4;12191:1;12184:15;12218:4;12215:1;12208:15;12234:127;12295:10;12290:3;12286:20;12283:1;12276:31;12326:4;12323:1;12316:15;12350:4;12347:1;12340:15;12366:127;12427:10;12422:3;12418:20;12415:1;12408:31;12458:4;12455:1;12448:15;12482:4;12479:1;12472:15;12498:131;-1:-1:-1;;;;;;12572:32:1;;12562:43;;12552:71;;12619:1;12616;12609:12
Swarm Source
ipfs://24f660682783ce392fdb28f38763f6735ff939e9b30ed83388a84f77f5515b62
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.