ERC-20
MEME
Overview
Max Total Supply
69,420,000,000 KOVIN
Holders
11,414
Market
Price
$0.00 @ 0.000000 AVAX (+1.27%)
Onchain Market Cap
$83,998.20
Circulating Supply Market Cap
$84,003.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
121,509,544.07839419711777688 KOVINValue
$147.03 ( ~7.7633 AVAX) [0.1750%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
KOVIN
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2024-03-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the ERC may not emit * these events, as it isn't required by the specification. */ /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @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); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the ERC. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // I'm here for the $COQ - CryptoQuine contract KOVIN is ERC20, Ownable(msg.sender) { // Added state variable for lubrication - gently does it! // Lubrication prevents any wallet receiving more than 1% of CoqInu in the opening days. bool public lubricating = true; address public liquidityPool; // Mint the totalSupply (69.420 T) to the deployer constructor() ERC20("Kovin Segnocchi", "KOVIN") { _mint(msg.sender, 69420000000 * 10 ** 18); } // Function to set lubricating state function setLubricating(bool _state) external onlyOwner { lubricating = _state; } // Define the LP address to enable trading! function setLiquidityPool(address _liquidityPool) external onlyOwner { liquidityPool = _liquidityPool; } // Override _update function to include lubricating logic (previously _beforeTokenTransfer) function _update( address from, address to, uint256 amount ) internal virtual override { super._update(from, to, amount); // If liquidityPool is address(0) we've not yet enabled trading. Liquidity Loading.... if(liquidityPool == address(0)) { require(from == owner() || to == owner(), "Patience - Trading Not Started Yet!"); return; } // Allow deployer (owner) to send/receive any amount and the liquidityPool to receive any amount. // This allows for loading of the LP, and for people to sell tokens into the LP whilst lubrication in progress. if (lubricating && from != owner() && to != liquidityPool) { // Require that a receiving wallet will not hold more than 1% of supply after a transfer whilst lubrication is in effect require( balanceOf(to) <= totalSupply() / 100, "Just getting warmed up, limit of 1% of Coq can be Inu until Lubrication is complete!" ); } } // Renounce the contract and pass ownership to address(0) to lock the contract forever more. function renounceTokenOwnership() public onlyOwner { renounceOwnership(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lubricating","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTokenOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setLubricating","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526005805460ff60a01b1916600160a01b1790553480156200002457600080fd5b50336040518060400160405280600f81526020016e4b6f76696e205365676e6f6363686960881b8152506040518060400160405280600581526020016425a7ab24a760d91b81525081600390816200007d91906200050d565b5060046200008c82826200050d565b5050506001600160a01b038116620000bf57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000ca81620000e9565b50620000e3336be04ee0ccb27ac646ac0000006200013b565b62000624565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001675760405163ec442f0560e01b815260006004820152602401620000b6565b620001756000838362000179565b5050565b6200018683838362000336565b6006546001600160a01b031662000220576005546001600160a01b0384811691161480620001c157506005546001600160a01b038381169116145b6200021b5760405162461bcd60e51b815260206004820152602360248201527f50617469656e6365202d2054726164696e67204e6f742053746172746564205960448201526265742160e81b6064820152608401620000b6565b505050565b600554600160a01b900460ff1680156200024857506005546001600160a01b03848116911614155b80156200026357506006546001600160a01b03838116911614155b156200021b5760646200027560025490565b620002819190620005d9565b6001600160a01b03831660009081526020819052604090205411156200021b5760405162461bcd60e51b815260206004820152605460248201527f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660448201527f203125206f6620436f712063616e20626520496e7520756e74696c204c75627260648201527f69636174696f6e20697320636f6d706c65746521000000000000000000000000608482015260a401620000b6565b6001600160a01b03831662000365578060026000828254620003599190620005fc565b90915550620003d99050565b6001600160a01b03831660009081526020819052604090205481811015620003ba5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000b6565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620003f75760028054829003905562000416565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200045c91815260200190565b60405180910390a3505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200049457607f821691505b602082108103620004b557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021b57600081815260208120601f850160051c81016020861015620004e45750805b601f850160051c820191505b818110156200050557828155600101620004f0565b505050505050565b81516001600160401b0381111562000529576200052962000469565b62000541816200053a84546200047f565b84620004bb565b602080601f831160018114620005795760008415620005605750858301515b600019600386901b1c1916600185901b17855562000505565b600085815260208120601f198616915b82811015620005aa5788860151825594840194600190910190840162000589565b5085821015620005c95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082620005f757634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200061e57634e487b7160e01b600052601160045260246000fd5b92915050565b610b4980620006346000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461022e578063a9059cbb14610236578063dd62ed3e14610249578063e14f08d514610282578063f2fde38b1461028a57600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395afda0c1461021a57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b5780634bc3e7db1461019a578063665a11ca146101ad57600080fd5b8063018770201461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e36600461096b565b61029d565b005b61012d6102c7565b60405161013a919061098d565b60405180910390f35b6101566101513660046109db565b610359565b604051901515815260200161013a565b6002545b60405190815260200161013a565b610156610186366004610a05565b610373565b6040516012815260200161013a565b6101236101a8366004610a41565b610397565b6006546101c0906001600160a01b031681565b6040516001600160a01b03909116815260200161013a565b61016a6101e636600461096b565b6001600160a01b031660009081526020819052604090205490565b6101236103bd565b6005546001600160a01b03166101c0565b60055461015690600160a01b900460ff1681565b61012d6103d1565b6101566102443660046109db565b6103e0565b61016a610257366004610a63565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101236103ee565b61012361029836600461096b565b6103fe565b6102a5610441565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546102d690610a96565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610a96565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b60003361036781858561046e565b60019150505b92915050565b600033610381858285610480565b61038c8585856104fe565b506001949350505050565b61039f610441565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6103c5610441565b6103cf600061055d565b565b6060600480546102d690610a96565b6000336103678185856104fe565b6103f6610441565b6103cf6103bd565b610406610441565b6001600160a01b03811661043557604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61043e8161055d565b50565b6005546001600160a01b031633146103cf5760405163118cdaa760e01b815233600482015260240161042c565b61047b83838360016105af565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146104f857818110156104e957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161042c565b6104f8848484840360006105af565b50505050565b6001600160a01b03831661052857604051634b637e8f60e11b81526000600482015260240161042c565b6001600160a01b0382166105525760405163ec442f0560e01b81526000600482015260240161042c565b61047b838383610684565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166105d95760405163e602df0560e01b81526000600482015260240161042c565b6001600160a01b03831661060357604051634a1406b160e11b81526000600482015260240161042c565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156104f857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161067691815260200190565b60405180910390a350505050565b61068f838383610825565b6006546001600160a01b0316610720576005546001600160a01b03848116911614806106c857506005546001600160a01b038381169116145b61047b5760405162461bcd60e51b815260206004820152602360248201527f50617469656e6365202d2054726164696e67204e6f742053746172746564205960448201526265742160e81b606482015260840161042c565b600554600160a01b900460ff16801561074757506005546001600160a01b03848116911614155b801561076157506006546001600160a01b03838116911614155b1561047b57606461077160025490565b61077b9190610ad0565b6001600160a01b038316600090815260208190526040902054111561047b5760405162461bcd60e51b815260206004820152605460248201527f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660448201527f203125206f6620436f712063616e20626520496e7520756e74696c204c75627260648201527369636174696f6e20697320636f6d706c6574652160601b608482015260a40161042c565b6001600160a01b0383166108505780600260008282546108459190610af2565b909155506108c29050565b6001600160a01b038316600090815260208190526040902054818110156108a35760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161042c565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166108de576002805482900390556108fd565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161094291815260200190565b60405180910390a3505050565b80356001600160a01b038116811461096657600080fd5b919050565b60006020828403121561097d57600080fd5b6109868261094f565b9392505050565b600060208083528351808285015260005b818110156109ba5785810183015185820160400152820161099e565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156109ee57600080fd5b6109f78361094f565b946020939093013593505050565b600080600060608486031215610a1a57600080fd5b610a238461094f565b9250610a316020850161094f565b9150604084013590509250925092565b600060208284031215610a5357600080fd5b8135801515811461098657600080fd5b60008060408385031215610a7657600080fd5b610a7f8361094f565b9150610a8d6020840161094f565b90509250929050565b600181811c90821680610aaa57607f821691505b602082108103610aca57634e487b7160e01b600052602260045260246000fd5b50919050565b600082610aed57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561036d57634e487b7160e01b600052601160045260246000fdfea2646970667358221220aa108d4cd78315bb2061adce818db8a904ead4ea7d1f22a56d43ae85db40d7e664736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461022e578063a9059cbb14610236578063dd62ed3e14610249578063e14f08d514610282578063f2fde38b1461028a57600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395afda0c1461021a57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b5780634bc3e7db1461019a578063665a11ca146101ad57600080fd5b8063018770201461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e36600461096b565b61029d565b005b61012d6102c7565b60405161013a919061098d565b60405180910390f35b6101566101513660046109db565b610359565b604051901515815260200161013a565b6002545b60405190815260200161013a565b610156610186366004610a05565b610373565b6040516012815260200161013a565b6101236101a8366004610a41565b610397565b6006546101c0906001600160a01b031681565b6040516001600160a01b03909116815260200161013a565b61016a6101e636600461096b565b6001600160a01b031660009081526020819052604090205490565b6101236103bd565b6005546001600160a01b03166101c0565b60055461015690600160a01b900460ff1681565b61012d6103d1565b6101566102443660046109db565b6103e0565b61016a610257366004610a63565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101236103ee565b61012361029836600461096b565b6103fe565b6102a5610441565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546102d690610a96565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610a96565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b60003361036781858561046e565b60019150505b92915050565b600033610381858285610480565b61038c8585856104fe565b506001949350505050565b61039f610441565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6103c5610441565b6103cf600061055d565b565b6060600480546102d690610a96565b6000336103678185856104fe565b6103f6610441565b6103cf6103bd565b610406610441565b6001600160a01b03811661043557604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61043e8161055d565b50565b6005546001600160a01b031633146103cf5760405163118cdaa760e01b815233600482015260240161042c565b61047b83838360016105af565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146104f857818110156104e957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161042c565b6104f8848484840360006105af565b50505050565b6001600160a01b03831661052857604051634b637e8f60e11b81526000600482015260240161042c565b6001600160a01b0382166105525760405163ec442f0560e01b81526000600482015260240161042c565b61047b838383610684565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166105d95760405163e602df0560e01b81526000600482015260240161042c565b6001600160a01b03831661060357604051634a1406b160e11b81526000600482015260240161042c565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156104f857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161067691815260200190565b60405180910390a350505050565b61068f838383610825565b6006546001600160a01b0316610720576005546001600160a01b03848116911614806106c857506005546001600160a01b038381169116145b61047b5760405162461bcd60e51b815260206004820152602360248201527f50617469656e6365202d2054726164696e67204e6f742053746172746564205960448201526265742160e81b606482015260840161042c565b600554600160a01b900460ff16801561074757506005546001600160a01b03848116911614155b801561076157506006546001600160a01b03838116911614155b1561047b57606461077160025490565b61077b9190610ad0565b6001600160a01b038316600090815260208190526040902054111561047b5760405162461bcd60e51b815260206004820152605460248201527f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660448201527f203125206f6620436f712063616e20626520496e7520756e74696c204c75627260648201527369636174696f6e20697320636f6d706c6574652160601b608482015260a40161042c565b6001600160a01b0383166108505780600260008282546108459190610af2565b909155506108c29050565b6001600160a01b038316600090815260208190526040902054818110156108a35760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161042c565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166108de576002805482900390556108fd565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161094291815260200190565b60405180910390a3505050565b80356001600160a01b038116811461096657600080fd5b919050565b60006020828403121561097d57600080fd5b6109868261094f565b9392505050565b600060208083528351808285015260005b818110156109ba5785810183015185820160400152820161099e565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156109ee57600080fd5b6109f78361094f565b946020939093013593505050565b600080600060608486031215610a1a57600080fd5b610a238461094f565b9250610a316020850161094f565b9150604084013590509250925092565b600060208284031215610a5357600080fd5b8135801515811461098657600080fd5b60008060408385031215610a7657600080fd5b610a7f8361094f565b9150610a8d6020840161094f565b90509250929050565b600181811c90821680610aaa57607f821691505b602082108103610aca57634e487b7160e01b600052602260045260246000fd5b50919050565b600082610aed57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561036d57634e487b7160e01b600052601160045260246000fdfea2646970667358221220aa108d4cd78315bb2061adce818db8a904ead4ea7d1f22a56d43ae85db40d7e664736f6c63430008130033
Deployed Bytecode Sourcemap
24750:2143:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25399:118;;;;;;:::i;:::-;;:::i;:::-;;15376:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17669:190;;;;;;:::i;:::-;;:::i;:::-;;;1360:14:1;;1353:22;1335:41;;1323:2;1308:18;17669:190:0;1195:187:1;16478:99:0;16557:12;;16478:99;;;1533:25:1;;;1521:2;1506:18;16478:99:0;1387:177:1;18437:249:0;;;;;;:::i;:::-;;:::i;16329:84::-;;;16403:2;2044:36:1;;2032:2;2017:18;16329:84:0;1902:184:1;25247:95:0;;;;;;:::i;:::-;;:::i;24996:28::-;;;;;-1:-1:-1;;;;;24996:28:0;;;;;;-1:-1:-1;;;;;2533:32:1;;;2515:51;;2503:2;2488:18;24996:28:0;2369:203:1;16640:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;16732:18:0;16705:7;16732:18;;;;;;;;;;;;16640:118;3108:103;;;:::i;2433:87::-;2506:6;;-1:-1:-1;;;;;2506:6:0;2433:87;;24959:30;;;;;-1:-1:-1;;;24959:30:0;;;;;;15586:95;;;:::i;16963:182::-;;;;;;:::i;:::-;;:::i;17208:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17315:18:0;;;17288:7;17315:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17208:142;26801:89;;;:::i;3366:220::-;;;;;;:::i;:::-;;:::i;25399:118::-;2319:13;:11;:13::i;:::-;25479::::1;:30:::0;;-1:-1:-1;;;;;;25479:30:0::1;-1:-1:-1::0;;;;;25479:30:0;;;::::1;::::0;;;::::1;::::0;;25399:118::o;15376:91::-;15421:13;15454:5;15447:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15376:91;:::o;17669:190::-;17742:4;681:10;17798:31;681:10;17814:7;17823:5;17798:8;:31::i;:::-;17847:4;17840:11;;;17669:190;;;;;:::o;18437:249::-;18524:4;681:10;18582:37;18598:4;681:10;18613:5;18582:15;:37::i;:::-;18630:26;18640:4;18646:2;18650:5;18630:9;:26::i;:::-;-1:-1:-1;18674:4:0;;18437:249;-1:-1:-1;;;;18437:249:0:o;25247:95::-;2319:13;:11;:13::i;:::-;25314:11:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;25314:20:0::1;-1:-1:-1::0;;;;25314:20:0;;::::1;::::0;;;::::1;::::0;;25247:95::o;3108:103::-;2319:13;:11;:13::i;:::-;3173:30:::1;3200:1;3173:18;:30::i;:::-;3108:103::o:0;15586:95::-;15633:13;15666:7;15659:14;;;;;:::i;16963:182::-;17032:4;681:10;17088:27;681:10;17105:2;17109:5;17088:9;:27::i;26801:89::-;2319:13;:11;:13::i;:::-;26863:19:::1;:17;:19::i;3366:220::-:0;2319:13;:11;:13::i;:::-;-1:-1:-1;;;;;3451:22:0;::::1;3447:93;;3497:31;::::0;-1:-1:-1;;;3497:31:0;;3525:1:::1;3497:31;::::0;::::1;2515:51:1::0;2488:18;;3497:31:0::1;;;;;;;;3447:93;3550:28;3569:8;3550:18;:28::i;:::-;3366:220:::0;:::o;2598:166::-;2506:6;;-1:-1:-1;;;;;2506:6:0;681:10;2658:23;2654:103;;2705:40;;-1:-1:-1;;;2705:40:0;;681:10;2705:40;;;2515:51:1;2488:18;;2705:40:0;2369:203:1;22496:130:0;22581:37;22590:5;22597:7;22606:5;22613:4;22581:8;:37::i;:::-;22496:130;;;:::o;24212:487::-;-1:-1:-1;;;;;17315:18:0;;;24312:24;17315:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;24379:37:0;;24375:317;;24456:5;24437:16;:24;24433:132;;;24489:60;;-1:-1:-1;;;24489:60:0;;-1:-1:-1;;;;;3447:32:1;;24489:60:0;;;3429:51:1;3496:18;;;3489:34;;;3539:18;;;3532:34;;;3402:18;;24489:60:0;3227:345:1;24433:132:0;24608:57;24617:5;24624:7;24652:5;24633:16;:24;24659:5;24608:8;:57::i;:::-;24301:398;24212:487;;;:::o;19071:308::-;-1:-1:-1;;;;;19155:18:0;;19151:88;;19197:30;;-1:-1:-1;;;19197:30:0;;19224:1;19197:30;;;2515:51:1;2488:18;;19197:30:0;2369:203:1;19151:88:0;-1:-1:-1;;;;;19253:16:0;;19249:88;;19293:32;;-1:-1:-1;;;19293:32:0;;19322:1;19293:32;;;2515:51:1;2488:18;;19293:32:0;2369:203:1;19249:88:0;19347:24;19355:4;19361:2;19365:5;19347:7;:24::i;3746:191::-;3839:6;;;-1:-1:-1;;;;;3856:17:0;;;-1:-1:-1;;;;;;3856:17:0;;;;;;;3889:40;;3839:6;;;3856:17;3839:6;;3889:40;;3820:16;;3889:40;3809:128;3746:191;:::o;23477:443::-;-1:-1:-1;;;;;23590:19:0;;23586:91;;23633:32;;-1:-1:-1;;;23633:32:0;;23662:1;23633:32;;;2515:51:1;2488:18;;23633:32:0;2369:203:1;23586:91:0;-1:-1:-1;;;;;23691:21:0;;23687:92;;23736:31;;-1:-1:-1;;;23736:31:0;;23764:1;23736:31;;;2515:51:1;2488:18;;23736:31:0;2369:203:1;23687:92:0;-1:-1:-1;;;;;23789:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23835:78;;;;23886:7;-1:-1:-1;;;;;23870:31:0;23879:5;-1:-1:-1;;;;;23870:31:0;;23895:5;23870:31;;;;1533:25:1;;1521:2;1506:18;;1387:177;23870:31:0;;;;;;;;23477:443;;;;:::o;25622:1075::-;25752:31;25766:4;25772:2;25776:6;25752:13;:31::i;:::-;25893:13;;-1:-1:-1;;;;;25893:13:0;25890:160;;2506:6;;-1:-1:-1;;;;;25945:15:0;;;2506:6;;25945:15;;:32;;-1:-1:-1;2506:6:0;;-1:-1:-1;;;;;25964:13:0;;;2506:6;;25964:13;25945:32;25937:80;;;;-1:-1:-1;;;25937:80:0;;3779:2:1;25937:80:0;;;3761:21:1;3818:2;3798:18;;;3791:30;3857:34;3837:18;;;3830:62;-1:-1:-1;;;3908:18:1;;;3901:33;3951:19;;25937:80:0;3577:399:1;25890:160:0;26292:11;;-1:-1:-1;;;26292:11:0;;;;:30;;;;-1:-1:-1;2506:6:0;;-1:-1:-1;;;;;26307:15:0;;;2506:6;;26307:15;;26292:30;:53;;;;-1:-1:-1;26332:13:0;;-1:-1:-1;;;;;26326:19:0;;;26332:13;;26326:19;;26292:53;26288:402;;;26555:3;26539:13;16557:12;;;16478:99;26539:13;:19;;;;:::i;:::-;-1:-1:-1;;;;;16732:18:0;;16705:7;16732:18;;;;;;;;;;;26522:36;;26496:182;;;;-1:-1:-1;;;26496:182:0;;4405:2:1;26496:182:0;;;4387:21:1;4444:2;4424:18;;;4417:30;4483:34;4463:18;;;4456:62;4554:34;4534:18;;;4527:62;-1:-1:-1;;;4605:19:1;;;4598:51;4666:19;;26496:182:0;4203:488:1;19703:1135:0;-1:-1:-1;;;;;19793:18:0;;19789:552;;19947:5;19931:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19789:552:0;;-1:-1:-1;19789:552:0;;-1:-1:-1;;;;;20007:15:0;;19985:19;20007:15;;;;;;;;;;;20041:19;;;20037:117;;;20088:50;;-1:-1:-1;;;20088:50:0;;-1:-1:-1;;;;;3447:32:1;;20088:50:0;;;3429:51:1;3496:18;;;3489:34;;;3539:18;;;3532:34;;;3402:18;;20088:50:0;3227:345:1;20037:117:0;-1:-1:-1;;;;;20277:15:0;;:9;:15;;;;;;;;;;20295:19;;;;20277:37;;19789:552;-1:-1:-1;;;;;20357:16:0;;20353:435;;20523:12;:21;;;;;;;20353:435;;;-1:-1:-1;;;;;20739:13:0;;:9;:13;;;;;;;;;;:22;;;;;;20353:435;20820:2;-1:-1:-1;;;;;20805:25:0;20814:4;-1:-1:-1;;;;;20805:25:0;;20824:5;20805:25;;;;1533::1;;1521:2;1506:18;;1387:177;20805:25:0;;;;;;;;19703:1135;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:548::-;495:4;524:2;553;542:9;535:21;585:6;579:13;628:6;623:2;612:9;608:18;601:34;653:1;663:140;677:6;674:1;671:13;663:140;;;772:14;;;768:23;;762:30;738:17;;;757:2;734:26;727:66;692:10;;663:140;;;667:3;852:1;847:2;838:6;827:9;823:22;819:31;812:42;922:2;915;911:7;906:2;898:6;894:15;890:29;879:9;875:45;871:54;863:62;;;;383:548;;;;:::o;936:254::-;1004:6;1012;1065:2;1053:9;1044:7;1040:23;1036:32;1033:52;;;1081:1;1078;1071:12;1033:52;1104:29;1123:9;1104:29;:::i;:::-;1094:39;1180:2;1165:18;;;;1152:32;;-1:-1:-1;;;936:254:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:273::-;2147:6;2200:2;2188:9;2179:7;2175:23;2171:32;2168:52;;;2216:1;2213;2206:12;2168:52;2255:9;2242:23;2308:5;2301:13;2294:21;2287:5;2284:32;2274:60;;2330:1;2327;2320:12;2577:260;2645:6;2653;2706:2;2694:9;2685:7;2681:23;2677:32;2674:52;;;2722:1;2719;2712:12;2674:52;2745:29;2764:9;2745:29;:::i;:::-;2735:39;;2793:38;2827:2;2816:9;2812:18;2793:38;:::i;:::-;2783:48;;2577:260;;;;;:::o;2842:380::-;2921:1;2917:12;;;;2964;;;2985:61;;3039:4;3031:6;3027:17;3017:27;;2985:61;3092:2;3084:6;3081:14;3061:18;3058:38;3055:161;;3138:10;3133:3;3129:20;3126:1;3119:31;3173:4;3170:1;3163:15;3201:4;3198:1;3191:15;3055:161;;2842:380;;;:::o;3981:217::-;4021:1;4047;4037:132;;4091:10;4086:3;4082:20;4079:1;4072:31;4126:4;4123:1;4116:15;4154:4;4151:1;4144:15;4037:132;-1:-1:-1;4183:9:1;;3981:217::o;4696:222::-;4761:9;;;4782:10;;;4779:133;;;4834:10;4829:3;4825:20;4822:1;4815:31;4869:4;4866:1;4859:15;4897:4;4894:1;4887:15
Swarm Source
ipfs://aa108d4cd78315bb2061adce818db8a904ead4ea7d1f22a56d43ae85db40d7e6
[ 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.