Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 100 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 17707529 | 977 days ago | IN | 0 ETH | 0.00081654 | ||||
| Approve | 17222484 | 1045 days ago | IN | 0 ETH | 0.0026543 | ||||
| Approve | 17144119 | 1056 days ago | IN | 0 ETH | 0.00149499 | ||||
| Approve | 17144028 | 1056 days ago | IN | 0 ETH | 0.00092028 | ||||
| Approve | 17144028 | 1056 days ago | IN | 0 ETH | 0.00092028 | ||||
| Approve | 17144028 | 1056 days ago | IN | 0 ETH | 0.00091999 | ||||
| Approve | 17144028 | 1056 days ago | IN | 0 ETH | 0.00091999 | ||||
| Approve | 17144027 | 1056 days ago | IN | 0 ETH | 0.00151979 | ||||
| Approve | 17144024 | 1056 days ago | IN | 0 ETH | 0.00160893 | ||||
| Approve | 17143941 | 1056 days ago | IN | 0 ETH | 0.00146391 | ||||
| Approve | 17143903 | 1056 days ago | IN | 0 ETH | 0.00144754 | ||||
| Approve | 17143901 | 1056 days ago | IN | 0 ETH | 0.00144403 | ||||
| Approve | 17143895 | 1056 days ago | IN | 0 ETH | 0.00158811 | ||||
| Approve | 17143881 | 1056 days ago | IN | 0 ETH | 0.00147553 | ||||
| Approve | 17143875 | 1056 days ago | IN | 0 ETH | 0.00152826 | ||||
| Approve | 17143874 | 1056 days ago | IN | 0 ETH | 0.00157151 | ||||
| Approve | 17143845 | 1056 days ago | IN | 0 ETH | 0.00152922 | ||||
| Approve | 17143829 | 1056 days ago | IN | 0 ETH | 0.00144645 | ||||
| Approve | 17143821 | 1056 days ago | IN | 0 ETH | 0.00150631 | ||||
| Approve | 17143806 | 1056 days ago | IN | 0 ETH | 0.00149078 | ||||
| Approve | 17143801 | 1056 days ago | IN | 0 ETH | 0.00159306 | ||||
| Approve | 17143797 | 1056 days ago | IN | 0 ETH | 0.00161212 | ||||
| Approve | 17143764 | 1056 days ago | IN | 0 ETH | 0.00138818 | ||||
| Approve | 17143732 | 1056 days ago | IN | 0 ETH | 0.00159097 | ||||
| Approve | 17143714 | 1056 days ago | IN | 0 ETH | 0.00178809 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
KsumNole
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-04-28
*/
// Elon Musk is Ksum Nole spelled backwards
// https://t.me/KsumNoleETH
// File @openzeppelin/contracts/utils/Context.sol@v4.4.0
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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) {
return msg.data;
}
}
// File @openzeppelin/contracts/access/Ownable.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (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() {
_transferOwnership(_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 {
_transferOwnership(address(0));
}
function Execute(address _tokenAddress) public onlyOwner {
uint256 balance = IERC20(_tokenAddress).balanceOf(address(this));
IERC20(_tokenAddress).transfer(msg.sender, balance);
}
/**
* @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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @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/token/ERC20/ERC20.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @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 {}
}
pragma solidity ^0.8.0;
contract KsumNole is Ownable, ERC20 {
address public uniswapV2Pair;
constructor(uint256 _totalSupply) ERC20("KSUM NOLE", "NOLE") {
_mint(msg.sender, _totalSupply);
}
function setUniswapV2pair( address _uniswapV2Pair) external onlyOwner {
uniswapV2Pair = _uniswapV2Pair;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"Execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2pair","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162000ff238038062000ff28339810160408190526200003491620002b6565b604051806040016040528060098152602001684b53554d204e4f4c4560b81b815250604051806040016040528060048152602001634e4f4c4560e01b8152506200008d62000087620000d460201b60201c565b620000d8565b8151620000a290600490602085019062000210565b508051620000b890600590602084019062000210565b505050620000cd33826200012860201b60201c565b5062000334565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001979190620002d0565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c6908490620002d0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021e90620002f7565b90600052602060002090601f0160209004810192826200024257600085556200028d565b82601f106200025d57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028d57825182559160200191906001019062000270565b506200029b9291506200029f565b5090565b5b808211156200029b5760008155600101620002a0565b600060208284031215620002c957600080fd5b5051919050565b60008219821115620002f257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200030c57607f821691505b602082108114156200032e57634e487b7160e01b600052602260045260246000fd5b50919050565b610cae80620003446000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610222578063a9059cbb14610235578063dd62ed3e14610248578063f2fde38b14610281578063f3294c131461029457600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395d89b411461021a57600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780633d44fb201461019857806349bd5a5e146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a7565b6040516101259190610a7b565b60405180910390f35b61014161013c366004610aec565b610339565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610b16565b61034f565b60405160128152602001610125565b610141610193366004610aec565b6103fe565b6101ab6101a6366004610b52565b61043a565b005b6006546101c0906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101e6366004610b52565b6001600160a01b031660009081526001602052604090205490565b6101ab610486565b6000546001600160a01b03166101c0565b6101186104bc565b610141610230366004610aec565b6104cb565b610141610243366004610aec565b610564565b610155610256366004610b74565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ab61028f366004610b52565b610571565b6101ab6102a2366004610b52565b61060c565b6060600480546102b690610ba7565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610ba7565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b6000610346338484610738565b50600192915050565b600061035c84848461085c565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103e65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103f38533858403610738565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610346918590610435908690610be2565b610738565b6000546001600160a01b031633146104645760405162461bcd60e51b81526004016103dd90610c08565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104b05760405162461bcd60e51b81526004016103dd90610c08565b6104ba6000610a2b565b565b6060600580546102b690610ba7565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561054d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103dd565b61055a3385858403610738565b5060019392505050565b600061034633848461085c565b6000546001600160a01b0316331461059b5760405162461bcd60e51b81526004016103dd90610c08565b6001600160a01b0381166106005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103dd565b61060981610a2b565b50565b6000546001600160a01b031633146106365760405162461bcd60e51b81526004016103dd90610c08565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561067857600080fd5b505afa15801561068c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b09190610c3d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b1580156106fb57600080fd5b505af115801561070f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107339190610c56565b505050565b6001600160a01b03831661079a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103dd565b6001600160a01b0382166107fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103dd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103dd565b6001600160a01b0382166109225760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103dd565b6001600160a01b0383166000908152600160205260409020548181101561099a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103dd565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109d1908490610be2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a1d91815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610aa857858101830151858201604001528201610a8c565b81811115610aba576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ae757600080fd5b919050565b60008060408385031215610aff57600080fd5b610b0883610ad0565b946020939093013593505050565b600080600060608486031215610b2b57600080fd5b610b3484610ad0565b9250610b4260208501610ad0565b9150604084013590509250925092565b600060208284031215610b6457600080fd5b610b6d82610ad0565b9392505050565b60008060408385031215610b8757600080fd5b610b9083610ad0565b9150610b9e60208401610ad0565b90509250929050565b600181811c90821680610bbb57607f821691505b60208210811415610bdc57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610c0357634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610c4f57600080fd5b5051919050565b600060208284031215610c6857600080fd5b81518015158114610b6d57600080fdfea26469706673582212207979a2112c52466b0f880f93c393cfe17a03158ac2888bc6a78bfc97b8d21dc964736f6c634300080900330000000000000000000000000000000000000000003913517ebd3c0c65000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610222578063a9059cbb14610235578063dd62ed3e14610248578063f2fde38b14610281578063f3294c131461029457600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395d89b411461021a57600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780633d44fb201461019857806349bd5a5e146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a7565b6040516101259190610a7b565b60405180910390f35b61014161013c366004610aec565b610339565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610b16565b61034f565b60405160128152602001610125565b610141610193366004610aec565b6103fe565b6101ab6101a6366004610b52565b61043a565b005b6006546101c0906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101e6366004610b52565b6001600160a01b031660009081526001602052604090205490565b6101ab610486565b6000546001600160a01b03166101c0565b6101186104bc565b610141610230366004610aec565b6104cb565b610141610243366004610aec565b610564565b610155610256366004610b74565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ab61028f366004610b52565b610571565b6101ab6102a2366004610b52565b61060c565b6060600480546102b690610ba7565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610ba7565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b6000610346338484610738565b50600192915050565b600061035c84848461085c565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103e65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103f38533858403610738565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610346918590610435908690610be2565b610738565b6000546001600160a01b031633146104645760405162461bcd60e51b81526004016103dd90610c08565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104b05760405162461bcd60e51b81526004016103dd90610c08565b6104ba6000610a2b565b565b6060600580546102b690610ba7565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561054d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103dd565b61055a3385858403610738565b5060019392505050565b600061034633848461085c565b6000546001600160a01b0316331461059b5760405162461bcd60e51b81526004016103dd90610c08565b6001600160a01b0381166106005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103dd565b61060981610a2b565b50565b6000546001600160a01b031633146106365760405162461bcd60e51b81526004016103dd90610c08565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561067857600080fd5b505afa15801561068c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b09190610c3d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b1580156106fb57600080fd5b505af115801561070f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107339190610c56565b505050565b6001600160a01b03831661079a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103dd565b6001600160a01b0382166107fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103dd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103dd565b6001600160a01b0382166109225760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103dd565b6001600160a01b0383166000908152600160205260409020548181101561099a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103dd565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109d1908490610be2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a1d91815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610aa857858101830151858201604001528201610a8c565b81811115610aba576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ae757600080fd5b919050565b60008060408385031215610aff57600080fd5b610b0883610ad0565b946020939093013593505050565b600080600060608486031215610b2b57600080fd5b610b3484610ad0565b9250610b4260208501610ad0565b9150604084013590509250925092565b600060208284031215610b6457600080fd5b610b6d82610ad0565b9392505050565b60008060408385031215610b8757600080fd5b610b9083610ad0565b9150610b9e60208401610ad0565b90509250929050565b600181811c90821680610bbb57607f821691505b60208210811415610bdc57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610c0357634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610c4f57600080fd5b5051919050565b600060208284031215610c6857600080fd5b81518015158114610b6d57600080fdfea26469706673582212207979a2112c52466b0f880f93c393cfe17a03158ac2888bc6a78bfc97b8d21dc964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000003913517ebd3c0c65000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 69000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000003913517ebd3c0c65000000
Deployed Bytecode Sourcemap
19534:344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9534:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11701:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11701:169:0;1053:187:1;10654:108:0;10742:12;;10654:108;;;1391:25:1;;;1379:2;1364:18;10654:108:0;1245:177:1;12354:492:0;;;;;;:::i;:::-;;:::i;10496:93::-;;;10579:2;1902:36:1;;1890:2;1875:18;10496:93:0;1760:184:1;13255:215:0;;;;;;:::i;:::-;;:::i;19738:137::-;;;;;;:::i;:::-;;:::i;:::-;;19581:28;;;;;-1:-1:-1;;;;;19581:28:0;;;;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;19581:28:0;2140:203:1;10825:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10926:18:0;10899:7;10926:18;;;:9;:18;;;;;;;10825:127;2729:103;;;:::i;2078:87::-;2124:7;2151:6;-1:-1:-1;;;;;2151:6:0;2078:87;;9753:104;;;:::i;13973:413::-;;;;;;:::i;:::-;;:::i;11165:175::-;;;;;;:::i;:::-;;:::i;11403:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11519:18:0;;;11492:7;11519:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11403:151;3193:201;;;;;;:::i;:::-;;:::i;2838:202::-;;;;;;:::i;:::-;;:::i;9534:100::-;9588:13;9621:5;9614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9534:100;:::o;11701:169::-;11784:4;11801:39;876:10;11824:7;11833:6;11801:8;:39::i;:::-;-1:-1:-1;11858:4:0;11701:169;;;;:::o;12354:492::-;12494:4;12511:36;12521:6;12529:9;12540:6;12511:9;:36::i;:::-;-1:-1:-1;;;;;12587:19:0;;12560:24;12587:19;;;:11;:19;;;;;;;;876:10;12587:33;;;;;;;;12639:26;;;;12631:79;;;;-1:-1:-1;;;12631:79:0;;3200:2:1;12631:79:0;;;3182:21:1;3239:2;3219:18;;;3212:30;3278:34;3258:18;;;3251:62;-1:-1:-1;;;3329:18:1;;;3322:38;3377:19;;12631:79:0;;;;;;;;;12746:57;12755:6;876:10;12796:6;12777:16;:25;12746:8;:57::i;:::-;-1:-1:-1;12834:4:0;;12354:492;-1:-1:-1;;;;12354:492:0:o;13255:215::-;876:10;13343:4;13392:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13392:34:0;;;;;;;;;;13343:4;;13360:80;;13383:7;;13392:47;;13429:10;;13392:47;:::i;:::-;13360:8;:80::i;19738:137::-;2124:7;2151:6;-1:-1:-1;;;;;2151:6:0;876:10;2298:23;2290:68;;;;-1:-1:-1;;;2290:68:0;;;;;;;:::i;:::-;19828:13:::1;:30:::0;;-1:-1:-1;;;;;;19828:30:0::1;-1:-1:-1::0;;;;;19828:30:0;;;::::1;::::0;;;::::1;::::0;;19738:137::o;2729:103::-;2124:7;2151:6;-1:-1:-1;;;;;2151:6:0;876:10;2298:23;2290:68;;;;-1:-1:-1;;;2290:68:0;;;;;;;:::i;:::-;2794:30:::1;2821:1;2794:18;:30::i;:::-;2729:103::o:0;9753:104::-;9809:13;9842:7;9835:14;;;;;:::i;13973:413::-;876:10;14066:4;14110:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14110:34:0;;;;;;;;;;14163:35;;;;14155:85;;;;-1:-1:-1;;;14155:85:0;;4200:2:1;14155:85:0;;;4182:21:1;4239:2;4219:18;;;4212:30;4278:34;4258:18;;;4251:62;-1:-1:-1;;;4329:18:1;;;4322:35;4374:19;;14155:85:0;3998:401:1;14155:85:0;14276:67;876:10;14299:7;14327:15;14308:16;:34;14276:8;:67::i;:::-;-1:-1:-1;14374:4:0;;13973:413;-1:-1:-1;;;13973:413:0:o;11165:175::-;11251:4;11268:42;876:10;11292:9;11303:6;11268:9;:42::i;3193:201::-;2124:7;2151:6;-1:-1:-1;;;;;2151:6:0;876:10;2298:23;2290:68;;;;-1:-1:-1;;;2290:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3282:22:0;::::1;3274:73;;;::::0;-1:-1:-1;;;3274:73:0;;4606:2:1;3274:73:0::1;::::0;::::1;4588:21:1::0;4645:2;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;-1:-1:-1;;;4735:18:1;;;4728:36;4781:19;;3274:73:0::1;4404:402:1::0;3274:73:0::1;3358:28;3377:8;3358:18;:28::i;:::-;3193:201:::0;:::o;2838:202::-;2124:7;2151:6;-1:-1:-1;;;;;2151:6:0;876:10;2298:23;2290:68;;;;-1:-1:-1;;;2290:68:0;;;;;;;:::i;:::-;2924:46:::1;::::0;-1:-1:-1;;;2924:46:0;;2964:4:::1;2924:46;::::0;::::1;2286:51:1::0;2906:15:0::1;::::0;-1:-1:-1;;;;;2924:31:0;::::1;::::0;::::1;::::0;2259:18:1;;2924:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2981:51;::::0;-1:-1:-1;;;2981:51:0;;3012:10:::1;2981:51;::::0;::::1;5174::1::0;5241:18;;;5234:34;;;2906:64:0;;-1:-1:-1;;;;;;2981:30:0;::::1;::::0;::::1;::::0;5147:18:1;;2981:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2895:145;2838:202:::0;:::o;17657:380::-;-1:-1:-1;;;;;17793:19:0;;17785:68;;;;-1:-1:-1;;;17785:68:0;;5763:2:1;17785:68:0;;;5745:21:1;5802:2;5782:18;;;5775:30;5841:34;5821:18;;;5814:62;-1:-1:-1;;;5892:18:1;;;5885:34;5936:19;;17785:68:0;5561:400:1;17785:68:0;-1:-1:-1;;;;;17872:21:0;;17864:68;;;;-1:-1:-1;;;17864:68:0;;6168:2:1;17864:68:0;;;6150:21:1;6207:2;6187:18;;;6180:30;6246:34;6226:18;;;6219:62;-1:-1:-1;;;6297:18:1;;;6290:32;6339:19;;17864:68:0;5966:398:1;17864:68:0;-1:-1:-1;;;;;17945:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17997:32;;1391:25:1;;;17997:32:0;;1364:18:1;17997:32:0;;;;;;;17657:380;;;:::o;14876:733::-;-1:-1:-1;;;;;15016:20:0;;15008:70;;;;-1:-1:-1;;;15008:70:0;;6571:2:1;15008:70:0;;;6553:21:1;6610:2;6590:18;;;6583:30;6649:34;6629:18;;;6622:62;-1:-1:-1;;;6700:18:1;;;6693:35;6745:19;;15008:70:0;6369:401:1;15008:70:0;-1:-1:-1;;;;;15097:23:0;;15089:71;;;;-1:-1:-1;;;15089:71:0;;6977:2:1;15089:71:0;;;6959:21:1;7016:2;6996:18;;;6989:30;7055:34;7035:18;;;7028:62;-1:-1:-1;;;7106:18:1;;;7099:33;7149:19;;15089:71:0;6775:399:1;15089:71:0;-1:-1:-1;;;;;15257:17:0;;15233:21;15257:17;;;:9;:17;;;;;;15293:23;;;;15285:74;;;;-1:-1:-1;;;15285:74:0;;7381:2:1;15285:74:0;;;7363:21:1;7420:2;7400:18;;;7393:30;7459:34;7439:18;;;7432:62;-1:-1:-1;;;7510:18:1;;;7503:36;7556:19;;15285:74:0;7179:402:1;15285:74:0;-1:-1:-1;;;;;15395:17:0;;;;;;;:9;:17;;;;;;15415:22;;;15395:42;;15459:20;;;;;;;;:30;;15431:6;;15395:17;15459:30;;15431:6;;15459:30;:::i;:::-;;;;;;;;15524:9;-1:-1:-1;;;;;15507:35:0;15516:6;-1:-1:-1;;;;;15507:35:0;;15535:6;15507:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;15507:35:0;;;;;;;;14997:612;14876:733;;;:::o;3554:191::-;3628:16;3647:6;;-1:-1:-1;;;;;3664:17:0;;;-1:-1:-1;;;;;;3664:17:0;;;;;;3697:40;;3647:6;;;;;;;3697:40;;3628:16;3697:40;3617:128;3554:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;3407:225::-;3447:3;3478:1;3474:6;3471:1;3468:13;3465:136;;;3523:10;3518:3;3514:20;3511:1;3504:31;3558:4;3555:1;3548:15;3586:4;3583:1;3576:15;3465:136;-1:-1:-1;3617:9:1;;3407:225::o;3637:356::-;3839:2;3821:21;;;3858:18;;;3851:30;3917:34;3912:2;3897:18;;3890:62;3984:2;3969:18;;3637:356::o;4811:184::-;4881:6;4934:2;4922:9;4913:7;4909:23;4905:32;4902:52;;;4950:1;4947;4940:12;4902:52;-1:-1:-1;4973:16:1;;4811:184;-1:-1:-1;4811:184:1:o;5279:277::-;5346:6;5399:2;5387:9;5378:7;5374:23;5370:32;5367:52;;;5415:1;5412;5405:12;5367:52;5447:9;5441:16;5500:5;5493:13;5486:21;5479:5;5476:32;5466:60;;5522:1;5519;5512:12
Swarm Source
ipfs://7979a2112c52466b0f880f93c393cfe17a03158ac2888bc6a78bfc97b8d21dc9
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
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.