Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
Lite
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-07-14 */ // SPDX-License-Identifier: MIT /* * Token has been generated using https://vittominacori.github.io/bep20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * using the same generator. It is not an issue. It means that you won't need to verify your source code because of * it is already verified. * * DISCLAIMER: GENERATOR'S AUTHOR IS FREE OF ANY LIABILITY REGARDING THE TOKEN AND THE USE THAT IS MADE OF IT. * The following code is provided under MIT License. Anyone can use it as per their needs. * The generator's purpose is to make people able to tokenize their ideas without coding. * Source code is well tested and continuously updated to reduce risk of bugs and to introduce language optimizations. * Anyway the purchase of tokens involves a high degree of risk. Before acquiring tokens, it is recommended to * carefully weighs all the information and risks detailed in Token owner's Conditions. */ // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/token/BEP20/lib/IBEP20.sol pragma solidity ^0.8.0; /** * @dev Interface of the BEP standard. */ interface IBEP20 { /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @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 Returns the token owner. */ function getOwner() external view returns (address); /** * @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 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 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 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 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: contracts/token/BEP20/lib/BEP20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IBEP20} 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}. * * 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 BEP20 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 {IBEP20-approve}. */ contract BEP20 is Ownable, IBEP20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {BEP20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IBEP20-balanceOf} and {IBEP20-transfer}. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev See {IBEP20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IBEP20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IBEP20-getOwner}. */ function getOwner() public view override returns (address) { return owner(); } /** * @dev See {IBEP20-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 {IBEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}. * * 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, "BEP20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev See {IBEP20-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 {IBEP20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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 {IBEP20-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 {IBEP20-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, "BEP20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "BEP20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "BEP20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(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), "BEP20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "BEP20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } } // File: contracts/service/ServicePayer.sol pragma solidity ^0.8.0; interface IPayable { function pay(string memory serviceName) external payable; } /** * @title ServicePayer * @dev Implementation of the ServicePayer */ abstract contract ServicePayer { constructor (address payable receiver, string memory serviceName) payable { IPayable(receiver).pay{value: msg.value}(serviceName); } } // File: contracts/utils/GeneratorCopyright.sol pragma solidity ^0.8.0; /** * @title Lite * @author Fractal * @dev Implementation of the Lite */ contract GeneratorCopyright { string private constant _GENERATOR = "Lite"; string private _version; constructor (string memory version_) { _version = version_; } /** * @dev Returns the token generator tool. */ function generator() public pure returns (string memory) { return _GENERATOR; } /** * @dev Returns the token generator version. */ function version() public view returns (string memory) { return _version; } } // File: contracts/token/BEP20/Lite.sol pragma solidity ^0.8.0; /** * @title Lite * @author Fractal * @dev Implementation of the Lite */ contract Lite is BEP20, ServicePayer, GeneratorCopyright("v2.0.0") { constructor ( string memory name, string memory symbol, uint256 initialBalance, address payable feeReceiver ) BEP20(name, symbol) ServicePayer(feeReceiver, "Lite") payable { require(initialBalance > 0, "Lite: supply cannot be zero"); _mint(_msgSender(), initialBalance); } }
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":"initialBalance","type":"uint256"},{"internalType":"address payable","name":"feeReceiver","type":"address"}],"stateMutability":"payable","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":[],"name":"generator","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040516200112438038062001124833981016040819052620000269162000405565b60405180604001604052806006815260200165076322e302e360d41b81525081604051806040016040528060048152602001634c69746560e01b8152508686600062000077620001e760201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d6906004906020850190620002d0565b508051620000ec906005906020840190620002d0565b50506006805460ff19166012179055506040516315b36b9760e11b81526001600160a01b03831690632b66d72e9034906200012c90859060040162000496565b6000604051808303818588803b1580156200014657600080fd5b505af11580156200015b573d6000803e3d6000fd5b50508551620001799550600794506020870193509150620002d09050565b505060008211620001d15760405162461bcd60e51b815260206004820152601b60248201527f4c6974653a20737570706c792063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b620001dd3383620001eb565b5050505062000576565b3390565b6001600160a01b038216620002435760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001c8565b8060036000828254620002579190620004cb565b90915550506001600160a01b0382166000908152600160205260408120805483929062000286908490620004cb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002de9062000523565b90600052602060002090601f0160209004810192826200030257600085556200034d565b82601f106200031d57805160ff19168380011785556200034d565b828001600101855582156200034d579182015b828111156200034d57825182559160200191906001019062000330565b506200035b9291506200035f565b5090565b5b808211156200035b576000815560010162000360565b600082601f83011262000387578081fd5b81516001600160401b0380821115620003a457620003a462000560565b604051601f8301601f19908116603f01168101908282118183101715620003cf57620003cf62000560565b81604052838152866020858801011115620003e8578485fd5b620003fb846020830160208901620004f0565b9695505050505050565b600080600080608085870312156200041b578384fd5b84516001600160401b038082111562000432578586fd5b620004408883890162000376565b9550602087015191508082111562000456578485fd5b50620004658782880162000376565b60408701516060880151919550935090506001600160a01b03811681146200048b578182fd5b939692955090935050565b6000602082528251806020840152620004b7816040850160208701620004f0565b601f01601f19169190910160400192915050565b60008219821115620004eb57634e487b7160e01b81526011600452602481fd5b500190565b60005b838110156200050d578181015183820152602001620004f3565b838111156200051d576000848401525b50505050565b600181811c908216806200053857607f821691505b602082108114156200055a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610b9e80620005866000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b4114610219578063a457c2d714610221578063a9059cbb14610234578063dd62ed3e14610247578063f2fde38b146102805761010b565b8063715018a6146101b95780637afa1eed146101c3578063893d20e8146101e35780638da5cb5b146102085761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806354fd4d501461019e57806370a08231146101a65761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610293565b6040516101259190610a95565b60405180910390f35b61014161013c366004610a6c565b610325565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610a31565b61033b565b60065460405160ff9091168152602001610125565b610141610199366004610a6c565b6103f1565b610118610428565b6101556101b43660046109de565b610437565b6101c1610456565b005b6040805180820190915260048152634c69746560e01b6020820152610118565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6000546001600160a01b03166101f0565b6101186104fa565b61014161022f366004610a6c565b610509565b610141610242366004610a6c565b6105a4565b6101556102553660046109ff565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101c161028e3660046109de565b6105b1565b6060600480546102a290610b17565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610b17565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b60006103323384846106cb565b50600192915050565b60006103488484846107ef565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d25760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e685336103e18685610b00565b6106cb565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103329185906103e1908690610ae8565b6060600780546102a290610b17565b6001600160a01b0381166000908152600160205260409020545b919050565b6000546001600160a01b031633146104b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600580546102a290610b17565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561058b5760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c9565b61059a33856103e18685610b00565b5060019392505050565b60006103323384846107ef565b6000546001600160a01b0316331461060b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b6001600160a01b0381166106705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c9565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661072d5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c9565b6001600160a01b03821661078e5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c9565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108535760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c9565b6001600160a01b0382166108b55760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c9565b6001600160a01b0383166000908152600160205260409020548181101561092d5760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c9565b6109378282610b00565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061096d908490610ae8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109b991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461045157600080fd5b6000602082840312156109ef578081fd5b6109f8826109c7565b9392505050565b60008060408385031215610a11578081fd5b610a1a836109c7565b9150610a28602084016109c7565b90509250929050565b600080600060608486031215610a45578081fd5b610a4e846109c7565b9250610a5c602085016109c7565b9150604084013590509250925092565b60008060408385031215610a7e578182fd5b610a87836109c7565b946020939093013593505050565b6000602080835283518082850152825b81811015610ac157858101830151858201604001528201610aa5565b81811115610ad25783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afb57610afb610b52565b500190565b600082821015610b1257610b12610b52565b500390565b600181811c90821680610b2b57607f821691505b60208210811415610b4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220f15cb28140714b529bbee431ebf64a7fa175f449c47c41dd82f7751b35313b6464736f6c63430008030033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000caf670037016800000000000000000000000000001f9ddf29d2edd3003e7ef33b388f2e5c82d6b8220000000000000000000000000000000000000000000000000000000000000003646667000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034446470000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b4114610219578063a457c2d714610221578063a9059cbb14610234578063dd62ed3e14610247578063f2fde38b146102805761010b565b8063715018a6146101b95780637afa1eed146101c3578063893d20e8146101e35780638da5cb5b146102085761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806354fd4d501461019e57806370a08231146101a65761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610293565b6040516101259190610a95565b60405180910390f35b61014161013c366004610a6c565b610325565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610a31565b61033b565b60065460405160ff9091168152602001610125565b610141610199366004610a6c565b6103f1565b610118610428565b6101556101b43660046109de565b610437565b6101c1610456565b005b6040805180820190915260048152634c69746560e01b6020820152610118565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6000546001600160a01b03166101f0565b6101186104fa565b61014161022f366004610a6c565b610509565b610141610242366004610a6c565b6105a4565b6101556102553660046109ff565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101c161028e3660046109de565b6105b1565b6060600480546102a290610b17565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610b17565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b60006103323384846106cb565b50600192915050565b60006103488484846107ef565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103d25760405162461bcd60e51b815260206004820152602860248201527f42455032303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e685336103e18685610b00565b6106cb565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103329185906103e1908690610ae8565b6060600780546102a290610b17565b6001600160a01b0381166000908152600160205260409020545b919050565b6000546001600160a01b031633146104b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600580546102a290610b17565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561058b5760405162461bcd60e51b815260206004820152602560248201527f42455032303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c9565b61059a33856103e18685610b00565b5060019392505050565b60006103323384846107ef565b6000546001600160a01b0316331461060b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103c9565b6001600160a01b0381166106705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c9565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661072d5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c9565b6001600160a01b03821661078e5760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c9565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108535760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c9565b6001600160a01b0382166108b55760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c9565b6001600160a01b0383166000908152600160205260409020548181101561092d5760405162461bcd60e51b815260206004820152602660248201527f42455032303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c9565b6109378282610b00565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061096d908490610ae8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109b991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461045157600080fd5b6000602082840312156109ef578081fd5b6109f8826109c7565b9392505050565b60008060408385031215610a11578081fd5b610a1a836109c7565b9150610a28602084016109c7565b90509250929050565b600080600060608486031215610a45578081fd5b610a4e846109c7565b9250610a5c602085016109c7565b9150604084013590509250925092565b60008060408385031215610a7e578182fd5b610a87836109c7565b946020939093013593505050565b6000602080835283518082850152825b81811015610ac157858101830151858201604001528201610aa5565b81811115610ad25783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afb57610afb610b52565b500190565b600082821015610b1257610b12610b52565b500390565b600181811c90821680610b2b57607f821691505b60208210811415610b4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220f15cb28140714b529bbee431ebf64a7fa175f449c47c41dd82f7751b35313b6464736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000caf670037016800000000000000000000000000001f9ddf29d2edd3003e7ef33b388f2e5c82d6b8220000000000000000000000000000000000000000000000000000000000000003646667000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034446470000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): dfg
Arg [1] : symbol (string): DFG
Arg [2] : initialBalance (uint256): 234000000000000000000
Arg [3] : feeReceiver (address): 0x1f9dDF29d2edD3003E7ef33b388F2e5c82D6b822
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000caf67003701680000
Arg [3] : 0000000000000000000000001f9ddf29d2edd3003e7ef33b388f2e5c82d6b822
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 6466670000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4446470000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
20018:449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9408:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12385:169;;;;;;:::i;:::-;;:::i;:::-;;;1653:14:1;;1646:22;1628:41;;1616:2;1601:18;12385:169:0;1583:92:1;10510:100:0;10590:12;;10510:100;;;6042:25:1;;;6030:2;6015:18;10510:100:0;5997:76:1;11816:422:0;;;;;;:::i;:::-;;:::i;10353:92::-;10428:9;;10353:92;;10428:9;;;;6220:36:1;;6208:2;6193:18;10353:92:0;6175:87:1;13177:215:0;;;;;;:::i;:::-;;:::i;19760:89::-;;;:::i;10673:119::-;;;;;;:::i;:::-;;:::i;3739:148::-;;;:::i;:::-;;19591:93;19666:10;;;;;;;;;;;;-1:-1:-1;;;19666:10:0;;;;19591:93;;10854:92;10904:7;3161:6;-1:-1:-1;;;;;3161:6:0;10854:92;;;-1:-1:-1;;;;;1444:32:1;;;1426:51;;1414:2;1399:18;10854:92:0;1381:102:1;3088:87:0;3134:7;3161:6;-1:-1:-1;;;;;3161:6:0;3088:87;;9619:96;;;:::i;13895:377::-;;;;;;:::i;:::-;;:::i;11159:175::-;;;;;;:::i;:::-;;:::i;12617:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12733:18:0;;;12706:7;12733:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12617:151;4042:244;;;;;;:::i;:::-;;:::i;9408:92::-;9454:13;9487:5;9480:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9408:92;:::o;12385:169::-;12468:4;12485:39;1726:10;12508:7;12517:6;12485:8;:39::i;:::-;-1:-1:-1;12542:4:0;12385:169;;;;:::o;11816:422::-;11922:4;11939:36;11949:6;11957:9;11968:6;11939:9;:36::i;:::-;-1:-1:-1;;;;;12015:19:0;;11988:24;12015:19;;;:11;:19;;;;;;;;1726:10;12015:33;;;;;;;;12067:26;;;;12059:79;;;;-1:-1:-1;;;12059:79:0;;3708:2:1;12059:79:0;;;3690:21:1;3747:2;3727:18;;;3720:30;3786:34;3766:18;;;3759:62;-1:-1:-1;;;3837:18:1;;;3830:38;3885:19;;12059:79:0;;;;;;;;;12149:57;12158:6;1726:10;12180:25;12199:6;12180:16;:25;:::i;:::-;12149:8;:57::i;:::-;-1:-1:-1;12226:4:0;;11816:422;-1:-1:-1;;;;11816:422:0:o;13177:215::-;1726:10;13265:4;13314:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13314:34:0;;;;;;;;;;13265:4;;13282:80;;13305:7;;13314:47;;13351:10;;13314:47;:::i;19760:89::-;19800:13;19833:8;19826:15;;;;;:::i;10673:119::-;-1:-1:-1;;;;;10766:18:0;;10739:7;10766:18;;;:9;:18;;;;;;10673:119;;;;:::o;3739:148::-;3134:7;3161:6;-1:-1:-1;;;;;3161:6:0;1726:10;3308:23;3300:68;;;;-1:-1:-1;;;3300:68:0;;4117:2:1;3300:68:0;;;4099:21:1;;;4136:18;;;4129:30;4195:34;4175:18;;;4168:62;4247:18;;3300:68:0;4089:182:1;3300:68:0;3846:1:::1;3830:6:::0;;3809:40:::1;::::0;-1:-1:-1;;;;;3830:6:0;;::::1;::::0;3809:40:::1;::::0;3846:1;;3809:40:::1;3877:1;3860:19:::0;;-1:-1:-1;;;;;;3860:19:0::1;::::0;;3739:148::o;9619:96::-;9667:13;9700:7;9693:14;;;;;:::i;13895:377::-;1726:10;13988:4;14032:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14032:34:0;;;;;;;;;;14085:35;;;;14077:85;;;;-1:-1:-1;;;14077:85:0;;5289:2:1;14077:85:0;;;5271:21:1;5328:2;5308:18;;;5301:30;5367:34;5347:18;;;5340:62;-1:-1:-1;;;5418:18:1;;;5411:35;5463:19;;14077:85:0;5261:227:1;14077:85:0;14173:67;1726:10;14196:7;14205:34;14224:15;14205:16;:34;:::i;14173:67::-;-1:-1:-1;14260:4:0;;13895:377;-1:-1:-1;;;13895:377:0:o;11159:175::-;11245:4;11262:42;1726:10;11286:9;11297:6;11262:9;:42::i;4042:244::-;3134:7;3161:6;-1:-1:-1;;;;;3161:6:0;1726:10;3308:23;3300:68;;;;-1:-1:-1;;;3300:68:0;;4117:2:1;3300:68:0;;;4099:21:1;;;4136:18;;;4129:30;4195:34;4175:18;;;4168:62;4247:18;;3300:68:0;4089:182:1;3300:68:0;-1:-1:-1;;;;;4131:22:0;::::1;4123:73;;;::::0;-1:-1:-1;;;4123:73:0;;3301:2:1;4123:73:0::1;::::0;::::1;3283:21:1::0;3340:2;3320:18;;;3313:30;3379:34;3359:18;;;3352:62;-1:-1:-1;;;3430:18:1;;;3423:36;3476:19;;4123:73:0::1;3273:228:1::0;4123:73:0::1;4233:6;::::0;;4212:38:::1;::::0;-1:-1:-1;;;;;4212:38:0;;::::1;::::0;4233:6;::::1;::::0;4212:38:::1;::::0;::::1;4261:6;:17:::0;;-1:-1:-1;;;;;;4261:17:0::1;-1:-1:-1::0;;;;;4261:17:0;;;::::1;::::0;;;::::1;::::0;;4042:244::o;17251:346::-;-1:-1:-1;;;;;17353:19:0;;17345:68;;;;-1:-1:-1;;;17345:68:0;;2896:2:1;17345:68:0;;;2878:21:1;2935:2;2915:18;;;2908:30;2974:34;2954:18;;;2947:62;-1:-1:-1;;;3025:18:1;;;3018:34;3069:19;;17345:68:0;2868:226:1;17345:68:0;-1:-1:-1;;;;;17432:21:0;;17424:68;;;;-1:-1:-1;;;17424:68:0;;5695:2:1;17424:68:0;;;5677:21:1;5734:2;5714:18;;;5707:30;5773:34;5753:18;;;5746:62;-1:-1:-1;;;5824:18:1;;;5817:32;5866:19;;17424:68:0;5667:224:1;17424:68:0;-1:-1:-1;;;;;17505:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17557:32;;6042:25:1;;;17557:32:0;;6015:18:1;17557:32:0;;;;;;;17251:346;;;:::o;14762:604::-;-1:-1:-1;;;;;14868:20:0;;14860:70;;;;-1:-1:-1;;;14860:70:0;;2490:2:1;14860:70:0;;;2472:21:1;2529:2;2509:18;;;2502:30;2568:34;2548:18;;;2541:62;-1:-1:-1;;;2619:18:1;;;2612:35;2664:19;;14860:70:0;2462:227:1;14860:70:0;-1:-1:-1;;;;;14949:23:0;;14941:71;;;;-1:-1:-1;;;14941:71:0;;4885:2:1;14941:71:0;;;4867:21:1;4924:2;4904:18;;;4897:30;4963:34;4943:18;;;4936:62;-1:-1:-1;;;5014:18:1;;;5007:33;5057:19;;14941:71:0;4857:225:1;14941:71:0;-1:-1:-1;;;;;15109:17:0;;15085:21;15109:17;;;:9;:17;;;;;;15145:23;;;;15137:74;;;;-1:-1:-1;;;15137:74:0;;4478:2:1;15137:74:0;;;4460:21:1;4517:2;4497:18;;;4490:30;4556:34;4536:18;;;4529:62;-1:-1:-1;;;4607:18:1;;;4600:36;4653:19;;15137:74:0;4450:228:1;15137:74:0;15242:22;15258:6;15242:13;:22;:::i;:::-;-1:-1:-1;;;;;15222:17:0;;;;;;;:9;:17;;;;;;:42;;;;15275:20;;;;;;;;:30;;15299:6;;15222:17;15275:30;;15299:6;;15275:30;:::i;:::-;;;;;;;;15340:9;-1:-1:-1;;;;;15323:35:0;15332:6;-1:-1:-1;;;;;15323:35:0;;15351:6;15323:35;;;;6042:25:1;;6030:2;6015:18;;5997:76;15323:35:0;;;;;;;;14762:604;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1680:603::-;;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;6267:128::-;;6338:1;6334:6;6331:1;6328:13;6325:2;;;6344:18;;:::i;:::-;-1:-1:-1;6380:9:1;;6315:80::o;6400:125::-;;6468:1;6465;6462:8;6459:2;;;6473:18;;:::i;:::-;-1:-1:-1;6510:9:1;;6449:76::o;6530:380::-;6609:1;6605:12;;;;6652;;;6673:2;;6727:4;6719:6;6715:17;6705:27;;6673:2;6780;6772:6;6769:14;6749:18;6746:38;6743:2;;;6826:10;6821:3;6817:20;6814:1;6807:31;6861:4;6858:1;6851:15;6889:4;6886:1;6879:15;6743:2;;6585:325;;;:::o;6915:127::-;6976:10;6971:3;6967:20;6964:1;6957:31;7007:4;7004:1;6997:15;7031:4;7028:1;7021:15
Swarm Source
ipfs://f15cb28140714b529bbee431ebf64a7fa175f449c47c41dd82f7751b35313b64
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.