Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Platform
Overview
Max Total Supply
20,000,000,000 FNCT
Holders
480 ( 0.208%)
Market
Price
$0.00 @ 0.000001 ETH (+11.01%)
Onchain Market Cap
$74,089,000.81
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
310,000 FNCTValue
$1,148.38 ( ~0.299296267364083 Eth) [0.0016%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FNCT
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-16 */ // Sources flattened with hardhat v2.9.1 https://hardhat.org // File openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } // File openzeppelin-contracts/contracts/utils/Context.sol // License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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 ERC20 * 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 EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 value {ERC20} uses, unless this function is * 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Burnable.sol // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File openzeppelin-contracts/contracts/token/ERC20/presets/ERC20PresetFixedSupply.sol // License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/presets/ERC20PresetFixedSupply.sol) pragma solidity ^0.8.0; /** * @dev {ERC20} token, including: * * - Preminted initial supply * - Ability for holders to burn (destroy) their tokens * - No access control mechanism (for minting/pausing) and hence no governance * * This contract uses {ERC20Burnable} to include burn capabilities - head to * its documentation for details. * * _Available since v3.4._ * * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._ */ contract ERC20PresetFixedSupply is ERC20Burnable { /** * @dev Mints `initialSupply` amount of token and transfers them to `owner`. * * See {ERC20-constructor}. */ constructor( string memory name, string memory symbol, uint256 initialSupply, address owner ) ERC20(name, symbol) { _mint(owner, initialSupply); } } // File contracts/fnct/FNCT.sol pragma solidity ^0.8.0; contract FNCT is ERC20PresetFixedSupply { constructor( uint256 initialSupply ) ERC20PresetFixedSupply( "FiNANCiE Token", "FNCT", initialSupply, _msgSender() ) { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"amount","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000db338038062000db383398101604081905262000034916200026a565b6040518060400160405280600e81526020016d2334a720a721b4a2902a37b5b2b760911b81525060405180604001604052806004815260200163119390d560e21b8152508262000089620000d860201b60201c565b835184908490620000a2906003906020850190620001c4565b508051620000b8906004906020840190620001c4565b505050620000cd8183620000dc60201b60201c565b5050505050620002e5565b3390565b6001600160a01b038216620001375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200014b919062000283565b90915550506001600160a01b038216600090815260208190526040812080548392906200017a90849062000283565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001d290620002a8565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b6000602082840312156200027c578081fd5b5051919050565b60008219821115620002a357634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620002bd57607f821691505b60208210811415620002df57634e487b7160e01b600052602260045260246000fd5b50919050565b610abe80620002f56000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610197578063a457c2d71461019f578063a9059cbb146101b2578063dd62ed3e146101c5576100cf565b806342966c681461015c57806370a082311461017157806379cc679014610184576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc6101fe565b6040516100e991906109b5565b60405180910390f35b610105610100366004610974565b610290565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610939565b6102a8565b604051601281526020016100e9565b610105610157366004610974565b6102cc565b61016f61016a36600461099d565b61030b565b005b61011961017f3660046108e6565b610318565b61016f610192366004610974565b610337565b6100dc610350565b6101056101ad366004610974565b61035f565b6101056101c0366004610974565b6103f6565b6101196101d3366004610907565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461020d90610a37565b80601f016020809104026020016040519081016040528092919081815260200182805461023990610a37565b80156102865780601f1061025b57610100808354040283529160200191610286565b820191906000526020600020905b81548152906001019060200180831161026957829003601f168201915b5050505050905090565b60003361029e818585610404565b5060019392505050565b6000336102b6858285610529565b6102c18585856105bb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061029e9082908690610306908790610a08565b610404565b6103153382610789565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b610342823383610529565b61034c8282610789565b5050565b60606004805461020d90610a37565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156103e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102c18286868403610404565b60003361029e8185856105bb565b6001600160a01b0383166104665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e0565b6001600160a01b0382166104c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105b557818110156105a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103e0565b6105b58484848403610404565b50505050565b6001600160a01b03831661061f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e0565b6001600160a01b0382166106815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e0565b6001600160a01b038316600090815260208190526040902054818110156106f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610730908490610a08565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077c91815260200190565b60405180910390a36105b5565b6001600160a01b0382166107e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e0565b6001600160a01b0382166000908152602081905260409020548181101561085d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e0565b6001600160a01b038316600090815260208190526040812083830390556002805484929061088c908490610a20565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161051c565b80356001600160a01b038116811461033257600080fd5b6000602082840312156108f7578081fd5b610900826108cf565b9392505050565b60008060408385031215610919578081fd5b610922836108cf565b9150610930602084016108cf565b90509250929050565b60008060006060848603121561094d578081fd5b610956846108cf565b9250610964602085016108cf565b9150604084013590509250925092565b60008060408385031215610986578182fd5b61098f836108cf565b946020939093013593505050565b6000602082840312156109ae578081fd5b5035919050565b6000602080835283518082850152825b818110156109e1578581018301518582016040015282016109c5565b818111156109f25783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1b57610a1b610a72565b500190565b600082821015610a3257610a32610a72565b500390565b600181811c90821680610a4b57607f821691505b60208210811415610a6c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220737ec6a3d4a2be0123f4e6c0444491ee5ca0e008840c21744ae4c3697e9c5a9f64736f6c634300080300330000000000000000000000000000000000000000409f9cbc7c4a04c220000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610197578063a457c2d71461019f578063a9059cbb146101b2578063dd62ed3e146101c5576100cf565b806342966c681461015c57806370a082311461017157806379cc679014610184576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc6101fe565b6040516100e991906109b5565b60405180910390f35b610105610100366004610974565b610290565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610939565b6102a8565b604051601281526020016100e9565b610105610157366004610974565b6102cc565b61016f61016a36600461099d565b61030b565b005b61011961017f3660046108e6565b610318565b61016f610192366004610974565b610337565b6100dc610350565b6101056101ad366004610974565b61035f565b6101056101c0366004610974565b6103f6565b6101196101d3366004610907565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461020d90610a37565b80601f016020809104026020016040519081016040528092919081815260200182805461023990610a37565b80156102865780601f1061025b57610100808354040283529160200191610286565b820191906000526020600020905b81548152906001019060200180831161026957829003601f168201915b5050505050905090565b60003361029e818585610404565b5060019392505050565b6000336102b6858285610529565b6102c18585856105bb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061029e9082908690610306908790610a08565b610404565b6103153382610789565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b610342823383610529565b61034c8282610789565b5050565b60606004805461020d90610a37565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156103e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102c18286868403610404565b60003361029e8185856105bb565b6001600160a01b0383166104665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e0565b6001600160a01b0382166104c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105b557818110156105a85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103e0565b6105b58484848403610404565b50505050565b6001600160a01b03831661061f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e0565b6001600160a01b0382166106815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e0565b6001600160a01b038316600090815260208190526040902054818110156106f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610730908490610a08565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077c91815260200190565b60405180910390a36105b5565b6001600160a01b0382166107e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e0565b6001600160a01b0382166000908152602081905260409020548181101561085d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e0565b6001600160a01b038316600090815260208190526040812083830390556002805484929061088c908490610a20565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161051c565b80356001600160a01b038116811461033257600080fd5b6000602082840312156108f7578081fd5b610900826108cf565b9392505050565b60008060408385031215610919578081fd5b610922836108cf565b9150610930602084016108cf565b90509250929050565b60008060006060848603121561094d578081fd5b610956846108cf565b9250610964602085016108cf565b9150604084013590509250925092565b60008060408385031215610986578182fd5b61098f836108cf565b946020939093013593505050565b6000602082840312156109ae578081fd5b5035919050565b6000602080835283518082850152825b818110156109e1578581018301518582016040015282016109c5565b818111156109f25783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1b57610a1b610a72565b500190565b600082821015610a3257610a32610a72565b500390565b600181811c90821680610a4b57607f821691505b60208210811415610a6c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220737ec6a3d4a2be0123f4e6c0444491ee5ca0e008840c21744ae4c3697e9c5a9f64736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000409f9cbc7c4a04c220000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 20000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000409f9cbc7c4a04c220000000
Deployed Bytecode Sourcemap
20022:259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6860:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9211:201;;;;;;:::i;:::-;;:::i;:::-;;;1640:14:1;;1633:22;1615:41;;1603:2;1588:18;9211:201:0;1570:92:1;7980:108:0;8068:12;;7980:108;;;6015:25:1;;;6003:2;5988:18;7980:108:0;5970:76:1;9992:295:0;;;;;;:::i;:::-;;:::i;7822:93::-;;;7905:2;6193:36:1;;6181:2;6166:18;7822:93:0;6148:87:1;10696:240:0;;;;;;:::i;:::-;;:::i;18272:91::-;;;;;;:::i;:::-;;:::i;:::-;;8151:127;;;;;;:::i;:::-;;:::i;18682:164::-;;;;;;:::i;:::-;;:::i;7079:104::-;;;:::i;11439:438::-;;;;;;:::i;:::-;;:::i;8484:193::-;;;;;;:::i;:::-;;:::i;8740:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8856:18:0;;;8829:7;8856:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8740:151;6860:100;6914:13;6947:5;6940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6860:100;:::o;9211:201::-;9294:4;4546:10;9350:32;4546:10;9366:7;9375:6;9350:8;:32::i;:::-;-1:-1:-1;9400:4:0;;9211:201;-1:-1:-1;;;9211:201:0:o;9992:295::-;10123:4;4546:10;10181:38;10197:4;4546:10;10212:6;10181:15;:38::i;:::-;10230:27;10240:4;10246:2;10250:6;10230:9;:27::i;:::-;-1:-1:-1;10275:4:0;;9992:295;-1:-1:-1;;;;9992:295:0:o;10696:240::-;4546:10;10784:4;10865:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10865:27:0;;;;;;;;;;10784:4;;4546:10;10840:66;;4546:10;;10865:27;;:40;;10895:10;;10865:40;:::i;:::-;10840:8;:66::i;18272:91::-;18328:27;4546:10;18348:6;18328:5;:27::i;:::-;18272:91;:::o;8151:127::-;-1:-1:-1;;;;;8252:18:0;;8225:7;8252:18;;;;;;;;;;;8151:127;;;;:::o;18682:164::-;18759:46;18775:7;4546:10;18798:6;18759:15;:46::i;:::-;18816:22;18822:7;18831:6;18816:5;:22::i;:::-;18682:164;;:::o;7079:104::-;7135:13;7168:7;7161:14;;;;;:::i;11439:438::-;4546:10;11532:4;11615:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11615:27:0;;;;;;;;;;11532:4;;4546:10;11661:35;;;;11653:85;;;;-1:-1:-1;;;11653:85:0;;5665:2:1;11653:85:0;;;5647:21:1;5704:2;5684:18;;;5677:30;5743:34;5723:18;;;5716:62;-1:-1:-1;;;5794:18:1;;;5787:35;5839:19;;11653:85:0;;;;;;;;;11774:60;11783:5;11790:7;11818:15;11799:16;:34;11774:8;:60::i;8484:193::-;8563:4;4546:10;8619:28;4546:10;8636:2;8640:6;8619:9;:28::i;15075:380::-;-1:-1:-1;;;;;15211:19:0;;15203:68;;;;-1:-1:-1;;;15203:68:0;;5260:2:1;15203:68:0;;;5242:21:1;5299:2;5279:18;;;5272:30;5338:34;5318:18;;;5311:62;-1:-1:-1;;;5389:18:1;;;5382:34;5433:19;;15203:68:0;5232:226:1;15203:68:0;-1:-1:-1;;;;;15290:21:0;;15282:68;;;;-1:-1:-1;;;15282:68:0;;3284:2:1;15282:68:0;;;3266:21:1;3323:2;3303:18;;;3296:30;3362:34;3342:18;;;3335:62;-1:-1:-1;;;3413:18:1;;;3406:32;3455:19;;15282:68:0;3256:224:1;15282:68:0;-1:-1:-1;;;;;15363:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15415:32;;6015:25:1;;;15415:32:0;;5988:18:1;15415:32:0;;;;;;;;15075:380;;;:::o;15742:453::-;-1:-1:-1;;;;;8856:18:0;;;15877:24;8856:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15944:37:0;;15940:248;;16026:6;16006:16;:26;;15998:68;;;;-1:-1:-1;;;15998:68:0;;3687:2:1;15998:68:0;;;3669:21:1;3726:2;3706:18;;;3699:30;3765:31;3745:18;;;3738:59;3814:18;;15998:68:0;3659:179:1;15998:68:0;16110:51;16119:5;16126:7;16154:6;16135:16;:25;16110:8;:51::i;:::-;15742:453;;;;:::o;12356:671::-;-1:-1:-1;;;;;12487:18:0;;12479:68;;;;-1:-1:-1;;;12479:68:0;;4854:2:1;12479:68:0;;;4836:21:1;4893:2;4873:18;;;4866:30;4932:34;4912:18;;;4905:62;-1:-1:-1;;;4983:18:1;;;4976:35;5028:19;;12479:68:0;4826:227:1;12479:68:0;-1:-1:-1;;;;;12566:16:0;;12558:64;;;;-1:-1:-1;;;12558:64:0;;2477:2:1;12558:64:0;;;2459:21:1;2516:2;2496:18;;;2489:30;2555:34;2535:18;;;2528:62;-1:-1:-1;;;2606:18:1;;;2599:33;2649:19;;12558:64:0;2449:225:1;12558:64:0;-1:-1:-1;;;;;12708:15:0;;12686:19;12708:15;;;;;;;;;;;12742:21;;;;12734:72;;;;-1:-1:-1;;;12734:72:0;;4045:2:1;12734:72:0;;;4027:21:1;4084:2;4064:18;;;4057:30;4123:34;4103:18;;;4096:62;-1:-1:-1;;;4174:18:1;;;4167:36;4220:19;;12734:72:0;4017:228:1;12734:72:0;-1:-1:-1;;;;;12842:15:0;;;:9;:15;;;;;;;;;;;12860:20;;;12842:38;;12902:13;;;;;;;;:23;;12874:6;;12842:9;12902:23;;12874:6;;12902:23;:::i;:::-;;;;;;;;12958:2;-1:-1:-1;;;;;12943:26:0;12952:4;-1:-1:-1;;;;;12943:26:0;;12962:6;12943:26;;;;6015:25:1;;6003:2;5988:18;;5970:76;12943:26:0;;;;;;;;12982:37;14046:591;;-1:-1:-1;;;;;14130:21:0;;14122:67;;;;-1:-1:-1;;;14122:67:0;;4452:2:1;14122:67:0;;;4434:21:1;4491:2;4471:18;;;4464:30;4530:34;4510:18;;;4503:62;-1:-1:-1;;;4581:18:1;;;4574:31;4622:19;;14122:67:0;4424:223:1;14122:67:0;-1:-1:-1;;;;;14289:18:0;;14264:22;14289:18;;;;;;;;;;;14326:24;;;;14318:71;;;;-1:-1:-1;;;14318:71:0;;2881:2:1;14318:71:0;;;2863:21:1;2920:2;2900:18;;;2893:30;2959:34;2939:18;;;2932:62;-1:-1:-1;;;3010:18:1;;;3003:32;3052:19;;14318:71:0;2853:224:1;14318:71:0;-1:-1:-1;;;;;14425:18:0;;:9;:18;;;;;;;;;;14446:23;;;14425:44;;14491:12;:22;;14463:6;;14425:9;14491:22;;14463:6;;14491:22;:::i;:::-;;;;-1:-1:-1;;14531:37:0;;6015:25:1;;;14557:1:0;;-1:-1:-1;;;;;14531:37:0;;;;;6003:2:1;5988:18;14531:37:0;5970:76:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1667:603::-;;1808:2;1837;1826:9;1819:21;1869:6;1863:13;1912:6;1907:2;1896:9;1892:18;1885:34;1937:4;1950:140;1964:6;1961:1;1958:13;1950:140;;;2059:14;;;2055:23;;2049:30;2025:17;;;2044:2;2021:26;2014:66;1979:10;;1950:140;;;2108:6;2105:1;2102:13;2099:2;;;2178:4;2173:2;2164:6;2153:9;2149:22;2145:31;2138:45;2099:2;-1:-1:-1;2254:2:1;2233:15;-1:-1:-1;;2229:29:1;2214:45;;;;2261:2;2210:54;;1788:482;-1:-1:-1;;;1788:482:1:o;6240:128::-;;6311:1;6307:6;6304:1;6301:13;6298:2;;;6317:18;;:::i;:::-;-1:-1:-1;6353:9:1;;6288:80::o;6373:125::-;;6441:1;6438;6435:8;6432:2;;;6446:18;;:::i;:::-;-1:-1:-1;6483:9:1;;6422:76::o;6503:380::-;6582:1;6578:12;;;;6625;;;6646:2;;6700:4;6692:6;6688:17;6678:27;;6646:2;6753;6745:6;6742:14;6722:18;6719:38;6716:2;;;6799:10;6794:3;6790:20;6787:1;6780:31;6834:4;6831:1;6824:15;6862:4;6859:1;6852:15;6716:2;;6558:325;;;:::o;6888:127::-;6949:10;6944:3;6940:20;6937:1;6930:31;6980:4;6977:1;6970:15;7004:4;7001:1;6994:15
Swarm Source
ipfs://737ec6a3d4a2be0123f4e6c0444491ee5ca0e008840c21744ae4c3697e9c5a9f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.