ERC-20
Overview
Max Total Supply
580,000 T002
Holders
2
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TimeToken
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "Ownable.sol"; import "ERC20.sol"; contract TimeToken is ERC20, Ownable { constructor() public ERC20("Time Token 002", "T002") { _mint(msg.sender, 580000000000000000000000); } function sendAnnualFee(address _address, uint256 _annualFee) public onlyOwner { transfer(_address, _annualFee); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "IERC20.sol"; import "IERC20Metadata.sol"; import "Context.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}. * 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 guidelines: functions revert instead * of 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 {} }
// SPDX-License-Identifier: MIT 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"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":"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":[],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_annualFee","type":"uint256"}],"name":"sendAnnualFee","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600e81526d2a34b6b2902a37b5b2b71018181960911b6020808301918252835180850190945260048452632a18181960e11b9084015281519192916200006491600391620001f1565b5080516200007a906004906020840190620001f1565b5050506200009762000091620000b360201b60201c565b620000b7565b620000ad33697ad1dcedb44c6280000062000109565b620002fa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001645760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000178919062000297565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a790849062000297565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001ff90620002be565b90600052602060002090601f0160209004810192826200022357600085556200026e565b82601f106200023e57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026e57825182559160200191906001019062000251565b506200027c92915062000280565b5090565b5b808211156200027c576000815560010162000281565b60008219821115620002b957634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002d357607f821691505b602082108103620002f457634e487b7160e01b600052602260045260246000fd5b50919050565b610aef806200030a6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806318160ddd116100d357806318160ddd1461015057806323b872dd14610162578063313ce56714610175578063395093511461018457600080fd5b806306fdde03146100fa578063095ea7b3146101185780630edde9451461013b575b600080fd5b61010261025d565b60405161010f91906108f8565b60405180910390f35b61012b610126366004610969565b6102ef565b604051901515815260200161010f565b61014e610149366004610969565b610305565b005b6002545b60405190815260200161010f565b61012b610170366004610993565b610347565b6040516012815260200161010f565b61012b610192366004610969565b6103f1565b6101546101a53660046109cf565b6001600160a01b031660009081526020819052604090205490565b61014e61042d565b6005546040516001600160a01b03909116815260200161010f565b610102610463565b61012b6101f9366004610969565b610472565b61012b61020c366004610969565b61050b565b61015461021f3660046109f1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61014e6102583660046109cf565b610518565b60606003805461026c90610a24565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610a24565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846105b3565b50600192915050565b6005546001600160a01b031633146103385760405162461bcd60e51b815260040161032f90610a5e565b60405180910390fd5b610342828261050b565b505050565b60006103548484846106d7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161032f565b6103e685338584036105b3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102fc918590610428908690610a93565b6105b3565b6005546001600160a01b031633146104575760405162461bcd60e51b815260040161032f90610a5e565b61046160006108a6565b565b60606004805461026c90610a24565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161032f565b61050133858584036105b3565b5060019392505050565b60006102fc3384846106d7565b6005546001600160a01b031633146105425760405162461bcd60e51b815260040161032f90610a5e565b6001600160a01b0381166105a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161032f565b6105b0816108a6565b50565b6001600160a01b0383166106155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161032f565b6001600160a01b0382166106765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161032f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661073b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161032f565b6001600160a01b03821661079d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161032f565b6001600160a01b038316600090815260208190526040902054818110156108155760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161032f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061084c908490610a93565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161089891815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561092557858101830151858201604001528201610909565b81811115610937576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461096457600080fd5b919050565b6000806040838503121561097c57600080fd5b6109858361094d565b946020939093013593505050565b6000806000606084860312156109a857600080fd5b6109b18461094d565b92506109bf6020850161094d565b9150604084013590509250925092565b6000602082840312156109e157600080fd5b6109ea8261094d565b9392505050565b60008060408385031215610a0457600080fd5b610a0d8361094d565b9150610a1b6020840161094d565b90509250929050565b600181811c90821680610a3857607f821691505b602082108103610a5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ab457634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220fa023f1dc377f70b639e7186525659b0b290ed312d8efd9f6870ff40d02af94664736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806318160ddd116100d357806318160ddd1461015057806323b872dd14610162578063313ce56714610175578063395093511461018457600080fd5b806306fdde03146100fa578063095ea7b3146101185780630edde9451461013b575b600080fd5b61010261025d565b60405161010f91906108f8565b60405180910390f35b61012b610126366004610969565b6102ef565b604051901515815260200161010f565b61014e610149366004610969565b610305565b005b6002545b60405190815260200161010f565b61012b610170366004610993565b610347565b6040516012815260200161010f565b61012b610192366004610969565b6103f1565b6101546101a53660046109cf565b6001600160a01b031660009081526020819052604090205490565b61014e61042d565b6005546040516001600160a01b03909116815260200161010f565b610102610463565b61012b6101f9366004610969565b610472565b61012b61020c366004610969565b61050b565b61015461021f3660046109f1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61014e6102583660046109cf565b610518565b60606003805461026c90610a24565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610a24565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc3384846105b3565b50600192915050565b6005546001600160a01b031633146103385760405162461bcd60e51b815260040161032f90610a5e565b60405180910390fd5b610342828261050b565b505050565b60006103548484846106d7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103d95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161032f565b6103e685338584036105b3565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102fc918590610428908690610a93565b6105b3565b6005546001600160a01b031633146104575760405162461bcd60e51b815260040161032f90610a5e565b61046160006108a6565b565b60606004805461026c90610a24565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161032f565b61050133858584036105b3565b5060019392505050565b60006102fc3384846106d7565b6005546001600160a01b031633146105425760405162461bcd60e51b815260040161032f90610a5e565b6001600160a01b0381166105a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161032f565b6105b0816108a6565b50565b6001600160a01b0383166106155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161032f565b6001600160a01b0382166106765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161032f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661073b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161032f565b6001600160a01b03821661079d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161032f565b6001600160a01b038316600090815260208190526040902054818110156108155760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161032f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061084c908490610a93565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161089891815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561092557858101830151858201604001528201610909565b81811115610937576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461096457600080fd5b919050565b6000806040838503121561097c57600080fd5b6109858361094d565b946020939093013593505050565b6000806000606084860312156109a857600080fd5b6109b18461094d565b92506109bf6020850161094d565b9150604084013590509250925092565b6000602082840312156109e157600080fd5b6109ea8261094d565b9392505050565b60008060408385031215610a0457600080fd5b610a0d8361094d565b9150610a1b6020840161094d565b90509250929050565b600181811c90821680610a3857607f821691505b602082108103610a5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ab457634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220fa023f1dc377f70b639e7186525659b0b290ed312d8efd9f6870ff40d02af94664736f6c634300080d0033
Deployed Bytecode Sourcemap
101:309:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2047:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:166;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:6;;1211:22;1193:41;;1181:2;1166:18;4144:166:1;1053:187:6;263:145:5;;;;;;:::i;:::-;;:::i;:::-;;3135:106:1;3222:12;;3135:106;;;1391:25:6;;;1379:2;1364:18;3135:106:1;1245:177:6;4777:478:1;;;;;;:::i;:::-;;:::i;2984:91::-;;;3066:2;1902:36:6;;1890:2;1875:18;2984:91:1;1760:184:6;5650:212:1;;;;;;:::i;:::-;;:::i;3299:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3399:18:1;3373:7;3399:18;;;;;;;;;;;;3299:125;1596:92:4;;;:::i;964:85::-;1036:6;;964:85;;-1:-1:-1;;;;;1036:6:4;;;2286:51:6;;2274:2;2259:18;964:85:4;2140:203:6;2258:102:1;;;:::i;6349:405::-;;;;;;:::i;:::-;;:::i;3627:172::-;;;;;;:::i;:::-;;:::i;3857:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3972:18:1;;;3946:7;3972:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3857:149;1837:189:4;;;;;;:::i;:::-;;:::i;2047:98:1:-;2101:13;2133:5;2126:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2047:98;:::o;4144:166::-;4227:4;4243:39;665:10:0;4266:7:1;4275:6;4243:8;:39::i;:::-;-1:-1:-1;4299:4:1;4144:166;;;;:::o;263:145:5:-;1036:6:4;;-1:-1:-1;;;;;1036:6:4;665:10:0;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;;;;;;;;;371:30:5::1;380:8;390:10;371:8;:30::i;:::-;;263:145:::0;;:::o;4777:478:1:-;4913:4;4929:36;4939:6;4947:9;4958:6;4929:9;:36::i;:::-;-1:-1:-1;;;;;5003:19:1;;4976:24;5003:19;;;:11;:19;;;;;;;;665:10:0;5003:33:1;;;;;;;;5054:26;;;;5046:79;;;;-1:-1:-1;;;5046:79:1;;3561:2:6;5046:79:1;;;3543:21:6;3600:2;3580:18;;;3573:30;3639:34;3619:18;;;3612:62;-1:-1:-1;;;3690:18:6;;;3683:38;3738:19;;5046:79:1;3359:404:6;5046:79:1;5159:57;5168:6;665:10:0;5209:6:1;5190:16;:25;5159:8;:57::i;:::-;-1:-1:-1;5244:4:1;;4777:478;-1:-1:-1;;;;4777:478:1:o;5650:212::-;665:10:0;5738:4:1;5786:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5786:34:1;;;;;;;;;;5738:4;;5754:80;;5777:7;;5786:47;;5823:10;;5786:47;:::i;:::-;5754:8;:80::i;1596:92:4:-;1036:6;;-1:-1:-1;;;;;1036:6:4;665:10:0;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;1660:21:::1;1678:1;1660:9;:21::i;:::-;1596:92::o:0;2258:102:1:-;2314:13;2346:7;2339:14;;;;;:::i;6349:405::-;665:10:0;6442:4:1;6485:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6485:34:1;;;;;;;;;;6537:35;;;;6529:85;;;;-1:-1:-1;;;6529:85:1;;4200:2:6;6529:85:1;;;4182:21:6;4239:2;4219:18;;;4212:30;4278:34;4258:18;;;4251:62;-1:-1:-1;;;4329:18:6;;;4322:35;4374:19;;6529:85:1;3998:401:6;6529:85:1;6648:67;665:10:0;6671:7:1;6699:15;6680:16;:34;6648:8;:67::i;:::-;-1:-1:-1;6743:4:1;;6349:405;-1:-1:-1;;;6349:405:1:o;3627:172::-;3713:4;3729:42;665:10:0;3753:9:1;3764:6;3729:9;:42::i;1837:189:4:-;1036:6;;-1:-1:-1;;;;;1036:6:4;665:10:0;1176:23:4;1168:68;;;;-1:-1:-1;;;1168:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;1925:22:4;::::1;1917:73;;;::::0;-1:-1:-1;;;1917:73:4;;4606:2:6;1917:73:4::1;::::0;::::1;4588:21:6::0;4645:2;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;-1:-1:-1;;;4735:18:6;;;4728:36;4781:19;;1917:73:4::1;4404:402:6::0;1917:73:4::1;2000:19;2010:8;2000:9;:19::i;:::-;1837:189:::0;:::o;9925:370:1:-;-1:-1:-1;;;;;10056:19:1;;10048:68;;;;-1:-1:-1;;;10048:68:1;;5013:2:6;10048:68:1;;;4995:21:6;5052:2;5032:18;;;5025:30;5091:34;5071:18;;;5064:62;-1:-1:-1;;;5142:18:6;;;5135:34;5186:19;;10048:68:1;4811:400:6;10048:68:1;-1:-1:-1;;;;;10134:21:1;;10126:68;;;;-1:-1:-1;;;10126:68:1;;5418:2:6;10126:68:1;;;5400:21:6;5457:2;5437:18;;;5430:30;5496:34;5476:18;;;5469:62;-1:-1:-1;;;5547:18:6;;;5540:32;5589:19;;10126:68:1;5216:398:6;10126:68:1;-1:-1:-1;;;;;10205:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10256:32;;1391:25:6;;;10256:32:1;;1364:18:6;10256:32:1;;;;;;;9925:370;;;:::o;7228:713::-;-1:-1:-1;;;;;7363:20:1;;7355:70;;;;-1:-1:-1;;;7355:70:1;;5821:2:6;7355:70:1;;;5803:21:6;5860:2;5840:18;;;5833:30;5899:34;5879:18;;;5872:62;-1:-1:-1;;;5950:18:6;;;5943:35;5995:19;;7355:70:1;5619:401:6;7355:70:1;-1:-1:-1;;;;;7443:23:1;;7435:71;;;;-1:-1:-1;;;7435:71:1;;6227:2:6;7435:71:1;;;6209:21:6;6266:2;6246:18;;;6239:30;6305:34;6285:18;;;6278:62;-1:-1:-1;;;6356:18:6;;;6349:33;6399:19;;7435:71:1;6025:399:6;7435:71:1;-1:-1:-1;;;;;7599:17:1;;7575:21;7599:17;;;;;;;;;;;7634:23;;;;7626:74;;;;-1:-1:-1;;;7626:74:1;;6631:2:6;7626:74:1;;;6613:21:6;6670:2;6650:18;;;6643:30;6709:34;6689:18;;;6682:62;-1:-1:-1;;;6760:18:6;;;6753:36;6806:19;;7626:74:1;6429:402:6;7626:74:1;-1:-1:-1;;;;;7734:17:1;;;:9;:17;;;;;;;;;;;7754:22;;;7734:42;;7796:20;;;;;;;;:30;;7770:6;;7734:9;7796:30;;7770:6;;7796:30;:::i;:::-;;;;;;;;7859:9;-1:-1:-1;;;;;7842:35:1;7851:6;-1:-1:-1;;;;;7842:35:1;;7870:6;7842:35;;;;1391:25:6;;1379:2;1364:18;;1245:177;7842:35:1;;;;;;;;7345:596;7228:713;;;:::o;2032:169:4:-;2106:6;;;-1:-1:-1;;;;;2122:17:4;;;-1:-1:-1;;;;;;2122:17:4;;;;;;;2154:40;;2106:6;;;2122:17;2106:6;;2154:40;;2087:16;;2154:40;2077:124;2032:169;:::o;14:597:6:-;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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:6;574:15;-1:-1:-1;;570:29:6;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:6:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:6;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:6:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:6:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:356::-;3200:2;3182:21;;;3219:18;;;3212:30;3278:34;3273:2;3258:18;;3251:62;3345:2;3330:18;;2998:356::o;3768:225::-;3808:3;3839:1;3835:6;3832:1;3829:13;3826:136;;;3884:10;3879:3;3875:20;3872:1;3865:31;3919:4;3916:1;3909:15;3947:4;3944:1;3937:15;3826:136;-1:-1:-1;3978:9:6;;3768:225::o
Swarm Source
ipfs://fa023f1dc377f70b639e7186525659b0b290ed312d8efd9f6870ff40d02af946
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.