ERC-20
Overview
Max Total Supply
10,524,542 EGG
Holders
527,852
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
NoneTransferableERC20
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at worldscan.org on 2024-11-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0 ^0.8.20; // lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ 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); } // lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) /** * @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); } // lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) /** * @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; } } // src/mixins/Errors.sol library Errors { /*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Tokens //////////////////////////////////////////////////////////////*/ error Disabled(); /*////////////////////////////////////////////////////////////// Factory //////////////////////////////////////////////////////////////*/ error AlreadySmash(); //0xd616dac9 error PermissionDenied(); //0x1e092104 error OnlyOwner(); //0x5fc483c5 error InvalidSignatureLength(); //0x4be6321b error EmptyValidator(); //0x2df17dae error DataExpired(); //0x54879ab0 error InvalidSignature(); //0x8baa579f error InvalidData(); //0x5cb045db } // lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @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); } } // lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) /** * @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); } // lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) /** * @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. */ 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}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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: * * ```solidity * 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); } } } } // src/NoneTransferableErc20.sol contract NoneTransferableERC20 is ERC20, Ownable { mapping(address => uint256) public minters; bool public isTransferable = false; constructor( string memory _name, string memory _symbol, address _owner ) ERC20(_name, _symbol) Ownable(_owner) { minters[msg.sender] = 1; } modifier onlyMinter() { if (minters[msg.sender] != 1) { revert Errors.PermissionDenied(); } _; } function updateMinter(address _minter, uint256 _status) public onlyOwner { minters[_minter] = _status; } function setTransferable(bool _status) public onlyOwner { isTransferable = _status; } function transfer( address to, uint256 value ) public override returns (bool) { if (!isTransferable) { revert Errors.Disabled(); } return super.transfer(to, value); } function transferFrom( address from, address to, uint256 value ) public override returns (bool) { if (!isTransferable) { revert Errors.Disabled(); } return super.transferFrom(from, to, value); } function mint(address account, uint256 amount) public onlyMinter { _mint(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Disabled","type":"error"},{"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"},{"inputs":[],"name":"PermissionDenied","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":"isTransferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setTransferable","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"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"updateMinter","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526007805460ff191690553480156200001b57600080fd5b5060405162000e0b38038062000e0b8339810160408190526200003e91620001d3565b80838360036200004f8382620002f1565b5060046200005e8282620002f1565b5050506001600160a01b0381166200009057604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200009b81620000b9565b50503360009081526006602052604090206001905550620003bd9050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200013357600080fd5b81516001600160401b03808211156200015057620001506200010b565b604051601f8301601f19908116603f011681019082821181831017156200017b576200017b6200010b565b81604052838152602092508660208588010111156200019957600080fd5b600091505b83821015620001bd57858201830151818301840152908201906200019e565b6000602085830101528094505050505092915050565b600080600060608486031215620001e957600080fd5b83516001600160401b03808211156200020157600080fd5b6200020f8783880162000121565b945060208601519150808211156200022657600080fd5b50620002358682870162000121565b604086015190935090506001600160a01b03811681146200025557600080fd5b809150509250925092565b600181811c908216806200027557607f821691505b6020821081036200029657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ec576000816000526020600020601f850160051c81016020861015620002c75750805b601f850160051c820191505b81811015620002e857828155600101620002d3565b5050505b505050565b81516001600160401b038111156200030d576200030d6200010b565b62000325816200031e845462000260565b846200029c565b602080601f8311600181146200035d5760008415620003445750858301515b600019600386901b1c1916600185901b178555620002e8565b600085815260208120601f198616915b828110156200038e578886015182559484019460019091019084016200036d565b5085821015620003ad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610a3e80620003cd6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461020e578063b8f883f914610221578063dd62ed3e14610234578063f2fde38b1461026d578063f46eccc41461028057600080fd5b8063715018a6146101d05780638da5cb5b146101d857806395d89b41146101f35780639cd23707146101fb57600080fd5b806323b872dd116100de57806323b872dd14610170578063313ce5671461018357806340c10f191461019257806370a08231146101a757600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780632121dc7514610163575b600080fd5b6101186102a0565b604051610125919061086c565b60405180910390f35b61014161013c3660046108d7565b610332565b6040519015158152602001610125565b6002545b604051908152602001610125565b6007546101419060ff1681565b61014161017e366004610901565b61034c565b60405160128152602001610125565b6101a56101a03660046108d7565b610385565b005b6101556101b536600461093d565b6001600160a01b031660009081526020819052604090205490565b6101a56103c3565b6005546040516001600160a01b039091168152602001610125565b6101186103d7565b6101a5610209366004610958565b6103e6565b61014161021c3660046108d7565b610401565b6101a561022f3660046108d7565b610438565b61015561024236600461097a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101a561027b36600461093d565b61045c565b61015561028e36600461093d565b60066020526000908152604090205481565b6060600380546102af906109ad565b80601f01602080910402602001604051908101604052809291908181526020018280546102db906109ad565b80156103285780601f106102fd57610100808354040283529160200191610328565b820191906000526020600020905b81548152906001019060200180831161030b57829003601f168201915b5050505050905090565b60003361034081858561049f565b60019150505b92915050565b60075460009060ff1661037257604051633ac4266d60e11b815260040160405180910390fd5b61037d8484846104b1565b949350505050565b336000908152600660205260409020546001146103b557604051630782484160e21b815260040160405180910390fd5b6103bf82826104d5565b5050565b6103cb61050b565b6103d56000610538565b565b6060600480546102af906109ad565b6103ee61050b565b6007805460ff1916911515919091179055565b60075460009060ff1661042757604051633ac4266d60e11b815260040160405180910390fd5b610431838361058a565b9392505050565b61044061050b565b6001600160a01b03909116600090815260066020526040902055565b61046461050b565b6001600160a01b03811661049357604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61049c81610538565b50565b6104ac8383836001610598565b505050565b6000336104bf85828561066e565b6104ca8585856106e7565b506001949350505050565b6001600160a01b0382166104ff5760405163ec442f0560e01b81526000600482015260240161048a565b6103bf60008383610742565b6005546001600160a01b031633146103d55760405163118cdaa760e01b815233600482015260240161048a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103408185856106e7565b6001600160a01b0384166105c25760405163e602df0560e01b81526000600482015260240161048a565b6001600160a01b0383166105ec57604051634a1406b160e11b81526000600482015260240161048a565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561066857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161065f91815260200190565b60405180910390a35b50505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561066857818110156106d857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161048a565b61066884848484036000610598565b6001600160a01b03831661071157604051634b637e8f60e11b81526000600482015260240161048a565b6001600160a01b03821661073b5760405163ec442f0560e01b81526000600482015260240161048a565b6104ac8383835b6001600160a01b03831661076d57806002600082825461076291906109e7565b909155506107df9050565b6001600160a01b038316600090815260208190526040902054818110156107c05760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161048a565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166107fb5760028054829003905561081a565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161085f91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b8181101561089a5785810183015185820160400152820161087e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108d257600080fd5b919050565b600080604083850312156108ea57600080fd5b6108f3836108bb565b946020939093013593505050565b60008060006060848603121561091657600080fd5b61091f846108bb565b925061092d602085016108bb565b9150604084013590509250925092565b60006020828403121561094f57600080fd5b610431826108bb565b60006020828403121561096a57600080fd5b8135801515811461043157600080fd5b6000806040838503121561098d57600080fd5b610996836108bb565b91506109a4602084016108bb565b90509250929050565b600181811c908216806109c157607f821691505b6020821081036109e157634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561034657634e487b7160e01b600052601160045260246000fdfea264697066735822122034c9e908dc36cd06d4b2fbce0aa966cf0218d77d10342c7f8f8eef08d83dc85164736f6c63430008170033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000063e72365db74755f8124597cac48fac84a1505ca000000000000000000000000000000000000000000000000000000000000000a436f6d6d6f6e204567670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034547470000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461020e578063b8f883f914610221578063dd62ed3e14610234578063f2fde38b1461026d578063f46eccc41461028057600080fd5b8063715018a6146101d05780638da5cb5b146101d857806395d89b41146101f35780639cd23707146101fb57600080fd5b806323b872dd116100de57806323b872dd14610170578063313ce5671461018357806340c10f191461019257806370a08231146101a757600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780632121dc7514610163575b600080fd5b6101186102a0565b604051610125919061086c565b60405180910390f35b61014161013c3660046108d7565b610332565b6040519015158152602001610125565b6002545b604051908152602001610125565b6007546101419060ff1681565b61014161017e366004610901565b61034c565b60405160128152602001610125565b6101a56101a03660046108d7565b610385565b005b6101556101b536600461093d565b6001600160a01b031660009081526020819052604090205490565b6101a56103c3565b6005546040516001600160a01b039091168152602001610125565b6101186103d7565b6101a5610209366004610958565b6103e6565b61014161021c3660046108d7565b610401565b6101a561022f3660046108d7565b610438565b61015561024236600461097a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101a561027b36600461093d565b61045c565b61015561028e36600461093d565b60066020526000908152604090205481565b6060600380546102af906109ad565b80601f01602080910402602001604051908101604052809291908181526020018280546102db906109ad565b80156103285780601f106102fd57610100808354040283529160200191610328565b820191906000526020600020905b81548152906001019060200180831161030b57829003601f168201915b5050505050905090565b60003361034081858561049f565b60019150505b92915050565b60075460009060ff1661037257604051633ac4266d60e11b815260040160405180910390fd5b61037d8484846104b1565b949350505050565b336000908152600660205260409020546001146103b557604051630782484160e21b815260040160405180910390fd5b6103bf82826104d5565b5050565b6103cb61050b565b6103d56000610538565b565b6060600480546102af906109ad565b6103ee61050b565b6007805460ff1916911515919091179055565b60075460009060ff1661042757604051633ac4266d60e11b815260040160405180910390fd5b610431838361058a565b9392505050565b61044061050b565b6001600160a01b03909116600090815260066020526040902055565b61046461050b565b6001600160a01b03811661049357604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61049c81610538565b50565b6104ac8383836001610598565b505050565b6000336104bf85828561066e565b6104ca8585856106e7565b506001949350505050565b6001600160a01b0382166104ff5760405163ec442f0560e01b81526000600482015260240161048a565b6103bf60008383610742565b6005546001600160a01b031633146103d55760405163118cdaa760e01b815233600482015260240161048a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103408185856106e7565b6001600160a01b0384166105c25760405163e602df0560e01b81526000600482015260240161048a565b6001600160a01b0383166105ec57604051634a1406b160e11b81526000600482015260240161048a565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561066857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161065f91815260200190565b60405180910390a35b50505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561066857818110156106d857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161048a565b61066884848484036000610598565b6001600160a01b03831661071157604051634b637e8f60e11b81526000600482015260240161048a565b6001600160a01b03821661073b5760405163ec442f0560e01b81526000600482015260240161048a565b6104ac8383835b6001600160a01b03831661076d57806002600082825461076291906109e7565b909155506107df9050565b6001600160a01b038316600090815260208190526040902054818110156107c05760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161048a565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166107fb5760028054829003905561081a565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161085f91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b8181101561089a5785810183015185820160400152820161087e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108d257600080fd5b919050565b600080604083850312156108ea57600080fd5b6108f3836108bb565b946020939093013593505050565b60008060006060848603121561091657600080fd5b61091f846108bb565b925061092d602085016108bb565b9150604084013590509250925092565b60006020828403121561094f57600080fd5b610431826108bb565b60006020828403121561096a57600080fd5b8135801515811461043157600080fd5b6000806040838503121561098d57600080fd5b610996836108bb565b91506109a4602084016108bb565b90509250929050565b600181811c908216806109c157607f821691505b6020821081036109e157634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561034657634e487b7160e01b600052601160045260246000fdfea264697066735822122034c9e908dc36cd06d4b2fbce0aa966cf0218d77d10342c7f8f8eef08d83dc85164736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000063e72365db74755f8124597cac48fac84a1505ca000000000000000000000000000000000000000000000000000000000000000a436f6d6d6f6e204567670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034547470000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Common Egg
Arg [1] : _symbol (string): EGG
Arg [2] : _owner (address): 0x63e72365Db74755F8124597CAc48Fac84a1505ca
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000063e72365db74755f8124597cac48fac84a1505ca
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 436f6d6d6f6e2045676700000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4547470000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
26413:1354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19293:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;19293:190:0;1004:187:1;18102:99:0;18181:12;;18102:99;;;1342:25:1;;;1330:2;1315:18;18102:99:0;1196:177:1;26518:34:0;;;;;;;;;27379:271;;;;;;:::i;:::-;;:::i;17953:84::-;;;18027:2;1853:36:1;;1841:2;1826:18;17953:84:0;1711:184:1;27658:106:0;;;;;;:::i;:::-;;:::i;:::-;;18264:118;;;;;;:::i;:::-;-1:-1:-1;;;;;18356:18:0;18329:7;18356:18;;;;;;;;;;;;18264:118;13856:103;;;:::i;13181:87::-;13254:6;;13181:87;;-1:-1:-1;;;;;13254:6:0;;;2237:51:1;;2225:2;2210:18;13181:87:0;2091:203:1;17210:95:0;;;:::i;27030:99::-;;;;;;:::i;:::-;;:::i;27137:234::-;;;;;;:::i;:::-;;:::i;26904:118::-;;;;;;:::i;:::-;;:::i;18832:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18939:18:0;;;18912:7;18939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18832:142;14114:220;;;;;;:::i;:::-;;:::i;26469:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;17000:91;17045:13;17078:5;17071:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000:91;:::o;19293:190::-;19366:4;10401:10;19422:31;10401:10;19438:7;19447:5;19422:8;:31::i;:::-;19471:4;19464:11;;;19293:190;;;;;:::o;27379:271::-;27523:14;;27501:4;;27523:14;;27518:72;;27561:17;;-1:-1:-1;;;27561:17:0;;;;;;;;;;;27518:72;27607:35;27626:4;27632:2;27636:5;27607:18;:35::i;:::-;27600:42;27379:271;-1:-1:-1;;;;27379:271:0:o;27658:106::-;26800:10;26792:19;;;;:7;:19;;;;;;26815:1;26792:24;26788:89;;26840:25;;-1:-1:-1;;;26840:25:0;;;;;;;;;;;26788:89;27734:22:::1;27740:7;27749:6;27734:5;:22::i;:::-;27658:106:::0;;:::o;13856:103::-;13067:13;:11;:13::i;:::-;13921:30:::1;13948:1;13921:18;:30::i;:::-;13856:103::o:0;17210:95::-;17257:13;17290:7;17283:14;;;;;:::i;27030:99::-;13067:13;:11;:13::i;:::-;27097:14:::1;:24:::0;;-1:-1:-1;;27097:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27030:99::o;27137:234::-;27254:14;;27232:4;;27254:14;;27249:72;;27292:17;;-1:-1:-1;;;27292:17:0;;;;;;;;;;;27249:72;27338:25;27353:2;27357:5;27338:14;:25::i;:::-;27331:32;27137:234;-1:-1:-1;;;27137:234:0:o;26904:118::-;13067:13;:11;:13::i;:::-;-1:-1:-1;;;;;26988:16:0;;::::1;;::::0;;;:7:::1;:16;::::0;;;;:26;26904:118::o;14114:220::-;13067:13;:11;:13::i;:::-;-1:-1:-1;;;;;14199:22:0;::::1;14195:93;;14245:31;::::0;-1:-1:-1;;;14245:31:0;;14273:1:::1;14245:31;::::0;::::1;2237:51:1::0;2210:18;;14245:31:0::1;;;;;;;;14195:93;14298:28;14317:8;14298:18;:28::i;:::-;14114:220:::0;:::o;24152:130::-;24237:37;24246:5;24253:7;24262:5;24269:4;24237:8;:37::i;:::-;24152:130;;;:::o;20093:249::-;20180:4;10401:10;20238:37;20254:4;10401:10;20269:5;20238:15;:37::i;:::-;20286:26;20296:4;20302:2;20306:5;20286:9;:26::i;:::-;-1:-1:-1;20330:4:0;;20093:249;-1:-1:-1;;;;20093:249:0:o;22847:213::-;-1:-1:-1;;;;;22918:21:0;;22914:93;;22963:32;;-1:-1:-1;;;22963:32:0;;22992:1;22963:32;;;2237:51:1;2210:18;;22963:32:0;2091:203:1;22914:93:0;23017:35;23033:1;23037:7;23046:5;23017:7;:35::i;13346:166::-;13254:6;;-1:-1:-1;;;;;13254:6:0;10401:10;13406:23;13402:103;;13453:40;;-1:-1:-1;;;13453:40:0;;10401:10;13453:40;;;2237:51:1;2210:18;;13453:40:0;2091:203:1;14494:191:0;14587:6;;;-1:-1:-1;;;;;14604:17:0;;;-1:-1:-1;;;;;;14604:17:0;;;;;;;14637:40;;14587:6;;;14604:17;14587:6;;14637:40;;14568:16;;14637:40;14557:128;14494:191;:::o;18587:182::-;18656:4;10401:10;18712:27;10401:10;18729:2;18733:5;18712:9;:27::i;25149:443::-;-1:-1:-1;;;;;25262:19:0;;25258:91;;25305:32;;-1:-1:-1;;;25305:32:0;;25334:1;25305:32;;;2237:51:1;2210:18;;25305:32:0;2091:203:1;25258:91:0;-1:-1:-1;;;;;25363:21:0;;25359:92;;25408:31;;-1:-1:-1;;;25408:31:0;;25436:1;25408:31;;;2237:51:1;2210:18;;25408:31:0;2091:203:1;25359:92:0;-1:-1:-1;;;;;25461:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25507:78;;;;25558:7;-1:-1:-1;;;;;25542:31:0;25551:5;-1:-1:-1;;;;;25542:31:0;;25567:5;25542:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;25542:31:0;;;;;;;;25507:78;25149:443;;;;:::o;25884:486::-;-1:-1:-1;;;;;18939:18:0;;;25984:24;18939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;26051:36:0;;26047:316;;;26127:5;26108:16;:24;26104:132;;;26160:60;;-1:-1:-1;;;26160:60:0;;-1:-1:-1;;;;;3447:32:1;;26160:60:0;;;3429:51:1;3496:18;;;3489:34;;;3539:18;;;3532:34;;;3402:18;;26160:60:0;3227:345:1;26104:132:0;26279:57;26288:5;26295:7;26323:5;26304:16;:24;26330:5;26279:8;:57::i;20727:308::-;-1:-1:-1;;;;;20811:18:0;;20807:88;;20853:30;;-1:-1:-1;;;20853:30:0;;20880:1;20853:30;;;2237:51:1;2210:18;;20853:30:0;2091:203:1;20807:88:0;-1:-1:-1;;;;;20909:16:0;;20905:88;;20949:32;;-1:-1:-1;;;20949:32:0;;20978:1;20949:32;;;2237:51:1;2210:18;;20949:32:0;2091:203:1;20905:88:0;21003:24;21011:4;21017:2;21021:5;21359:1135;-1:-1:-1;;;;;21449:18:0;;21445:552;;21603:5;21587:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21445:552:0;;-1:-1:-1;21445:552:0;;-1:-1:-1;;;;;21663:15:0;;21641:19;21663:15;;;;;;;;;;;21697:19;;;21693:117;;;21744:50;;-1:-1:-1;;;21744:50:0;;-1:-1:-1;;;;;3447:32:1;;21744:50:0;;;3429:51:1;3496:18;;;3489:34;;;3539:18;;;3532:34;;;3402:18;;21744:50:0;3227:345:1;21693:117:0;-1:-1:-1;;;;;21933:15:0;;:9;:15;;;;;;;;;;21951:19;;;;21933:37;;21445:552;-1:-1:-1;;;;;22013:16:0;;22009:435;;22179:12;:21;;;;;;;22009:435;;;-1:-1:-1;;;;;22395:13:0;;:9;:13;;;;;;;;;;:22;;;;;;22009:435;22476:2;-1:-1:-1;;;;;22461:25:0;22470:4;-1:-1:-1;;;;;22461:25:0;;22480:5;22461:25;;;;1342::1;;1330:2;1315:18;;1196:177;22461:25:0;;;;;;;;21359:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:273::-;2355:6;2408:2;2396:9;2387:7;2383:23;2379:32;2376:52;;;2424:1;2421;2414:12;2376:52;2463:9;2450:23;2516:5;2509:13;2502:21;2495:5;2492:32;2482:60;;2538:1;2535;2528: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;3577:222::-;3642:9;;;3663:10;;;3660:133;;;3715:10;3710:3;3706:20;3703:1;3696:31;3750:4;3747:1;3740:15;3778:4;3775:1;3768:15
Swarm Source
ipfs://34c9e908dc36cd06d4b2fbce0aa966cf0218d77d10342c7f8f8eef08d83dc851
[ 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.