Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Storage
Overview
Max Total Supply
1,200,000,000 FLEET
Holders
3,923 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
5 FLEETValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FLEETToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //OpenZeppelin /contracts/token/ERC20/IERC20.sol /** * @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); } //OpenZeppelin /contracts/token/ERC20/extensions/IERC20Metadata.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); } //OpenZeppelin /contracts/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; } } //OpenZeppelin /contracts/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}. * 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}. */ abstract 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 {} } //OpenZeppelin /contracts/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. * * 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); } } /** * @dev Implementation of the Storage Fleet Token. */ contract FLEETToken is Ownable, ERC20 { uint256 _currentSupply; uint256 constant _totalSupply = 1200000000000000; constructor() ERC20("Fleet Token", "FLEET") {} function decimals() public view virtual override returns (uint8) { return 6; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function mint(address account, uint256 amount) public onlyOwner { require(_totalSupply + amount >= _totalSupply); // Overflow check require(_currentSupply + amount <= _totalSupply); // Supply check _currentSupply += amount; _mint(account, amount); } function mintedSupply() public view returns (uint256) { return _currentSupply; } }
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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedSupply","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":[],"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
60806040523480156200001157600080fd5b506040518060400160405280600b81526020016a233632b2ba102a37b5b2b760a91b81525060405180604001604052806005815260200164119311515560da1b8152506200006e62000068620000a260201b60201c565b620000a6565b815162000083906004906020850190620000f6565b50805162000099906005906020840190620000f6565b505050620001d9565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000104906200019c565b90600052602060002090601f01602090048101928262000128576000855562000173565b82601f106200014357805160ff191683800117855562000173565b8280016001018555821562000173579182015b828111156200017357825182559160200191906001019062000156565b506200018192915062000185565b5090565b5b8082111562000181576000815560010162000186565b600181811c90821680620001b157607f821691505b60208210811415620001d357634e487b7160e01b600052602260045260246000fd5b50919050565b610c2e80620001e96000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461020e578063c1bd8cf914610221578063dd62ed3e14610229578063f2fde38b1461026257600080fd5b8063715018a6146101d05780638da5cb5b146101d857806395d89b41146101f3578063a457c2d7146101fb57600080fd5b8063313ce567116100d3578063313ce56714610170578063395093511461017f57806340c10f191461019257806370a08231146101a757600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd1461015d575b600080fd5b61010d610275565b60405161011a9190610b11565b60405180910390f35b610136610131366004610ae8565b610307565b604051901515815260200161011a565b66044364c5bb00005b60405190815260200161011a565b61013661016b366004610aad565b61031d565b6040516006815260200161011a565b61013661018d366004610ae8565b6103cc565b6101a56101a0366004610ae8565b610408565b005b61014f6101b5366004610a5a565b6001600160a01b031660009081526001602052604090205490565b6101a5610496565b6000546040516001600160a01b03909116815260200161011a565b61010d6104cc565b610136610209366004610ae8565b6104db565b61013661021c366004610ae8565b610574565b60065461014f565b61014f610237366004610a7b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a5610270366004610a5a565b610581565b60606004805461028490610bbd565b80601f01602080910402602001604051908101604052809291908181526020018280546102b090610bbd565b80156102fd5780601f106102d2576101008083540402835291602001916102fd565b820191906000526020600020905b8154815290600101906020018083116102e057829003601f168201915b5050505050905090565b600061031433848461061c565b50600192915050565b600061032a848484610740565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103c1853385840361061c565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610314918590610403908690610b99565b61061c565b6000546001600160a01b031633146104325760405162461bcd60e51b81526004016103ab90610b64565b66044364c5bb00006104448282610b99565b101561044f57600080fd5b66044364c5bb0000816006546104659190610b99565b111561047057600080fd5b80600660008282546104829190610b99565b909155506104929050828261090f565b5050565b6000546001600160a01b031633146104c05760405162461bcd60e51b81526004016103ab90610b64565b6104ca60006109ee565b565b60606005805461028490610bbd565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561055d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ab565b61056a338585840361061c565b5060019392505050565b6000610314338484610740565b6000546001600160a01b031633146105ab5760405162461bcd60e51b81526004016103ab90610b64565b6001600160a01b0381166106105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ab565b610619816109ee565b50565b6001600160a01b03831661067e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ab565b6001600160a01b0382166106df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ab565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ab565b6001600160a01b0382166108065760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ab565b6001600160a01b0383166000908152600160205260409020548181101561087e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ab565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108b5908490610b99565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090191815260200190565b60405180910390a350505050565b6001600160a01b0382166109655760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ab565b80600360008282546109779190610b99565b90915550506001600160a01b038216600090815260016020526040812080548392906109a4908490610b99565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610a5557600080fd5b919050565b600060208284031215610a6b578081fd5b610a7482610a3e565b9392505050565b60008060408385031215610a8d578081fd5b610a9683610a3e565b9150610aa460208401610a3e565b90509250929050565b600080600060608486031215610ac1578081fd5b610aca84610a3e565b9250610ad860208501610a3e565b9150604084013590509250925092565b60008060408385031215610afa578182fd5b610b0383610a3e565b946020939093013593505050565b6000602080835283518082850152825b81811015610b3d57858101830151858201604001528201610b21565b81811115610b4e5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610bb857634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610bd157607f821691505b60208210811415610bf257634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220795db9825b957a91fd876d70069e970e0d7fc42ff0658dcde32d64acaeb340b364736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461020e578063c1bd8cf914610221578063dd62ed3e14610229578063f2fde38b1461026257600080fd5b8063715018a6146101d05780638da5cb5b146101d857806395d89b41146101f3578063a457c2d7146101fb57600080fd5b8063313ce567116100d3578063313ce56714610170578063395093511461017f57806340c10f191461019257806370a08231146101a757600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd1461015d575b600080fd5b61010d610275565b60405161011a9190610b11565b60405180910390f35b610136610131366004610ae8565b610307565b604051901515815260200161011a565b66044364c5bb00005b60405190815260200161011a565b61013661016b366004610aad565b61031d565b6040516006815260200161011a565b61013661018d366004610ae8565b6103cc565b6101a56101a0366004610ae8565b610408565b005b61014f6101b5366004610a5a565b6001600160a01b031660009081526001602052604090205490565b6101a5610496565b6000546040516001600160a01b03909116815260200161011a565b61010d6104cc565b610136610209366004610ae8565b6104db565b61013661021c366004610ae8565b610574565b60065461014f565b61014f610237366004610a7b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a5610270366004610a5a565b610581565b60606004805461028490610bbd565b80601f01602080910402602001604051908101604052809291908181526020018280546102b090610bbd565b80156102fd5780601f106102d2576101008083540402835291602001916102fd565b820191906000526020600020905b8154815290600101906020018083116102e057829003601f168201915b5050505050905090565b600061031433848461061c565b50600192915050565b600061032a848484610740565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103c1853385840361061c565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610314918590610403908690610b99565b61061c565b6000546001600160a01b031633146104325760405162461bcd60e51b81526004016103ab90610b64565b66044364c5bb00006104448282610b99565b101561044f57600080fd5b66044364c5bb0000816006546104659190610b99565b111561047057600080fd5b80600660008282546104829190610b99565b909155506104929050828261090f565b5050565b6000546001600160a01b031633146104c05760405162461bcd60e51b81526004016103ab90610b64565b6104ca60006109ee565b565b60606005805461028490610bbd565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561055d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ab565b61056a338585840361061c565b5060019392505050565b6000610314338484610740565b6000546001600160a01b031633146105ab5760405162461bcd60e51b81526004016103ab90610b64565b6001600160a01b0381166106105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ab565b610619816109ee565b50565b6001600160a01b03831661067e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ab565b6001600160a01b0382166106df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ab565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ab565b6001600160a01b0382166108065760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ab565b6001600160a01b0383166000908152600160205260409020548181101561087e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ab565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108b5908490610b99565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161090191815260200190565b60405180910390a350505050565b6001600160a01b0382166109655760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ab565b80600360008282546109779190610b99565b90915550506001600160a01b038216600090815260016020526040812080548392906109a4908490610b99565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610a5557600080fd5b919050565b600060208284031215610a6b578081fd5b610a7482610a3e565b9392505050565b60008060408385031215610a8d578081fd5b610a9683610a3e565b9150610aa460208401610a3e565b90509250929050565b600080600060608486031215610ac1578081fd5b610aca84610a3e565b9250610ad860208501610a3e565b9150604084013590509250925092565b60008060408385031215610afa578182fd5b610b0383610a3e565b946020939093013593505050565b6000602080835283518082850152825b81811015610b3d57858101830151858201604001528201610b21565b81811115610b4e5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610bb857634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610bd157607f821691505b60208210811415610bf257634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220795db9825b957a91fd876d70069e970e0d7fc42ff0658dcde32d64acaeb340b364736f6c63430008040033
Deployed Bytecode Sourcemap
18564:844:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6301:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8468:169;;;;;;:::i;:::-;;:::i;:::-;;;1653:14:1;;1646:22;1628:41;;1616:2;1601:18;8468:169:0;1583:92:1;18868:108:0;18676:16;18868:108;;;6402:25:1;;;6390:2;6375:18;18868:108:0;6357:76:1;9119:492:0;;;;;;:::i;:::-;;:::i;18763:93::-;;;18847:1;6580:36:1;;6568:2;6553:18;18763:93:0;6535:87:1;10020:215:0;;;;;;:::i;:::-;;:::i;18988:306::-;;;;;;:::i;:::-;;:::i;:::-;;7592:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7693:18:0;7666:7;7693:18;;;:9;:18;;;;;;;7592:127;17871:94;;;:::i;17220:87::-;17266:7;17293:6;17220:87;;-1:-1:-1;;;;;17293:6:0;;;1426:51:1;;1414:2;1399:18;17220:87:0;1381:102:1;6520:104:0;;;:::i;10738:413::-;;;;;;:::i;:::-;;:::i;7932:175::-;;;;;;:::i;:::-;;:::i;19306:99::-;19383:14;;19306:99;;8170:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8286:18:0;;;8259:7;8286:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8170:151;18120:192;;;;;;:::i;:::-;;:::i;6301:100::-;6355:13;6388:5;6381:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6301:100;:::o;8468:169::-;8551:4;8568:39;4140:10;8591:7;8600:6;8568:8;:39::i;:::-;-1:-1:-1;8625:4:0;8468:169;;;;:::o;9119:492::-;9259:4;9276:36;9286:6;9294:9;9305:6;9276:9;:36::i;:::-;-1:-1:-1;;;;;9352:19:0;;9325:24;9352:19;;;:11;:19;;;;;;;;4140:10;9352:33;;;;;;;;9404:26;;;;9396:79;;;;-1:-1:-1;;;9396:79:0;;4111:2:1;9396:79:0;;;4093:21:1;4150:2;4130:18;;;4123:30;4189:34;4169:18;;;4162:62;-1:-1:-1;;;4240:18:1;;;4233:38;4288:19;;9396:79:0;;;;;;;;;9511:57;9520:6;4140:10;9561:6;9542:16;:25;9511:8;:57::i;:::-;-1:-1:-1;9599:4:0;;9119:492;-1:-1:-1;;;;9119:492:0:o;10020:215::-;4140:10;10108:4;10157:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10157:34:0;;;;;;;;;;10108:4;;10125:80;;10148:7;;10157:47;;10194:10;;10157:47;:::i;:::-;10125:8;:80::i;18988:306::-;17266:7;17293:6;-1:-1:-1;;;;;17293:6:0;4140:10;17440:23;17432:68;;;;-1:-1:-1;;;17432:68:0;;;;;;;:::i;:::-;18676:16:::1;19081:21;19096:6:::0;18676:16;19081:21:::1;:::i;:::-;:37;;19073:46;;;::::0;::::1;;18676:16;19173:6;19156:14;;:23;;;;:::i;:::-;:39;;19148:48;;;::::0;::::1;;19247:6;19229:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;19264:22:0::1;::::0;-1:-1:-1;19270:7:0;19279:6;19264:5:::1;:22::i;:::-;18988:306:::0;;:::o;17871:94::-;17266:7;17293:6;-1:-1:-1;;;;;17293:6:0;4140:10;17440:23;17432:68;;;;-1:-1:-1;;;17432:68:0;;;;;;;:::i;:::-;17936:21:::1;17954:1;17936:9;:21::i;:::-;17871:94::o:0;6520:104::-;6576:13;6609:7;6602:14;;;;;:::i;10738:413::-;4140:10;10831:4;10875:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10875:34:0;;;;;;;;;;10928:35;;;;10920:85;;;;-1:-1:-1;;;10920:85:0;;5692:2:1;10920:85:0;;;5674:21:1;5731:2;5711:18;;;5704:30;5770:34;5750:18;;;5743:62;-1:-1:-1;;;5821:18:1;;;5814:35;5866:19;;10920:85:0;5664:227:1;10920:85:0;11041:67;4140:10;11064:7;11092:15;11073:16;:34;11041:8;:67::i;:::-;-1:-1:-1;11139:4:0;;10738:413;-1:-1:-1;;;10738:413:0:o;7932:175::-;8018:4;8035:42;4140:10;8059:9;8070:6;8035:9;:42::i;18120:192::-;17266:7;17293:6;-1:-1:-1;;;;;17293:6:0;4140:10;17440:23;17432:68;;;;-1:-1:-1;;;17432:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18209:22:0;::::1;18201:73;;;::::0;-1:-1:-1;;;18201:73:0;;2894:2:1;18201:73:0::1;::::0;::::1;2876:21:1::0;2933:2;2913:18;;;2906:30;2972:34;2952:18;;;2945:62;-1:-1:-1;;;3023:18:1;;;3016:36;3069:19;;18201:73:0::1;2866:228:1::0;18201:73:0::1;18285:19;18295:8;18285:9;:19::i;:::-;18120:192:::0;:::o;14422:380::-;-1:-1:-1;;;;;14558:19:0;;14550:68;;;;-1:-1:-1;;;14550:68:0;;5287:2:1;14550:68:0;;;5269:21:1;5326:2;5306:18;;;5299:30;5365:34;5345:18;;;5338:62;-1:-1:-1;;;5416:18:1;;;5409:34;5460:19;;14550:68:0;5259:226:1;14550:68:0;-1:-1:-1;;;;;14637:21:0;;14629:68;;;;-1:-1:-1;;;14629:68:0;;3301:2:1;14629:68:0;;;3283:21:1;3340:2;3320:18;;;3313:30;3379:34;3359:18;;;3352:62;-1:-1:-1;;;3430:18:1;;;3423:32;3472:19;;14629:68:0;3273:224:1;14629:68:0;-1:-1:-1;;;;;14710:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14762:32;;6402:25:1;;;14762:32:0;;6375:18:1;14762:32:0;;;;;;;14422:380;;;:::o;11641:733::-;-1:-1:-1;;;;;11781:20:0;;11773:70;;;;-1:-1:-1;;;11773:70:0;;4881:2:1;11773:70:0;;;4863:21:1;4920:2;4900:18;;;4893:30;4959:34;4939:18;;;4932:62;-1:-1:-1;;;5010:18:1;;;5003:35;5055:19;;11773:70:0;4853:227:1;11773:70:0;-1:-1:-1;;;;;11862:23:0;;11854:71;;;;-1:-1:-1;;;11854:71:0;;2490:2:1;11854:71:0;;;2472:21:1;2529:2;2509:18;;;2502:30;2568:34;2548:18;;;2541:62;-1:-1:-1;;;2619:18:1;;;2612:33;2662:19;;11854:71:0;2462:225:1;11854:71:0;-1:-1:-1;;;;;12022:17:0;;11998:21;12022:17;;;:9;:17;;;;;;12058:23;;;;12050:74;;;;-1:-1:-1;;;12050:74:0;;3704:2:1;12050:74:0;;;3686:21:1;3743:2;3723:18;;;3716:30;3782:34;3762:18;;;3755:62;-1:-1:-1;;;3833:18:1;;;3826:36;3879:19;;12050:74:0;3676:228:1;12050:74:0;-1:-1:-1;;;;;12160:17:0;;;;;;;:9;:17;;;;;;12180:22;;;12160:42;;12224:20;;;;;;;;:30;;12196:6;;12160:17;12224:30;;12196:6;;12224:30;:::i;:::-;;;;;;;;12289:9;-1:-1:-1;;;;;12272:35:0;12281:6;-1:-1:-1;;;;;12272:35:0;;12300:6;12272:35;;;;6402:25:1;;6390:2;6375:18;;6357:76;12272:35:0;;;;;;;;11641:733;;;;:::o;12661:399::-;-1:-1:-1;;;;;12745:21:0;;12737:65;;;;-1:-1:-1;;;12737:65:0;;6098:2:1;12737:65:0;;;6080:21:1;6137:2;6117:18;;;6110:30;6176:33;6156:18;;;6149:61;6227:18;;12737:65:0;6070:181:1;12737:65:0;12893:6;12877:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12910:18:0;;;;;;:9;:18;;;;;:28;;12932:6;;12910:18;:28;;12932:6;;12910:28;:::i;:::-;;;;-1:-1:-1;;12954:37:0;;6402:25:1;;;-1:-1:-1;;;;;12954:37:0;;;12971:1;;12954:37;;6390:2:1;6375:18;12954:37:0;;;;;;;18988:306;;:::o;18320:173::-;18376:16;18395:6;;-1:-1:-1;;;;;18412:17:0;;;-1:-1:-1;;;;;;18412:17:0;;;;;;18445:40;;18395:6;;;;;;;18445:40;;18376:16;18445:40;18320:173;;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;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::-;461:6;469;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::-;745:6;753;761;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::-;1079:6;1087;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;1680:603::-;1792:4;1821:2;1850;1839:9;1832:21;1882:6;1876:13;1925:6;1920:2;1909:9;1905:18;1898:34;1950:4;1963:140;1977:6;1974:1;1971:13;1963:140;;;2072:14;;;2068:23;;2062:30;2038:17;;;2057:2;2034:26;2027:66;1992:10;;1963:140;;;2121:6;2118:1;2115:13;2112:2;;;2191:4;2186:2;2177:6;2166:9;2162:22;2158:31;2151:45;2112:2;-1:-1:-1;2267:2:1;2246:15;-1:-1:-1;;2242:29:1;2227:45;;;;2274:2;2223:54;;1801:482;-1:-1:-1;;;1801:482:1:o;4318:356::-;4520:2;4502:21;;;4539:18;;;4532:30;4598:34;4593:2;4578:18;;4571:62;4665:2;4650:18;;4492:182::o;6627:229::-;6667:3;6698:1;6694:6;6691:1;6688:13;6685:2;;;-1:-1:-1;;;6724:33:1;;6780:4;6777:1;6770:15;6810:4;6731:3;6798:17;6685:2;-1:-1:-1;6841:9:1;;6675:181::o;6861:380::-;6940:1;6936:12;;;;6983;;;7004:2;;7058:4;7050:6;7046:17;7036:27;;7004:2;7111;7103:6;7100:14;7080:18;7077:38;7074:2;;;7157:10;7152:3;7148:20;7145:1;7138:31;7192:4;7189:1;7182:15;7220:4;7217:1;7210:15;7074:2;;6916:325;;;:::o
Swarm Source
ipfs://795db9825b957a91fd876d70069e970e0d7fc42ff0658dcde32d64acaeb340b3
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.