Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 147 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23573063 | 168 days ago | IN | 0 ETH | 0.00007766 | ||||
| Approve | 23573043 | 168 days ago | IN | 0 ETH | 0.00007664 | ||||
| Approve | 23573023 | 168 days ago | IN | 0 ETH | 0.00007561 | ||||
| Approve | 23494972 | 179 days ago | IN | 0 ETH | 0.00001086 | ||||
| Transfer | 22672366 | 294 days ago | IN | 0 ETH | 0.00006027 | ||||
| Transfer | 22644377 | 298 days ago | IN | 0 ETH | 0.00005937 | ||||
| Transfer | 22024144 | 384 days ago | IN | 0 ETH | 0.00015606 | ||||
| Transfer | 21992965 | 389 days ago | IN | 0 ETH | 0.00006233 | ||||
| Transfer | 21992941 | 389 days ago | IN | 0 ETH | 0.00004334 | ||||
| Transfer | 20801433 | 555 days ago | IN | 0 ETH | 0.00041799 | ||||
| Transfer | 20438529 | 606 days ago | IN | 0 ETH | 0.00012865 | ||||
| Transfer | 20437548 | 606 days ago | IN | 0 ETH | 0.00013914 | ||||
| Transfer | 20437433 | 606 days ago | IN | 0 ETH | 0.00018091 | ||||
| Transfer | 20435269 | 606 days ago | IN | 0 ETH | 0.00047315 | ||||
| Transfer | 20431921 | 607 days ago | IN | 0 ETH | 0.00027077 | ||||
| Transfer | 20431917 | 607 days ago | IN | 0 ETH | 0.00027029 | ||||
| Transfer | 20431913 | 607 days ago | IN | 0 ETH | 0.00025942 | ||||
| Transfer | 20431910 | 607 days ago | IN | 0 ETH | 0.00017941 | ||||
| Transfer | 20431895 | 607 days ago | IN | 0 ETH | 0.00027431 | ||||
| Transfer | 20245420 | 633 days ago | IN | 0 ETH | 0.00005088 | ||||
| Transfer | 20158450 | 645 days ago | IN | 0 ETH | 0.00006037 | ||||
| Transfer | 20130078 | 649 days ago | IN | 0 ETH | 0.00021152 | ||||
| Transfer | 20110659 | 652 days ago | IN | 0 ETH | 0.000122 | ||||
| Transfer | 20110648 | 652 days ago | IN | 0 ETH | 0.00017962 | ||||
| Transfer | 20095188 | 654 days ago | IN | 0 ETH | 0.00014371 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/*
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
*/
import "./ERC20.sol";
import "./Pausable.sol";
import "./Ownable.sol";
contract Token is ERC20, Pausable, Ownable {
constructor(string memory name, string memory symbol) ERC20(name, symbol) {
_mint(msg.sender, 100000000000000 * 10**decimals());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal override whenNotPaused {
super._beforeTokenTransfer(from, to, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, 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) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
address public _genesisOwner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_genesisOwner = msg.sender;
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
function genesisOwner() public view virtual returns (address){
return _genesisOwner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
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.
* Remark:
*
* The default standard function is Openzeppelin can clear the token to address(0)
* from the error of current rights owner And someone else can use a token with address(0).
* Authorization is required to the source owner. And Regain ownership to the genesis owner.
*
* Change: _transferOwnership(address(0));
* To:
* require(_genesisOwner != address(0), "Genesis Ownable: is the zero address");
* _transferOwnership(_genesisOwner);
*/
function renounceOwnership() public virtual onlyOwner {
require(_genesisOwner != address(0), "Genesis Ownable: is the zero address");
_transferOwnership(_genesisOwner);
}
/**
* @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);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_genesisOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"genesisOwner","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040516200280f3803806200280f8339818101604052810190620000379190620005b4565b818181600390816200004a919062000884565b5080600490816200005c919062000884565b5050506000600560006101000a81548160ff02191690831515021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000db620000cf6200012560201b60201c565b6200012d60201b60201c565b6200011d33620000f0620001f360201b60201c565b600a620000fe919062000afb565b655af3107a400062000111919062000b4c565b620001fc60201b60201c565b505062000d2d565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002659062000c0e565b60405180910390fd5b62000282600083836200037460201b60201c565b806002600082825462000296919062000c30565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002ed919062000c30565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000354919062000c9e565b60405180910390a36200037060008383620003a160201b60201c565b5050565b62000384620003a660201b60201c565b6200039c838383620003fb60201b620008c71760201c565b505050565b505050565b620003b66200040060201b60201c565b15620003f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f09062000d0b565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004808262000435565b810181811067ffffffffffffffff82111715620004a257620004a162000446565b5b80604052505050565b6000620004b762000417565b9050620004c5828262000475565b919050565b600067ffffffffffffffff821115620004e857620004e762000446565b5b620004f38262000435565b9050602081019050919050565b60005b838110156200052057808201518184015260208101905062000503565b8381111562000530576000848401525b50505050565b60006200054d6200054784620004ca565b620004ab565b9050828152602081018484840111156200056c576200056b62000430565b5b6200057984828562000500565b509392505050565b600082601f8301126200059957620005986200042b565b5b8151620005ab84826020860162000536565b91505092915050565b60008060408385031215620005ce57620005cd62000421565b5b600083015167ffffffffffffffff811115620005ef57620005ee62000426565b5b620005fd8582860162000581565b925050602083015167ffffffffffffffff81111562000621576200062062000426565b5b6200062f8582860162000581565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068c57607f821691505b602082108103620006a257620006a162000644565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200070c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006cd565b620007188683620006cd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007656200075f620007598462000730565b6200073a565b62000730565b9050919050565b6000819050919050565b620007818362000744565b6200079962000790826200076c565b848454620006da565b825550505050565b600090565b620007b0620007a1565b620007bd81848462000776565b505050565b5b81811015620007e557620007d9600082620007a6565b600181019050620007c3565b5050565b601f8211156200083457620007fe81620006a8565b6200080984620006bd565b8101602085101562000819578190505b620008316200082885620006bd565b830182620007c2565b50505b505050565b600082821c905092915050565b6000620008596000198460080262000839565b1980831691505092915050565b600062000874838362000846565b9150826002028217905092915050565b6200088f8262000639565b67ffffffffffffffff811115620008ab57620008aa62000446565b5b620008b7825462000673565b620008c4828285620007e9565b600060209050601f831160018114620008fc5760008415620008e7578287015190505b620008f3858262000866565b86555062000963565b601f1984166200090c86620006a8565b60005b8281101562000936578489015182556001820191506020850194506020810190506200090f565b8683101562000956578489015162000952601f89168262000846565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009f957808604811115620009d157620009d06200096b565b5b6001851615620009e15780820291505b8081029050620009f1856200099a565b9450620009b1565b94509492505050565b60008262000a14576001905062000ae7565b8162000a24576000905062000ae7565b816001811462000a3d576002811462000a485762000a7e565b600191505062000ae7565b60ff84111562000a5d5762000a5c6200096b565b5b8360020a91508482111562000a775762000a766200096b565b5b5062000ae7565b5060208310610133831016604e8410600b841016171562000ab85782820a90508381111562000ab25762000ab16200096b565b5b62000ae7565b62000ac78484846001620009a7565b9250905081840481111562000ae15762000ae06200096b565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b088262000730565b915062000b158362000aee565b925062000b447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a02565b905092915050565b600062000b598262000730565b915062000b668362000730565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ba25762000ba16200096b565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000bf6601f8362000bad565b915062000c038262000bbe565b602082019050919050565b6000602082019050818103600083015262000c298162000be7565b9050919050565b600062000c3d8262000730565b915062000c4a8362000730565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c825762000c816200096b565b5b828201905092915050565b62000c988162000730565b82525050565b600060208201905062000cb5600083018462000c8d565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000cf360108362000bad565b915062000d008262000cbb565b602082019050919050565b6000602082019050818103600083015262000d268162000ce4565b9050919050565b611ad28062000d3d6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d7146102d6578063a9059cbb14610306578063c0a87b3214610336578063dd62ed3e14610354578063f2fde38b1461038457610121565b806370a0823114610256578063715018a6146102865780638456cb59146102905780638da5cb5b1461029a57806395d89b41146102b857610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780633f4ba83a1461022e5780635c975abb1461023857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806320e29a5e14610192575b600080fd5b61012e6103a0565b60405161013b91906110fb565b60405180910390f35b61015e600480360381019061015991906111b6565b610432565b60405161016b9190611211565b60405180910390f35b61017c610455565b604051610189919061123b565b60405180910390f35b61019a61045f565b6040516101a79190611265565b60405180910390f35b6101ca60048036038101906101c59190611280565b610485565b6040516101d79190611211565b60405180910390f35b6101e86104b4565b6040516101f591906112ef565b60405180910390f35b610218600480360381019061021391906111b6565b6104bd565b6040516102259190611211565b60405180910390f35b6102366104f4565b005b610240610506565b60405161024d9190611211565b60405180910390f35b610270600480360381019061026b919061130a565b61051d565b60405161027d919061123b565b60405180910390f35b61028e610565565b005b61029861062b565b005b6102a261063d565b6040516102af9190611265565b60405180910390f35b6102c0610667565b6040516102cd91906110fb565b60405180910390f35b6102f060048036038101906102eb91906111b6565b6106f9565b6040516102fd9190611211565b60405180910390f35b610320600480360381019061031b91906111b6565b610770565b60405161032d9190611211565b60405180910390f35b61033e610793565b60405161034b9190611265565b60405180910390f35b61036e60048036038101906103699190611337565b6107bd565b60405161037b919061123b565b60405180910390f35b61039e6004803603810190610399919061130a565b610844565b005b6060600380546103af906113a6565b80601f01602080910402602001604051908101604052809291908181526020018280546103db906113a6565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b60008061043d6108cc565b905061044a8185856108d4565b600191505092915050565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806104906108cc565b905061049d858285610a9d565b6104a8858585610b29565b60019150509392505050565b60006012905090565b6000806104c86108cc565b90506104e98185856104da85896107bd565b6104e49190611406565b6108d4565b600191505092915050565b6104fc610da8565b610504610e26565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61056d610da8565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f5906114ce565b60405180910390fd5b610629600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e89565b565b610633610da8565b61063b610f4f565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610676906113a6565b80601f01602080910402602001604051908101604052809291908181526020018280546106a2906113a6565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b6000806107046108cc565b9050600061071282866107bd565b905083811015610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90611560565b60405180910390fd5b61076482868684036108d4565b60019250505092915050565b60008061077b6108cc565b9050610788818585610b29565b600191505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61084c610da8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b2906115f2565b60405180910390fd5b6108c481610e89565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90611684565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611716565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a90919061123b565b60405180910390a3505050565b6000610aa984846107bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b235781811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90611782565b60405180910390fd5b610b2284848484036108d4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906118a6565b60405180910390fd5b610c12838383610fb2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90611938565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d2b9190611406565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8f919061123b565b60405180910390a3610da2848484610fca565b50505050565b610db06108cc565b73ffffffffffffffffffffffffffffffffffffffff16610dce61063d565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906119a4565b60405180910390fd5b565b610e2e610fcf565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610e726108cc565b604051610e7f9190611265565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f57611018565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f9b6108cc565b604051610fa89190611265565b60405180910390a1565b610fba611018565b610fc58383836108c7565b505050565b505050565b610fd7610506565b611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90611a10565b60405180910390fd5b565b611020610506565b15611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790611a7c565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561109c578082015181840152602081019050611081565b838111156110ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006110cd82611062565b6110d7818561106d565b93506110e781856020860161107e565b6110f0816110b1565b840191505092915050565b6000602082019050818103600083015261111581846110c2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061114d82611122565b9050919050565b61115d81611142565b811461116857600080fd5b50565b60008135905061117a81611154565b92915050565b6000819050919050565b61119381611180565b811461119e57600080fd5b50565b6000813590506111b08161118a565b92915050565b600080604083850312156111cd576111cc61111d565b5b60006111db8582860161116b565b92505060206111ec858286016111a1565b9150509250929050565b60008115159050919050565b61120b816111f6565b82525050565b60006020820190506112266000830184611202565b92915050565b61123581611180565b82525050565b6000602082019050611250600083018461122c565b92915050565b61125f81611142565b82525050565b600060208201905061127a6000830184611256565b92915050565b6000806000606084860312156112995761129861111d565b5b60006112a78682870161116b565b93505060206112b88682870161116b565b92505060406112c9868287016111a1565b9150509250925092565b600060ff82169050919050565b6112e9816112d3565b82525050565b600060208201905061130460008301846112e0565b92915050565b6000602082840312156113205761131f61111d565b5b600061132e8482850161116b565b91505092915050565b6000806040838503121561134e5761134d61111d565b5b600061135c8582860161116b565b925050602061136d8582860161116b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113be57607f821691505b6020821081036113d1576113d0611377565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061141182611180565b915061141c83611180565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611451576114506113d7565b5b828201905092915050565b7f47656e65736973204f776e61626c653a20697320746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006114b860248361106d565b91506114c38261145c565b604082019050919050565b600060208201905081810360008301526114e7816114ab565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061154a60258361106d565b9150611555826114ee565b604082019050919050565b600060208201905081810360008301526115798161153d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115dc60268361106d565b91506115e782611580565b604082019050919050565b6000602082019050818103600083015261160b816115cf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061166e60248361106d565b915061167982611612565b604082019050919050565b6000602082019050818103600083015261169d81611661565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061170060228361106d565b915061170b826116a4565b604082019050919050565b6000602082019050818103600083015261172f816116f3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061176c601d8361106d565b915061177782611736565b602082019050919050565b6000602082019050818103600083015261179b8161175f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117fe60258361106d565b9150611809826117a2565b604082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061189060238361106d565b915061189b82611834565b604082019050919050565b600060208201905081810360008301526118bf81611883565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061192260268361106d565b915061192d826118c6565b604082019050919050565b6000602082019050818103600083015261195181611915565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061198e60208361106d565b915061199982611958565b602082019050919050565b600060208201905081810360008301526119bd81611981565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006119fa60148361106d565b9150611a05826119c4565b602082019050919050565b60006020820190508181036000830152611a29816119ed565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611a6660108361106d565b9150611a7182611a30565b602082019050919050565b60006020820190508181036000830152611a9581611a59565b905091905056fea2646970667358221220e7340a7010d511fabd27f3ff5df679a4f2019e5088eac8424b29cc2aa8395ab764736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000553414e444f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553414e444f000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d7146102d6578063a9059cbb14610306578063c0a87b3214610336578063dd62ed3e14610354578063f2fde38b1461038457610121565b806370a0823114610256578063715018a6146102865780638456cb59146102905780638da5cb5b1461029a57806395d89b41146102b857610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780633f4ba83a1461022e5780635c975abb1461023857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806320e29a5e14610192575b600080fd5b61012e6103a0565b60405161013b91906110fb565b60405180910390f35b61015e600480360381019061015991906111b6565b610432565b60405161016b9190611211565b60405180910390f35b61017c610455565b604051610189919061123b565b60405180910390f35b61019a61045f565b6040516101a79190611265565b60405180910390f35b6101ca60048036038101906101c59190611280565b610485565b6040516101d79190611211565b60405180910390f35b6101e86104b4565b6040516101f591906112ef565b60405180910390f35b610218600480360381019061021391906111b6565b6104bd565b6040516102259190611211565b60405180910390f35b6102366104f4565b005b610240610506565b60405161024d9190611211565b60405180910390f35b610270600480360381019061026b919061130a565b61051d565b60405161027d919061123b565b60405180910390f35b61028e610565565b005b61029861062b565b005b6102a261063d565b6040516102af9190611265565b60405180910390f35b6102c0610667565b6040516102cd91906110fb565b60405180910390f35b6102f060048036038101906102eb91906111b6565b6106f9565b6040516102fd9190611211565b60405180910390f35b610320600480360381019061031b91906111b6565b610770565b60405161032d9190611211565b60405180910390f35b61033e610793565b60405161034b9190611265565b60405180910390f35b61036e60048036038101906103699190611337565b6107bd565b60405161037b919061123b565b60405180910390f35b61039e6004803603810190610399919061130a565b610844565b005b6060600380546103af906113a6565b80601f01602080910402602001604051908101604052809291908181526020018280546103db906113a6565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b60008061043d6108cc565b905061044a8185856108d4565b600191505092915050565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806104906108cc565b905061049d858285610a9d565b6104a8858585610b29565b60019150509392505050565b60006012905090565b6000806104c86108cc565b90506104e98185856104da85896107bd565b6104e49190611406565b6108d4565b600191505092915050565b6104fc610da8565b610504610e26565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61056d610da8565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f5906114ce565b60405180910390fd5b610629600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e89565b565b610633610da8565b61063b610f4f565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610676906113a6565b80601f01602080910402602001604051908101604052809291908181526020018280546106a2906113a6565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b6000806107046108cc565b9050600061071282866107bd565b905083811015610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90611560565b60405180910390fd5b61076482868684036108d4565b60019250505092915050565b60008061077b6108cc565b9050610788818585610b29565b600191505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61084c610da8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b2906115f2565b60405180910390fd5b6108c481610e89565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90611684565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611716565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a90919061123b565b60405180910390a3505050565b6000610aa984846107bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b235781811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90611782565b60405180910390fd5b610b2284848484036108d4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906118a6565b60405180910390fd5b610c12838383610fb2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90611938565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d2b9190611406565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8f919061123b565b60405180910390a3610da2848484610fca565b50505050565b610db06108cc565b73ffffffffffffffffffffffffffffffffffffffff16610dce61063d565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906119a4565b60405180910390fd5b565b610e2e610fcf565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610e726108cc565b604051610e7f9190611265565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f57611018565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f9b6108cc565b604051610fa89190611265565b60405180910390a1565b610fba611018565b610fc58383836108c7565b505050565b505050565b610fd7610506565b611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90611a10565b60405180910390fd5b565b611020610506565b15611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790611a7c565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561109c578082015181840152602081019050611081565b838111156110ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006110cd82611062565b6110d7818561106d565b93506110e781856020860161107e565b6110f0816110b1565b840191505092915050565b6000602082019050818103600083015261111581846110c2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061114d82611122565b9050919050565b61115d81611142565b811461116857600080fd5b50565b60008135905061117a81611154565b92915050565b6000819050919050565b61119381611180565b811461119e57600080fd5b50565b6000813590506111b08161118a565b92915050565b600080604083850312156111cd576111cc61111d565b5b60006111db8582860161116b565b92505060206111ec858286016111a1565b9150509250929050565b60008115159050919050565b61120b816111f6565b82525050565b60006020820190506112266000830184611202565b92915050565b61123581611180565b82525050565b6000602082019050611250600083018461122c565b92915050565b61125f81611142565b82525050565b600060208201905061127a6000830184611256565b92915050565b6000806000606084860312156112995761129861111d565b5b60006112a78682870161116b565b93505060206112b88682870161116b565b92505060406112c9868287016111a1565b9150509250925092565b600060ff82169050919050565b6112e9816112d3565b82525050565b600060208201905061130460008301846112e0565b92915050565b6000602082840312156113205761131f61111d565b5b600061132e8482850161116b565b91505092915050565b6000806040838503121561134e5761134d61111d565b5b600061135c8582860161116b565b925050602061136d8582860161116b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113be57607f821691505b6020821081036113d1576113d0611377565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061141182611180565b915061141c83611180565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611451576114506113d7565b5b828201905092915050565b7f47656e65736973204f776e61626c653a20697320746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006114b860248361106d565b91506114c38261145c565b604082019050919050565b600060208201905081810360008301526114e7816114ab565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061154a60258361106d565b9150611555826114ee565b604082019050919050565b600060208201905081810360008301526115798161153d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115dc60268361106d565b91506115e782611580565b604082019050919050565b6000602082019050818103600083015261160b816115cf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061166e60248361106d565b915061167982611612565b604082019050919050565b6000602082019050818103600083015261169d81611661565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061170060228361106d565b915061170b826116a4565b604082019050919050565b6000602082019050818103600083015261172f816116f3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061176c601d8361106d565b915061177782611736565b602082019050919050565b6000602082019050818103600083015261179b8161175f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117fe60258361106d565b9150611809826117a2565b604082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061189060238361106d565b915061189b82611834565b604082019050919050565b600060208201905081810360008301526118bf81611883565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061192260268361106d565b915061192d826118c6565b604082019050919050565b6000602082019050818103600083015261195181611915565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061198e60208361106d565b915061199982611958565b602082019050919050565b600060208201905081810360008301526119bd81611981565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006119fa60148361106d565b9150611a05826119c4565b602082019050919050565b60006020820190508181036000830152611a29816119ed565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611a6660108361106d565b9150611a7182611a30565b602082019050919050565b60006020820190508181036000830152611a9581611a59565b905091905056fea2646970667358221220e7340a7010d511fabd27f3ff5df679a4f2019e5088eac8424b29cc2aa8395ab764736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000553414e444f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553414e444f000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): SANDO
Arg [1] : symbol (string): SANDO
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 53414e444f000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 53414e444f000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
314:548:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4547:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3316:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;739:28:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5328:295:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3158:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6032:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;585:65:6;;;:::i;:::-;;1671:86:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3487:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2613:193:4;;;:::i;:::-;;516:61:6;;;:::i;:::-;;1308:87:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2415:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6773:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3820:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1403:101:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4076:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2961:201:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2196:100:1;2250:13;2283:5;2276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100;:::o;4547:201::-;4630:4;4647:13;4663:12;:10;:12::i;:::-;4647:28;;4686:32;4695:5;4702:7;4711:6;4686:8;:32::i;:::-;4736:4;4729:11;;;4547:201;;;;:::o;3316:108::-;3377:7;3404:12;;3397:19;;3316:108;:::o;739:28:4:-;;;;;;;;;;;;;:::o;5328:295:1:-;5459:4;5476:15;5494:12;:10;:12::i;:::-;5476:30;;5517:38;5533:4;5539:7;5548:6;5517:15;:38::i;:::-;5566:27;5576:4;5582:2;5586:6;5566:9;:27::i;:::-;5611:4;5604:11;;;5328:295;;;;;:::o;3158:93::-;3216:5;3241:2;3234:9;;3158:93;:::o;6032:238::-;6120:4;6137:13;6153:12;:10;:12::i;:::-;6137:28;;6176:64;6185:5;6192:7;6229:10;6201:25;6211:5;6218:7;6201:9;:25::i;:::-;:38;;;;:::i;:::-;6176:8;:64::i;:::-;6258:4;6251:11;;;6032:238;;;;:::o;585:65:6:-;1194:13:4;:11;:13::i;:::-;632:10:6::1;:8;:10::i;:::-;585:65::o:0;1671:86:5:-;1718:4;1742:7;;;;;;;;;;;1735:14;;1671:86;:::o;3487:127:1:-;3561:7;3588:9;:18;3598:7;3588:18;;;;;;;;;;;;;;;;3581:25;;3487:127;;;:::o;2613:193:4:-;1194:13;:11;:13::i;:::-;2711:1:::1;2686:27;;:13;;;;;;;;;;;:27;;::::0;2678:76:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2765:33;2784:13;;;;;;;;;;;2765:18;:33::i;:::-;2613:193::o:0;516:61:6:-;1194:13:4;:11;:13::i;:::-;561:8:6::1;:6;:8::i;:::-;516:61::o:0;1308:87:4:-;1354:7;1381:6;;;;;;;;;;;1374:13;;1308:87;:::o;2415:104:1:-;2471:13;2504:7;2497:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415:104;:::o;6773:436::-;6866:4;6883:13;6899:12;:10;:12::i;:::-;6883:28;;6922:24;6949:25;6959:5;6966:7;6949:9;:25::i;:::-;6922:52;;7013:15;6993:16;:35;;6985:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7106:60;7115:5;7122:7;7150:15;7131:16;:34;7106:8;:60::i;:::-;7197:4;7190:11;;;;6773:436;;;;:::o;3820:193::-;3899:4;3916:13;3932:12;:10;:12::i;:::-;3916:28;;3955;3965:5;3972:2;3976:6;3955:9;:28::i;:::-;4001:4;3994:11;;;3820:193;;;;:::o;1403:101:4:-;1456:7;1482:13;;;;;;;;;;;1475:20;;1403:101;:::o;4076:151:1:-;4165:7;4192:11;:18;4204:5;4192:18;;;;;;;;;;;;;;;:27;4211:7;4192:27;;;;;;;;;;;;;;;;4185:34;;4076:151;;;;:::o;2961:201:4:-;1194:13;:11;:13::i;:::-;3070:1:::1;3050:22;;:8;:22;;::::0;3042:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3126:28;3145:8;3126:18;:28::i;:::-;2961:201:::0;:::o;12122:125:1:-;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10398:380:1:-;10551:1;10534:19;;:5;:19;;;10526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10632:1;10613:21;;:7;:21;;;10605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10716:6;10686:11;:18;10698:5;10686:18;;;;;;;;;;;;;;;:27;10705:7;10686:27;;;;;;;;;;;;;;;:36;;;;10754:7;10738:32;;10747:5;10738:32;;;10763:6;10738:32;;;;;;:::i;:::-;;;;;;;;10398:380;;;:::o;11069:453::-;11204:24;11231:25;11241:5;11248:7;11231:9;:25::i;:::-;11204:52;;11291:17;11271:16;:37;11267:248;;11353:6;11333:16;:26;;11325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11437:51;11446:5;11453:7;11481:6;11462:16;:25;11437:8;:51::i;:::-;11267:248;11193:329;11069:453;;;:::o;7679:671::-;7826:1;7810:18;;:4;:18;;;7802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7903:1;7889:16;;:2;:16;;;7881:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7958:38;7979:4;7985:2;7989:6;7958:20;:38::i;:::-;8009:19;8031:9;:15;8041:4;8031:15;;;;;;;;;;;;;;;;8009:37;;8080:6;8065:11;:21;;8057:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8197:6;8183:11;:20;8165:9;:15;8175:4;8165:15;;;;;;;;;;;;;;;:38;;;;8242:6;8225:9;:13;8235:2;8225:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8281:2;8266:26;;8275:4;8266:26;;;8285:6;8266:26;;;;;;:::i;:::-;;;;;;;;8305:37;8325:4;8331:2;8335:6;8305:19;:37::i;:::-;7791:559;7679:671;;;:::o;1580:132:4:-;1655:12;:10;:12::i;:::-;1644:23;;:7;:5;:7::i;:::-;:23;;;1636:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1580:132::o;2526:120:5:-;1535:16;:14;:16::i;:::-;2595:5:::1;2585:7;;:15;;;;;;;;;;;;;;;;;;2616:22;2625:12;:10;:12::i;:::-;2616:22;;;;;;:::i;:::-;;;;;;;;2526:120::o:0;3322:191:4:-;3396:16;3415:6;;;;;;;;;;;3396:25;;3441:8;3432:6;;:17;;;;;;;;;;;;;;;;;;3496:8;3465:40;;3486:8;3465:40;;;;;;;;;;;;3385:128;3322:191;:::o;2267:118:5:-;1276:19;:17;:19::i;:::-;2337:4:::1;2327:7;;:14;;;;;;;;;;;;;;;;;;2357:20;2364:12;:10;:12::i;:::-;2357:20;;;;;;:::i;:::-;;;;;;;;2267:118::o:0;658:201:6:-;1276:19:5;:17;:19::i;:::-;807:44:6::1;834:4;840:2;844:6;807:26;:44::i;:::-;658:201:::0;;;:::o;12851:124:1:-;;;;:::o;2015:108:5:-;2082:8;:6;:8::i;:::-;2074:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2015:108::o;1830:::-;1901:8;:6;:8::i;:::-;1900:9;1892:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1830:108::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:118::-;3933:24;3951:5;3933:24;:::i;:::-;3928:3;3921:37;3846:118;;:::o;3970:222::-;4063:4;4101:2;4090:9;4086:18;4078:26;;4114:71;4182:1;4171:9;4167:17;4158:6;4114:71;:::i;:::-;3970:222;;;;:::o;4198:619::-;4275:6;4283;4291;4340:2;4328:9;4319:7;4315:23;4311:32;4308:119;;;4346:79;;:::i;:::-;4308:119;4466:1;4491:53;4536:7;4527:6;4516:9;4512:22;4491:53;:::i;:::-;4481:63;;4437:117;4593:2;4619:53;4664:7;4655:6;4644:9;4640:22;4619:53;:::i;:::-;4609:63;;4564:118;4721:2;4747:53;4792:7;4783:6;4772:9;4768:22;4747:53;:::i;:::-;4737:63;;4692:118;4198:619;;;;;:::o;4823:86::-;4858:7;4898:4;4891:5;4887:16;4876:27;;4823:86;;;:::o;4915:112::-;4998:22;5014:5;4998:22;:::i;:::-;4993:3;4986:35;4915:112;;:::o;5033:214::-;5122:4;5160:2;5149:9;5145:18;5137:26;;5173:67;5237:1;5226:9;5222:17;5213:6;5173:67;:::i;:::-;5033:214;;;;:::o;5253:329::-;5312:6;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5253:329;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:320;6298:6;6335:1;6329:4;6325:12;6315:22;;6382:1;6376:4;6372:12;6403:18;6393:81;;6459:4;6451:6;6447:17;6437:27;;6393:81;6521:2;6513:6;6510:14;6490:18;6487:38;6484:84;;6540:18;;:::i;:::-;6484:84;6305:269;6254:320;;;:::o;6580:180::-;6628:77;6625:1;6618:88;6725:4;6722:1;6715:15;6749:4;6746:1;6739:15;6766:305;6806:3;6825:20;6843:1;6825:20;:::i;:::-;6820:25;;6859:20;6877:1;6859:20;:::i;:::-;6854:25;;7013:1;6945:66;6941:74;6938:1;6935:81;6932:107;;;7019:18;;:::i;:::-;6932:107;7063:1;7060;7056:9;7049:16;;6766:305;;;;:::o;7077:223::-;7217:34;7213:1;7205:6;7201:14;7194:58;7286:6;7281:2;7273:6;7269:15;7262:31;7077:223;:::o;7306:366::-;7448:3;7469:67;7533:2;7528:3;7469:67;:::i;:::-;7462:74;;7545:93;7634:3;7545:93;:::i;:::-;7663:2;7658:3;7654:12;7647:19;;7306:366;;;:::o;7678:419::-;7844:4;7882:2;7871:9;7867:18;7859:26;;7931:9;7925:4;7921:20;7917:1;7906:9;7902:17;7895:47;7959:131;8085:4;7959:131;:::i;:::-;7951:139;;7678:419;;;:::o;8103:224::-;8243:34;8239:1;8231:6;8227:14;8220:58;8312:7;8307:2;8299:6;8295:15;8288:32;8103:224;:::o;8333:366::-;8475:3;8496:67;8560:2;8555:3;8496:67;:::i;:::-;8489:74;;8572:93;8661:3;8572:93;:::i;:::-;8690:2;8685:3;8681:12;8674:19;;8333:366;;;:::o;8705:419::-;8871:4;8909:2;8898:9;8894:18;8886:26;;8958:9;8952:4;8948:20;8944:1;8933:9;8929:17;8922:47;8986:131;9112:4;8986:131;:::i;:::-;8978:139;;8705:419;;;:::o;9130:225::-;9270:34;9266:1;9258:6;9254:14;9247:58;9339:8;9334:2;9326:6;9322:15;9315:33;9130:225;:::o;9361:366::-;9503:3;9524:67;9588:2;9583:3;9524:67;:::i;:::-;9517:74;;9600:93;9689:3;9600:93;:::i;:::-;9718:2;9713:3;9709:12;9702:19;;9361:366;;;:::o;9733:419::-;9899:4;9937:2;9926:9;9922:18;9914:26;;9986:9;9980:4;9976:20;9972:1;9961:9;9957:17;9950:47;10014:131;10140:4;10014:131;:::i;:::-;10006:139;;9733:419;;;:::o;10158:223::-;10298:34;10294:1;10286:6;10282:14;10275:58;10367:6;10362:2;10354:6;10350:15;10343:31;10158:223;:::o;10387:366::-;10529:3;10550:67;10614:2;10609:3;10550:67;:::i;:::-;10543:74;;10626:93;10715:3;10626:93;:::i;:::-;10744:2;10739:3;10735:12;10728:19;;10387:366;;;:::o;10759:419::-;10925:4;10963:2;10952:9;10948:18;10940:26;;11012:9;11006:4;11002:20;10998:1;10987:9;10983:17;10976:47;11040:131;11166:4;11040:131;:::i;:::-;11032:139;;10759:419;;;:::o;11184:221::-;11324:34;11320:1;11312:6;11308:14;11301:58;11393:4;11388:2;11380:6;11376:15;11369:29;11184:221;:::o;11411:366::-;11553:3;11574:67;11638:2;11633:3;11574:67;:::i;:::-;11567:74;;11650:93;11739:3;11650:93;:::i;:::-;11768:2;11763:3;11759:12;11752:19;;11411:366;;;:::o;11783:419::-;11949:4;11987:2;11976:9;11972:18;11964:26;;12036:9;12030:4;12026:20;12022:1;12011:9;12007:17;12000:47;12064:131;12190:4;12064:131;:::i;:::-;12056:139;;11783:419;;;:::o;12208:179::-;12348:31;12344:1;12336:6;12332:14;12325:55;12208:179;:::o;12393:366::-;12535:3;12556:67;12620:2;12615:3;12556:67;:::i;:::-;12549:74;;12632:93;12721:3;12632:93;:::i;:::-;12750:2;12745:3;12741:12;12734:19;;12393:366;;;:::o;12765:419::-;12931:4;12969:2;12958:9;12954:18;12946:26;;13018:9;13012:4;13008:20;13004:1;12993:9;12989:17;12982:47;13046:131;13172:4;13046:131;:::i;:::-;13038:139;;12765:419;;;:::o;13190:224::-;13330:34;13326:1;13318:6;13314:14;13307:58;13399:7;13394:2;13386:6;13382:15;13375:32;13190:224;:::o;13420:366::-;13562:3;13583:67;13647:2;13642:3;13583:67;:::i;:::-;13576:74;;13659:93;13748:3;13659:93;:::i;:::-;13777:2;13772:3;13768:12;13761:19;;13420:366;;;:::o;13792:419::-;13958:4;13996:2;13985:9;13981:18;13973:26;;14045:9;14039:4;14035:20;14031:1;14020:9;14016:17;14009:47;14073:131;14199:4;14073:131;:::i;:::-;14065:139;;13792:419;;;:::o;14217:222::-;14357:34;14353:1;14345:6;14341:14;14334:58;14426:5;14421:2;14413:6;14409:15;14402:30;14217:222;:::o;14445:366::-;14587:3;14608:67;14672:2;14667:3;14608:67;:::i;:::-;14601:74;;14684:93;14773:3;14684:93;:::i;:::-;14802:2;14797:3;14793:12;14786:19;;14445:366;;;:::o;14817:419::-;14983:4;15021:2;15010:9;15006:18;14998:26;;15070:9;15064:4;15060:20;15056:1;15045:9;15041:17;15034:47;15098:131;15224:4;15098:131;:::i;:::-;15090:139;;14817:419;;;:::o;15242:225::-;15382:34;15378:1;15370:6;15366:14;15359:58;15451:8;15446:2;15438:6;15434:15;15427:33;15242:225;:::o;15473:366::-;15615:3;15636:67;15700:2;15695:3;15636:67;:::i;:::-;15629:74;;15712:93;15801:3;15712:93;:::i;:::-;15830:2;15825:3;15821:12;15814:19;;15473:366;;;:::o;15845:419::-;16011:4;16049:2;16038:9;16034:18;16026:26;;16098:9;16092:4;16088:20;16084:1;16073:9;16069:17;16062:47;16126:131;16252:4;16126:131;:::i;:::-;16118:139;;15845:419;;;:::o;16270:182::-;16410:34;16406:1;16398:6;16394:14;16387:58;16270:182;:::o;16458:366::-;16600:3;16621:67;16685:2;16680:3;16621:67;:::i;:::-;16614:74;;16697:93;16786:3;16697:93;:::i;:::-;16815:2;16810:3;16806:12;16799:19;;16458:366;;;:::o;16830:419::-;16996:4;17034:2;17023:9;17019:18;17011:26;;17083:9;17077:4;17073:20;17069:1;17058:9;17054:17;17047:47;17111:131;17237:4;17111:131;:::i;:::-;17103:139;;16830:419;;;:::o;17255:170::-;17395:22;17391:1;17383:6;17379:14;17372:46;17255:170;:::o;17431:366::-;17573:3;17594:67;17658:2;17653:3;17594:67;:::i;:::-;17587:74;;17670:93;17759:3;17670:93;:::i;:::-;17788:2;17783:3;17779:12;17772:19;;17431:366;;;:::o;17803:419::-;17969:4;18007:2;17996:9;17992:18;17984:26;;18056:9;18050:4;18046:20;18042:1;18031:9;18027:17;18020:47;18084:131;18210:4;18084:131;:::i;:::-;18076:139;;17803:419;;;:::o;18228:166::-;18368:18;18364:1;18356:6;18352:14;18345:42;18228:166;:::o;18400:366::-;18542:3;18563:67;18627:2;18622:3;18563:67;:::i;:::-;18556:74;;18639:93;18728:3;18639:93;:::i;:::-;18757:2;18752:3;18748:12;18741:19;;18400:366;;;:::o;18772:419::-;18938:4;18976:2;18965:9;18961:18;18953:26;;19025:9;19019:4;19015:20;19011:1;19000:9;18996:17;18989:47;19053:131;19179:4;19053:131;:::i;:::-;19045:139;;18772:419;;;:::o
Swarm Source
ipfs://e7340a7010d511fabd27f3ff5df679a4f2019e5088eac8424b29cc2aa8395ab7
Loading...
Loading
Loading...
Loading
OVERVIEW
Sando Token is a decentralized platform built on an Ethereum blockchain with a mission to create a community-driven ecosystem that empowered the holders to better their financial condition. The goal of the Sando Token is to integrate NFT and Metaverse to the real world.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.