ETH Price: $2,927.94 (-9.66%)
Gas: 45 Gwei

Contract

0x34748FEDAd669C788aaBe4fb325A4587941F7B48
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Approve202108792024-07-01 9:49:593 days ago1719827399IN
Tosa Inu: TOS Token
0 ETH0.000165433.50288847
Approve202105792024-07-01 8:49:113 days ago1719823751IN
Tosa Inu: TOS Token
0 ETH0.000210294.45834892
Approve202075442024-06-30 22:38:474 days ago1719787127IN
Tosa Inu: TOS Token
0 ETH0.000189324.02909886
Transfer202071322024-06-30 21:16:234 days ago1719782183IN
Tosa Inu: TOS Token
0 ETH0.000183693.85844736
Approve202066452024-06-30 19:38:594 days ago1719776339IN
Tosa Inu: TOS Token
0 ETH0.000188783.99716483
Approve201956972024-06-29 6:56:595 days ago1719644219IN
Tosa Inu: TOS Token
0 ETH0.000099962.12964977
Approve201868942024-06-28 1:27:117 days ago1719538031IN
Tosa Inu: TOS Token
0 ETH0.000404168.5990107
Approve201678482024-06-25 9:37:359 days ago1719308255IN
Tosa Inu: TOS Token
0 ETH0.0006234813.20133408
Approve201665702024-06-25 5:19:599 days ago1719292799IN
Tosa Inu: TOS Token
0 ETH0.000108342.30576554
Transfer201531542024-06-23 8:18:2311 days ago1719130703IN
Tosa Inu: TOS Token
0 ETH0.000229164.81095855
Approve201514552024-06-23 2:36:1112 days ago1719110171IN
Tosa Inu: TOS Token
0 ETH0.000103042.18184351
Transfer201514032024-06-23 2:25:4712 days ago1719109547IN
Tosa Inu: TOS Token
0 ETH0.00009153.00176027
Transfer201514022024-06-23 2:25:3512 days ago1719109535IN
Tosa Inu: TOS Token
0 ETH0.000088822.91363737
Transfer201513122024-06-23 2:07:2312 days ago1719108443IN
Tosa Inu: TOS Token
0 ETH0.000094983.11585404
Transfer201513102024-06-23 2:06:5912 days ago1719108419IN
Tosa Inu: TOS Token
0 ETH0.000147243.09444075
Approve201397282024-06-21 11:14:1113 days ago1718968451IN
Tosa Inu: TOS Token
0 ETH0.000104764.20983818
Approve201382692024-06-21 6:21:3513 days ago1718950895IN
Tosa Inu: TOS Token
0 ETH0.000202384.28513885
Approve200957992024-06-15 7:47:3519 days ago1718437655IN
Tosa Inu: TOS Token
0 ETH0.000298186.32172938
Approve200913532024-06-14 16:50:5920 days ago1718383859IN
Tosa Inu: TOS Token
0 ETH0.0011779224.97237629
Approve200911722024-06-14 16:14:4720 days ago1718381687IN
Tosa Inu: TOS Token
0 ETH0.0013098227.76869833
Approve200903082024-06-14 13:20:5920 days ago1718371259IN
Tosa Inu: TOS Token
0 ETH0.0005441311.52124452
Approve200797892024-06-13 2:01:4722 days ago1718244107IN
Tosa Inu: TOS Token
0 ETH0.0008976519.03070191
Approve200743952024-06-12 7:56:3522 days ago1718178995IN
Tosa Inu: TOS Token
0 ETH0.000316976.71995363
Approve200375972024-06-07 4:35:2327 days ago1717734923IN
Tosa Inu: TOS Token
0 ETH0.000368667.84582934
Approve200269172024-06-05 16:47:3529 days ago1717606055IN
Tosa Inu: TOS Token
0 ETH0.0013140727.85888325
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ToSaToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-09-01
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Context.sol
// 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;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.7.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:
     *
     * - `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 {}
}

// File: ToSaTokenStart.sol



pragma solidity ^0.8.0;


contract ToSaToken is ERC20{

   // All 65% tokens will be added liquidity on Uniswap.
   address public owner;

   // All 20% tokens will be transferred to the community staking contract.
   address walletStaking = 0xd0de2312dbCbC74Bd7C445bd4268E4Ea8C3752FF;

   // All 5% of TEAM tokens will be locked for 2 years on Team.finance.
   address walletTeam = 0x412122ea30D416Ff4b80f613b549b24F8544c1e0;

   // 5% of the community rewards will be transferred to the community reward contract.
   address walletRewards = 0x374B28F4EBF7aFCe32bD73952b2417c0739dF9c1;

   // 5% for marketing and project development, team will hold 2% to develop new products.
   // And 3% for community marketing campaigns, celebrity connections...
   address walletMarketing = 0xdC531918ee60Ed6667ce3f9032A1814c48De70cE;

   
   // Total amount of tokens burned, including dApps and whales.
   uint256 private _totalBurned;


    /**
     * @dev Constructor.
     * @param name name for this token.
     * @param symbol for this token, symbol is TOSI
     * decimals for this token, default is 18.
     */

     constructor(string memory name, string memory symbol, uint256 totalSupply) ERC20(name, symbol){
        //owner of all tokens.
         owner = msg.sender;


        // 1000000000000000000 = 10^18 unit of ether.
        // totalSupply is the total amount of tokens to mint;


        /**
        * @dev constructor
        Only minting tokens once, then the owner will distribute the correct percentage to the wallets 
        declared above, from those declared wallets will move to the corresponding 
        contracts, the process will be publicly announced.
        */
        _mint(owner, totalSupply * 1000000000000000000);
    }

    
    /**
     * @dev Whale will be burned.
     * @param value is the amount of tokens will be burned.
     * _totalBurned update total burned tokens
     */
    function whaleBurn(uint256 value) public{
      _burn(msg.sender, value);
      _totalBurned += value;
    }


    /**
    * @dev dApp will be burned.
    * @param value is the amount of tokens will be burned.
    * _totalBurned update total amount tokens.
    */
    function dAppBurn(uint256 value) public{
      _burn(msg.sender, value);     
      _totalBurned += value; 
    }


    /**
     * @dev Total tokens burned from (Whales and dApps services).
     * @return _totalBurned
     */
     function totalBurned() public view returns (uint256) {
        return _totalBurned;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"dAppBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"value","type":"uint256"}],"name":"whaleBurn","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273d0de2312dbcbc74bd7c445bd4268e4ea8c3752ff600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073412122ea30d416ff4b80f613b549b24f8544c1e0600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073374b28f4ebf7afce32bd73952b2417c0739df9c1600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dc531918ee60ed6667ce3f9032a1814c48de70ce600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016557600080fd5b5060405162001f3238038062001f3283398181016040528101906200018b919062000510565b82828160039080519060200190620001a5929190620003d7565b508060049080519060200190620001be929190620003d7565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200024b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a7640000836200023f9190620006ff565b6200025460201b60201c565b5050506200087d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002be90620005eb565b60405180910390fd5b620002db60008383620003cd60201b60201c565b8060026000828254620002ef9190620006a2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003469190620006a2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ad91906200060d565b60405180910390a3620003c960008383620003d260201b60201c565b5050565b505050565b505050565b828054620003e590620007a0565b90600052602060002090601f01602090048101928262000409576000855562000455565b82601f106200042457805160ff191683800117855562000455565b8280016001018555821562000455579182015b828111156200045457825182559160200191906001019062000437565b5b50905062000464919062000468565b5090565b5b808211156200048357600081600090555060010162000469565b5090565b60006200049e62000498846200065e565b6200062a565b905082815260208101848484011115620004b757600080fd5b620004c48482856200076a565b509392505050565b600082601f830112620004de57600080fd5b8151620004f084826020860162000487565b91505092915050565b6000815190506200050a8162000863565b92915050565b6000806000606084860312156200052657600080fd5b600084015167ffffffffffffffff8111156200054157600080fd5b6200054f86828701620004cc565b935050602084015167ffffffffffffffff8111156200056d57600080fd5b6200057b86828701620004cc565b92505060406200058e86828701620004f9565b9150509250925092565b6000620005a7601f8362000691565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620005e58162000760565b82525050565b60006020820190508181036000830152620006068162000598565b9050919050565b6000602082019050620006246000830184620005da565b92915050565b6000604051905081810181811067ffffffffffffffff8211171562000654576200065362000834565b5b8060405250919050565b600067ffffffffffffffff8211156200067c576200067b62000834565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620006af8262000760565b9150620006bc8362000760565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006f457620006f3620007d6565b5b828201905092915050565b60006200070c8262000760565b9150620007198362000760565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007555762000754620007d6565b5b828202905092915050565b6000819050919050565b60005b838110156200078a5780820151818401526020810190506200076d565b838111156200079a576000848401525b50505050565b60006002820490506001821680620007b957607f821691505b60208210811415620007d057620007cf62000805565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200086e8162000760565b81146200087a57600080fd5b50565b6116a5806200088d6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80633fecd54311610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063d89135cd146102e8578063dd62ed3e14610306576100f5565b80633fecd5431461020057806370a082311461021c5780638da5cb5b1461024c57806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd1461016657806325b11b7014610196578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f91906112fa565b60405180910390f35b610132600480360381019061012d9190610e7a565b6103c8565b60405161013f91906112df565b60405180910390f35b6101506103eb565b60405161015d919061143c565b60405180910390f35b610180600480360381019061017b9190610e2b565b6103f5565b60405161018d91906112df565b60405180910390f35b6101b060048036038101906101ab9190610eb6565b610424565b005b6101ba61044a565b6040516101c79190611457565b60405180910390f35b6101ea60048036038101906101e59190610e7a565b610453565b6040516101f791906112df565b60405180910390f35b61021a60048036038101906102159190610eb6565b61048a565b005b61023660048036038101906102319190610dc6565b6104b0565b604051610243919061143c565b60405180910390f35b6102546104f8565b60405161026191906112c4565b60405180910390f35b61027261051e565b60405161027f91906112fa565b60405180910390f35b6102a2600480360381019061029d9190610e7a565b6105b0565b6040516102af91906112df565b60405180910390f35b6102d260048036038101906102cd9190610e7a565b610627565b6040516102df91906112df565b60405180910390f35b6102f061064a565b6040516102fd919061143c565b60405180910390f35b610320600480360381019061031b9190610def565b610654565b60405161032d919061143c565b60405180910390f35b606060038054610345906115a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906115a0565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d36106db565b90506103e08185856106e3565b600191505092915050565b6000600254905090565b6000806104006106db565b905061040d8582856108ae565b61041885858561093a565b60019150509392505050565b61042e3382610bbb565b80600a6000828254610440919061148e565b9250508190555050565b60006012905090565b60008061045e6106db565b905061047f8185856104708589610654565b61047a919061148e565b6106e3565b600191505092915050565b6104943382610bbb565b80600a60008282546104a6919061148e565b9250508190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461052d906115a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610559906115a0565b80156105a65780601f1061057b576101008083540402835291602001916105a6565b820191906000526020600020905b81548152906001019060200180831161058957829003601f168201915b5050505050905090565b6000806105bb6106db565b905060006105c98286610654565b90508381101561060e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106059061141c565b60405180910390fd5b61061b82868684036106e3565b60019250505092915050565b6000806106326106db565b905061063f81858561093a565b600191505092915050565b6000600a54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a906113fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba9061135c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108a1919061143c565b60405180910390a3505050565b60006108ba8484610654565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109345781811015610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d9061137c565b60405180910390fd5b61093384848484036106e3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a1906113dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a119061131c565b60405180910390fd5b610a25838383610d92565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061139c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b3e919061148e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ba2919061143c565b60405180910390a3610bb5848484610d97565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c22906113bc565b60405180910390fd5b610c3782600083610d92565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb49061133c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d1491906114e4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d79919061143c565b60405180910390a3610d8d83600084610d97565b505050565b505050565b505050565b600081359050610dab81611641565b92915050565b600081359050610dc081611658565b92915050565b600060208284031215610dd857600080fd5b6000610de684828501610d9c565b91505092915050565b60008060408385031215610e0257600080fd5b6000610e1085828601610d9c565b9250506020610e2185828601610d9c565b9150509250929050565b600080600060608486031215610e4057600080fd5b6000610e4e86828701610d9c565b9350506020610e5f86828701610d9c565b9250506040610e7086828701610db1565b9150509250925092565b60008060408385031215610e8d57600080fd5b6000610e9b85828601610d9c565b9250506020610eac85828601610db1565b9150509250929050565b600060208284031215610ec857600080fd5b6000610ed684828501610db1565b91505092915050565b610ee881611518565b82525050565b610ef78161152a565b82525050565b6000610f0882611472565b610f12818561147d565b9350610f2281856020860161156d565b610f2b81611630565b840191505092915050565b6000610f4360238361147d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fa960228361147d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061100f60228361147d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611075601d8361147d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006110b560268361147d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061111b60218361147d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061118160258361147d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111e760248361147d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061124d60258361147d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6112af81611556565b82525050565b6112be81611560565b82525050565b60006020820190506112d96000830184610edf565b92915050565b60006020820190506112f46000830184610eee565b92915050565b600060208201905081810360008301526113148184610efd565b905092915050565b6000602082019050818103600083015261133581610f36565b9050919050565b6000602082019050818103600083015261135581610f9c565b9050919050565b6000602082019050818103600083015261137581611002565b9050919050565b6000602082019050818103600083015261139581611068565b9050919050565b600060208201905081810360008301526113b5816110a8565b9050919050565b600060208201905081810360008301526113d58161110e565b9050919050565b600060208201905081810360008301526113f581611174565b9050919050565b60006020820190508181036000830152611415816111da565b9050919050565b6000602082019050818103600083015261143581611240565b9050919050565b600060208201905061145160008301846112a6565b92915050565b600060208201905061146c60008301846112b5565b92915050565b600081519050919050565b600082825260208201905092915050565b600061149982611556565b91506114a483611556565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114d9576114d86115d2565b5b828201905092915050565b60006114ef82611556565b91506114fa83611556565b92508282101561150d5761150c6115d2565b5b828203905092915050565b600061152382611536565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561158b578082015181840152602081019050611570565b8381111561159a576000848401525b50505050565b600060028204905060018216806115b857607f821691505b602082108114156115cc576115cb611601565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61164a81611518565b811461165557600080fd5b50565b61166181611556565b811461166c57600080fd5b5056fea264697066735822122071ad4216d981fba8c55f14fe4993df446596f074353ade3011319f6e7706d9ef64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000221b262dd80000000000000000000000000000000000000000000000000000000000000000008544f534120494e550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544f530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80633fecd54311610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063d89135cd146102e8578063dd62ed3e14610306576100f5565b80633fecd5431461020057806370a082311461021c5780638da5cb5b1461024c57806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd1461016657806325b11b7014610196578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f91906112fa565b60405180910390f35b610132600480360381019061012d9190610e7a565b6103c8565b60405161013f91906112df565b60405180910390f35b6101506103eb565b60405161015d919061143c565b60405180910390f35b610180600480360381019061017b9190610e2b565b6103f5565b60405161018d91906112df565b60405180910390f35b6101b060048036038101906101ab9190610eb6565b610424565b005b6101ba61044a565b6040516101c79190611457565b60405180910390f35b6101ea60048036038101906101e59190610e7a565b610453565b6040516101f791906112df565b60405180910390f35b61021a60048036038101906102159190610eb6565b61048a565b005b61023660048036038101906102319190610dc6565b6104b0565b604051610243919061143c565b60405180910390f35b6102546104f8565b60405161026191906112c4565b60405180910390f35b61027261051e565b60405161027f91906112fa565b60405180910390f35b6102a2600480360381019061029d9190610e7a565b6105b0565b6040516102af91906112df565b60405180910390f35b6102d260048036038101906102cd9190610e7a565b610627565b6040516102df91906112df565b60405180910390f35b6102f061064a565b6040516102fd919061143c565b60405180910390f35b610320600480360381019061031b9190610def565b610654565b60405161032d919061143c565b60405180910390f35b606060038054610345906115a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906115a0565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d36106db565b90506103e08185856106e3565b600191505092915050565b6000600254905090565b6000806104006106db565b905061040d8582856108ae565b61041885858561093a565b60019150509392505050565b61042e3382610bbb565b80600a6000828254610440919061148e565b9250508190555050565b60006012905090565b60008061045e6106db565b905061047f8185856104708589610654565b61047a919061148e565b6106e3565b600191505092915050565b6104943382610bbb565b80600a60008282546104a6919061148e565b9250508190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461052d906115a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610559906115a0565b80156105a65780601f1061057b576101008083540402835291602001916105a6565b820191906000526020600020905b81548152906001019060200180831161058957829003601f168201915b5050505050905090565b6000806105bb6106db565b905060006105c98286610654565b90508381101561060e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106059061141c565b60405180910390fd5b61061b82868684036106e3565b60019250505092915050565b6000806106326106db565b905061063f81858561093a565b600191505092915050565b6000600a54905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a906113fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba9061135c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108a1919061143c565b60405180910390a3505050565b60006108ba8484610654565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109345781811015610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d9061137c565b60405180910390fd5b61093384848484036106e3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a1906113dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a119061131c565b60405180910390fd5b610a25838383610d92565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061139c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b3e919061148e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ba2919061143c565b60405180910390a3610bb5848484610d97565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c22906113bc565b60405180910390fd5b610c3782600083610d92565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb49061133c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d1491906114e4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d79919061143c565b60405180910390a3610d8d83600084610d97565b505050565b505050565b505050565b600081359050610dab81611641565b92915050565b600081359050610dc081611658565b92915050565b600060208284031215610dd857600080fd5b6000610de684828501610d9c565b91505092915050565b60008060408385031215610e0257600080fd5b6000610e1085828601610d9c565b9250506020610e2185828601610d9c565b9150509250929050565b600080600060608486031215610e4057600080fd5b6000610e4e86828701610d9c565b9350506020610e5f86828701610d9c565b9250506040610e7086828701610db1565b9150509250925092565b60008060408385031215610e8d57600080fd5b6000610e9b85828601610d9c565b9250506020610eac85828601610db1565b9150509250929050565b600060208284031215610ec857600080fd5b6000610ed684828501610db1565b91505092915050565b610ee881611518565b82525050565b610ef78161152a565b82525050565b6000610f0882611472565b610f12818561147d565b9350610f2281856020860161156d565b610f2b81611630565b840191505092915050565b6000610f4360238361147d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fa960228361147d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061100f60228361147d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611075601d8361147d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006110b560268361147d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061111b60218361147d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061118160258361147d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111e760248361147d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061124d60258361147d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6112af81611556565b82525050565b6112be81611560565b82525050565b60006020820190506112d96000830184610edf565b92915050565b60006020820190506112f46000830184610eee565b92915050565b600060208201905081810360008301526113148184610efd565b905092915050565b6000602082019050818103600083015261133581610f36565b9050919050565b6000602082019050818103600083015261135581610f9c565b9050919050565b6000602082019050818103600083015261137581611002565b9050919050565b6000602082019050818103600083015261139581611068565b9050919050565b600060208201905081810360008301526113b5816110a8565b9050919050565b600060208201905081810360008301526113d58161110e565b9050919050565b600060208201905081810360008301526113f581611174565b9050919050565b60006020820190508181036000830152611415816111da565b9050919050565b6000602082019050818103600083015261143581611240565b9050919050565b600060208201905061145160008301846112a6565b92915050565b600060208201905061146c60008301846112b5565b92915050565b600081519050919050565b600082825260208201905092915050565b600061149982611556565b91506114a483611556565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114d9576114d86115d2565b5b828201905092915050565b60006114ef82611556565b91506114fa83611556565b92508282101561150d5761150c6115d2565b5b828203905092915050565b600061152382611536565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561158b578082015181840152602081019050611570565b8381111561159a576000848401525b50505050565b600060028204905060018216806115b857607f821691505b602082108114156115cc576115cb611601565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61164a81611518565b811461165557600080fd5b50565b61166181611556565b811461166c57600080fd5b5056fea264697066735822122071ad4216d981fba8c55f14fe4993df446596f074353ade3011319f6e7706d9ef64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000221b262dd80000000000000000000000000000000000000000000000000000000000000000008544f534120494e550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544f530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): TOSA INU
Arg [1] : symbol (string): TOS
Arg [2] : totalSupply (uint256): 600000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000221b262dd8000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 544f534120494e55000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 544f530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17536:2565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9037:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7806:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9818:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19483:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7648:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10522:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19762:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7977:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17629:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6905:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11263:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8310:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20003:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8566:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6686:100;6740:13;6773:5;6766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6686:100;:::o;9037:201::-;9120:4;9137:13;9153:12;:10;:12::i;:::-;9137:28;;9176:32;9185:5;9192:7;9201:6;9176:8;:32::i;:::-;9226:4;9219:11;;;9037:201;;;;:::o;7806:108::-;7867:7;7894:12;;7887:19;;7806:108;:::o;9818:295::-;9949:4;9966:15;9984:12;:10;:12::i;:::-;9966:30;;10007:38;10023:4;10029:7;10038:6;10007:15;:38::i;:::-;10056:27;10066:4;10072:2;10076:6;10056:9;:27::i;:::-;10101:4;10094:11;;;9818:295;;;;;:::o;19483:111::-;19532:24;19538:10;19550:5;19532;:24::i;:::-;19581:5;19565:12;;:21;;;;;;;:::i;:::-;;;;;;;;19483:111;:::o;7648:93::-;7706:5;7731:2;7724:9;;7648:93;:::o;10522:238::-;10610:4;10627:13;10643:12;:10;:12::i;:::-;10627:28;;10666:64;10675:5;10682:7;10719:10;10691:25;10701:5;10708:7;10691:9;:25::i;:::-;:38;;;;:::i;:::-;10666:8;:64::i;:::-;10748:4;10741:11;;;10522:238;;;;:::o;19762:116::-;19810:24;19816:10;19828:5;19810;:24::i;:::-;19864:5;19848:12;;:21;;;;;;;:::i;:::-;;;;;;;;19762:116;:::o;7977:127::-;8051:7;8078:9;:18;8088:7;8078:18;;;;;;;;;;;;;;;;8071:25;;7977:127;;;:::o;17629:20::-;;;;;;;;;;;;;:::o;6905:104::-;6961:13;6994:7;6987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6905:104;:::o;11263:436::-;11356:4;11373:13;11389:12;:10;:12::i;:::-;11373:28;;11412:24;11439:25;11449:5;11456:7;11439:9;:25::i;:::-;11412:52;;11503:15;11483:16;:35;;11475:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11596:60;11605:5;11612:7;11640:15;11621:16;:34;11596:8;:60::i;:::-;11687:4;11680:11;;;;11263:436;;;;:::o;8310:193::-;8389:4;8406:13;8422:12;:10;:12::i;:::-;8406:28;;8445;8455:5;8462:2;8466:6;8445:9;:28::i;:::-;8491:4;8484:11;;;8310:193;;;;:::o;20003:91::-;20047:7;20074:12;;20067:19;;20003:91;:::o;8566:151::-;8655:7;8682:11;:18;8694:5;8682:18;;;;;;;;;;;;;;;:27;8701:7;8682:27;;;;;;;;;;;;;;;;8675:34;;8566:151;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;14888:380::-;15041:1;15024:19;;:5;:19;;;;15016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15122:1;15103:21;;:7;:21;;;;15095:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15206:6;15176:11;:18;15188:5;15176:18;;;;;;;;;;;;;;;:27;15195:7;15176:27;;;;;;;;;;;;;;;:36;;;;15244:7;15228:32;;15237:5;15228:32;;;15253:6;15228:32;;;;;;:::i;:::-;;;;;;;;14888:380;;;:::o;15559:453::-;15694:24;15721:25;15731:5;15738:7;15721:9;:25::i;:::-;15694:52;;15781:17;15761:16;:37;15757:248;;15843:6;15823:16;:26;;15815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15927:51;15936:5;15943:7;15971:6;15952:16;:25;15927:8;:51::i;:::-;15757:248;15559:453;;;;:::o;12169:671::-;12316:1;12300:18;;:4;:18;;;;12292:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12393:1;12379:16;;:2;:16;;;;12371:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12448:38;12469:4;12475:2;12479:6;12448:20;:38::i;:::-;12499:19;12521:9;:15;12531:4;12521:15;;;;;;;;;;;;;;;;12499:37;;12570:6;12555:11;:21;;12547:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12687:6;12673:11;:20;12655:9;:15;12665:4;12655:15;;;;;;;;;;;;;;;:38;;;;12732:6;12715:9;:13;12725:2;12715:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12771:2;12756:26;;12765:4;12756:26;;;12775:6;12756:26;;;;;;:::i;:::-;;;;;;;;12795:37;12815:4;12821:2;12825:6;12795:19;:37::i;:::-;12169:671;;;;:::o;13859:591::-;13962:1;13943:21;;:7;:21;;;;13935:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14015:49;14036:7;14053:1;14057:6;14015:20;:49::i;:::-;14077:22;14102:9;:18;14112:7;14102:18;;;;;;;;;;;;;;;;14077:43;;14157:6;14139:14;:24;;14131:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14276:6;14259:14;:23;14238:9;:18;14248:7;14238:18;;;;;;;;;;;;;;;:44;;;;14320:6;14304:12;;:22;;;;;;;:::i;:::-;;;;;;;;14370:1;14344:37;;14353:7;14344:37;;;14374:6;14344:37;;;;;;:::i;:::-;;;;;;;;14394:48;14414:7;14431:1;14435:6;14394:19;:48::i;:::-;13859:591;;;:::o;16612:125::-;;;;:::o;17341:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:366::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:4;3892:2;3887:3;3883:12;3876:26;3928:2;3923:3;3919:12;3912:19;;3717:220;;;:::o;3943:327::-;;4106:67;4170:2;4165:3;4106:67;:::i;:::-;4099:74;;4203:31;4199:1;4194:3;4190:11;4183:52;4261:2;4256:3;4252:12;4245:19;;4089:181;;;:::o;4276:370::-;;4439:67;4503:2;4498:3;4439:67;:::i;:::-;4432:74;;4536:34;4532:1;4527:3;4523:11;4516:55;4602:8;4597:2;4592:3;4588:12;4581:30;4637:2;4632:3;4628:12;4621:19;;4422:224;;;:::o;4652:365::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:34;4908:1;4903:3;4899:11;4892:55;4978:3;4973:2;4968:3;4964:12;4957:25;5008:2;5003:3;4999:12;4992:19;;4798:219;;;:::o;5023:369::-;;5186:67;5250:2;5245:3;5186:67;:::i;:::-;5179:74;;5283:34;5279:1;5274:3;5270:11;5263:55;5349:7;5344:2;5339:3;5335:12;5328:29;5383:2;5378:3;5374:12;5367:19;;5169:223;;;:::o;5398:368::-;;5561:67;5625:2;5620:3;5561:67;:::i;:::-;5554:74;;5658:34;5654:1;5649:3;5645:11;5638:55;5724:6;5719:2;5714:3;5710:12;5703:28;5757:2;5752:3;5748:12;5741:19;;5544:222;;;:::o;5772:369::-;;5935:67;5999:2;5994:3;5935:67;:::i;:::-;5928:74;;6032:34;6028:1;6023:3;6019:11;6012:55;6098:7;6093:2;6088:3;6084:12;6077:29;6132:2;6127:3;6123:12;6116:19;;5918:223;;;:::o;6147:118::-;6234:24;6252:5;6234:24;:::i;:::-;6229:3;6222:37;6212:53;;:::o;6271:112::-;6354:22;6370:5;6354:22;:::i;:::-;6349:3;6342:35;6332:51;;:::o;6389:222::-;;6520:2;6509:9;6505:18;6497:26;;6533:71;6601:1;6590:9;6586:17;6577:6;6533:71;:::i;:::-;6487:124;;;;:::o;6617:210::-;;6742:2;6731:9;6727:18;6719:26;;6755:65;6817:1;6806:9;6802:17;6793:6;6755:65;:::i;:::-;6709:118;;;;:::o;6833:313::-;;6984:2;6973:9;6969:18;6961:26;;7033:9;7027:4;7023:20;7019:1;7008:9;7004:17;6997:47;7061:78;7134:4;7125:6;7061:78;:::i;:::-;7053:86;;6951:195;;;;:::o;7152:419::-;;7356:2;7345:9;7341:18;7333:26;;7405:9;7399:4;7395:20;7391:1;7380:9;7376:17;7369:47;7433:131;7559:4;7433:131;:::i;:::-;7425:139;;7323:248;;;:::o;7577:419::-;;7781:2;7770:9;7766:18;7758:26;;7830:9;7824:4;7820:20;7816:1;7805:9;7801:17;7794:47;7858:131;7984:4;7858:131;:::i;:::-;7850:139;;7748:248;;;:::o;8002:419::-;;8206:2;8195:9;8191:18;8183:26;;8255:9;8249:4;8245:20;8241:1;8230:9;8226:17;8219:47;8283:131;8409:4;8283:131;:::i;:::-;8275:139;;8173:248;;;:::o;8427:419::-;;8631:2;8620:9;8616:18;8608:26;;8680:9;8674:4;8670:20;8666:1;8655:9;8651:17;8644:47;8708:131;8834:4;8708:131;:::i;:::-;8700:139;;8598:248;;;:::o;8852:419::-;;9056:2;9045:9;9041:18;9033:26;;9105:9;9099:4;9095:20;9091:1;9080:9;9076:17;9069:47;9133:131;9259:4;9133:131;:::i;:::-;9125:139;;9023:248;;;:::o;9277:419::-;;9481:2;9470:9;9466:18;9458:26;;9530:9;9524:4;9520:20;9516:1;9505:9;9501:17;9494:47;9558:131;9684:4;9558:131;:::i;:::-;9550:139;;9448:248;;;:::o;9702:419::-;;9906:2;9895:9;9891:18;9883:26;;9955:9;9949:4;9945:20;9941:1;9930:9;9926:17;9919:47;9983:131;10109:4;9983:131;:::i;:::-;9975:139;;9873:248;;;:::o;10127:419::-;;10331:2;10320:9;10316:18;10308:26;;10380:9;10374:4;10370:20;10366:1;10355:9;10351:17;10344:47;10408:131;10534:4;10408:131;:::i;:::-;10400:139;;10298:248;;;:::o;10552:419::-;;10756:2;10745:9;10741:18;10733:26;;10805:9;10799:4;10795:20;10791:1;10780:9;10776:17;10769:47;10833:131;10959:4;10833:131;:::i;:::-;10825:139;;10723:248;;;:::o;10977:222::-;;11108:2;11097:9;11093:18;11085:26;;11121:71;11189:1;11178:9;11174:17;11165:6;11121:71;:::i;:::-;11075:124;;;;:::o;11205:214::-;;11332:2;11321:9;11317:18;11309:26;;11345:67;11409:1;11398:9;11394:17;11385:6;11345:67;:::i;:::-;11299:120;;;;:::o;11425:99::-;;11511:5;11505:12;11495:22;;11484:40;;;:::o;11530:169::-;;11648:6;11643:3;11636:19;11688:4;11683:3;11679:14;11664:29;;11626:73;;;;:::o;11705:305::-;;11764:20;11782:1;11764:20;:::i;:::-;11759:25;;11798:20;11816:1;11798:20;:::i;:::-;11793:25;;11952:1;11884:66;11880:74;11877:1;11874:81;11871:2;;;11958:18;;:::i;:::-;11871:2;12002:1;11999;11995:9;11988:16;;11749:261;;;;:::o;12016:191::-;;12076:20;12094:1;12076:20;:::i;:::-;12071:25;;12110:20;12128:1;12110:20;:::i;:::-;12105:25;;12149:1;12146;12143:8;12140:2;;;12154:18;;:::i;:::-;12140:2;12199:1;12196;12192:9;12184:17;;12061:146;;;;:::o;12213:96::-;;12279:24;12297:5;12279:24;:::i;:::-;12268:35;;12258:51;;;:::o;12315:90::-;;12392:5;12385:13;12378:21;12367:32;;12357:48;;;:::o;12411:126::-;;12488:42;12481:5;12477:54;12466:65;;12456:81;;;:::o;12543:77::-;;12609:5;12598:16;;12588:32;;;:::o;12626:86::-;;12701:4;12694:5;12690:16;12679:27;;12669:43;;;:::o;12718:307::-;12786:1;12796:113;12810:6;12807:1;12804:13;12796:113;;;12895:1;12890:3;12886:11;12880:18;12876:1;12871:3;12867:11;12860:39;12832:2;12829:1;12825:10;12820:15;;12796:113;;;12927:6;12924:1;12921:13;12918:2;;;13007:1;12998:6;12993:3;12989:16;12982:27;12918:2;12767:258;;;;:::o;13031:320::-;;13112:1;13106:4;13102:12;13092:22;;13159:1;13153:4;13149:12;13180:18;13170:2;;13236:4;13228:6;13224:17;13214:27;;13170:2;13298;13290:6;13287:14;13267:18;13264:38;13261:2;;;13317:18;;:::i;:::-;13261:2;13082:269;;;;:::o;13357:180::-;13405:77;13402:1;13395:88;13502:4;13499:1;13492:15;13526:4;13523:1;13516:15;13543:180;13591:77;13588:1;13581:88;13688:4;13685:1;13678:15;13712:4;13709:1;13702:15;13729:102;;13821:2;13817:7;13812:2;13805:5;13801:14;13797:28;13787:38;;13777:54;;;:::o;13837:122::-;13910:24;13928:5;13910:24;:::i;:::-;13903:5;13900:35;13890:2;;13949:1;13946;13939:12;13890:2;13880:79;:::o;13965:122::-;14038:24;14056:5;14038:24;:::i;:::-;14031:5;14028:35;14018:2;;14077:1;14074;14067:12;14018:2;14008:79;:::o

Swarm Source

ipfs://71ad4216d981fba8c55f14fe4993df446596f074353ade3011319f6e7706d9ef

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

OSA INU is a meme token, the team builds a strong ecosystem for community, focuses on building dApps, TosaSwap is the first project.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.