ETH Price: $2,515.89 (+1.43%)

Token

Kuraokami (OKAMI)
 

Overview

Max Total Supply

100,000,000,000 OKAMI

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,258,705.563812082946065145 OKAMI

Value
$0.00
0x45d5f5b3100695e088a909a4ab1bea6e1cd491a9
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:
OKAMI

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

/** 
**Submitted for verification at Etherscan.io on 2022-08-30
*/

// SPDX-License-Identifier: MIT


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


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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



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 (uint256);
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

    /**
     * @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 (uint256) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


    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");


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }



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

}





pragma solidity ^0.8.0;




contract OKAMI is ERC20 {
    constructor(
       string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"}]

608060405260405162001c1838038062001c188339818101604052810190620000299190620004c3565b858584868584600490805190602001906200004692919062000191565b5083600590805190602001906200005f92919062000191565b5081600a6200006f919062000720565b836200007c919062000771565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620001309190620007e3565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000184573d6000803e3d6000fd5b5050505050505062000865565b8280546200019f906200082f565b90600052602060002090601f016020900481019282620001c357600085556200020f565b82601f10620001de57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020e578251825591602001919060010190620001f1565b5b5090506200021e919062000222565b5090565b5b808211156200023d57600081600090555060010162000223565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002aa826200025f565b810181811067ffffffffffffffff82111715620002cc57620002cb62000270565b5b80604052505050565b6000620002e162000241565b9050620002ef82826200029f565b919050565b600067ffffffffffffffff82111562000312576200031162000270565b5b6200031d826200025f565b9050602081019050919050565b60005b838110156200034a5780820151818401526020810190506200032d565b838111156200035a576000848401525b50505050565b6000620003776200037184620002f4565b620002d5565b9050828152602081018484840111156200039657620003956200025a565b5b620003a38482856200032a565b509392505050565b600082601f830112620003c357620003c262000255565b5b8151620003d584826020860162000360565b91505092915050565b6000819050919050565b620003f381620003de565b8114620003ff57600080fd5b50565b6000815190506200041381620003e8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004468262000419565b9050919050565b620004588162000439565b81146200046457600080fd5b50565b60008151905062000478816200044d565b92915050565b60006200048b8262000419565b9050919050565b6200049d816200047e565b8114620004a957600080fd5b50565b600081519050620004bd8162000492565b92915050565b60008060008060008060c08789031215620004e357620004e26200024b565b5b600087015167ffffffffffffffff81111562000504576200050362000250565b5b6200051289828a01620003ab565b965050602087015167ffffffffffffffff81111562000536576200053562000250565b5b6200054489828a01620003ab565b95505060406200055789828a0162000402565b94505060606200056a89828a0162000402565b93505060806200057d89828a0162000467565b92505060a06200059089828a01620004ac565b9150509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200062b578086048111156200060357620006026200059d565b5b6001851615620006135780820291505b80810290506200062385620005cc565b9450620005e3565b94509492505050565b60008262000646576001905062000719565b8162000656576000905062000719565b81600181146200066f57600281146200067a57620006b0565b600191505062000719565b60ff8411156200068f576200068e6200059d565b5b8360020a915084821115620006a957620006a86200059d565b5b5062000719565b5060208310610133831016604e8410600b8410161715620006ea5782820a905083811115620006e457620006e36200059d565b5b62000719565b620006f98484846001620005d9565b925090508184048111156200071357620007126200059d565b5b81810290505b9392505050565b60006200072d82620003de565b91506200073a83620003de565b9250620007697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000634565b905092915050565b60006200077e82620003de565b91506200078b83620003de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007c757620007c66200059d565b5b828202905092915050565b620007dd81620003de565b82525050565b6000602082019050620007fa6000830184620007d2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200084857607f821691505b602082108114156200085f576200085e62000800565b5b50919050565b6113a380620008756000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c3a565b60405180910390f35b6100e660048036038101906100e19190610cf5565b610308565b6040516100f39190610d50565b60405180910390f35b610104610326565b6040516101119190610d7a565b60405180910390f35b610134600480360381019061012f9190610d95565b610330565b6040516101419190610d50565b60405180910390f35b610152610431565b60405161015f9190610d7a565b60405180910390f35b610182600480360381019061017d9190610cf5565b61043b565b60405161018f9190610d50565b60405180910390f35b6101b260048036038101906101ad9190610de8565b6104e7565b6040516101bf9190610d7a565b60405180910390f35b6101d061052f565b6040516101dd9190610c3a565b60405180910390f35b61020060048036038101906101fb9190610cf5565b6105c1565b60405161020d9190610d50565b60405180910390f35b610230600480360381019061022b9190610cf5565b6106b5565b60405161023d9190610d50565b60405180910390f35b610260600480360381019061025b9190610e15565b6106d3565b60405161026d9190610d7a565b60405180910390f35b60606004805461028590610e84565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610e84565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f28565b60405180910390fd5b6104258561041461075a565b85846104209190610f77565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610fab565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90610e84565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90610e84565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490611073565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610f77565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611105565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611197565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109209190610d7a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611229565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a04906112bb565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a9061134d565b60405180910390fd5b8181610a9f9190610f77565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190610fab565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b939190610d7a565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bdb578082015181840152602081019050610bc0565b83811115610bea576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c0c82610ba1565b610c168185610bac565b9350610c26818560208601610bbd565b610c2f81610bf0565b840191505092915050565b60006020820190508181036000830152610c548184610c01565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c8c82610c61565b9050919050565b610c9c81610c81565b8114610ca757600080fd5b50565b600081359050610cb981610c93565b92915050565b6000819050919050565b610cd281610cbf565b8114610cdd57600080fd5b50565b600081359050610cef81610cc9565b92915050565b60008060408385031215610d0c57610d0b610c5c565b5b6000610d1a85828601610caa565b9250506020610d2b85828601610ce0565b9150509250929050565b60008115159050919050565b610d4a81610d35565b82525050565b6000602082019050610d656000830184610d41565b92915050565b610d7481610cbf565b82525050565b6000602082019050610d8f6000830184610d6b565b92915050565b600080600060608486031215610dae57610dad610c5c565b5b6000610dbc86828701610caa565b9350506020610dcd86828701610caa565b9250506040610dde86828701610ce0565b9150509250925092565b600060208284031215610dfe57610dfd610c5c565b5b6000610e0c84828501610caa565b91505092915050565b60008060408385031215610e2c57610e2b610c5c565b5b6000610e3a85828601610caa565b9250506020610e4b85828601610caa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e9c57607f821691505b60208210811415610eb057610eaf610e55565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f12602883610bac565b9150610f1d82610eb6565b604082019050919050565b60006020820190508181036000830152610f4181610f05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f8282610cbf565b9150610f8d83610cbf565b925082821015610fa057610f9f610f48565b5b828203905092915050565b6000610fb682610cbf565b9150610fc183610cbf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610ff657610ff5610f48565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061105d602583610bac565b915061106882611001565b604082019050919050565b6000602082019050818103600083015261108c81611050565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006110ef602483610bac565b91506110fa82611093565b604082019050919050565b6000602082019050818103600083015261111e816110e2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611181602283610bac565b915061118c82611125565b604082019050919050565b600060208201905081810360008301526111b081611174565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611213602583610bac565b915061121e826111b7565b604082019050919050565b6000602082019050818103600083015261124281611206565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112a5602383610bac565b91506112b082611249565b604082019050919050565b600060208201905081810360008301526112d481611298565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611337602683610bac565b9150611342826112db565b604082019050919050565b600060208201905081810360008301526113668161132a565b905091905056fea2646970667358221220c1eacfdcabce55d01082716048cc81a33e67520b069d896236c3c78ca7daf3d664736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000c2edbf2e0a3cd1ed442fcd769214f50c2d013d5c000000000000000000000000c2edbf2e0a3cd1ed442fcd769214f50c2d013d5c00000000000000000000000000000000000000000000000000000000000000094b7572616f6b616d69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f4b414d49000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c3a565b60405180910390f35b6100e660048036038101906100e19190610cf5565b610308565b6040516100f39190610d50565b60405180910390f35b610104610326565b6040516101119190610d7a565b60405180910390f35b610134600480360381019061012f9190610d95565b610330565b6040516101419190610d50565b60405180910390f35b610152610431565b60405161015f9190610d7a565b60405180910390f35b610182600480360381019061017d9190610cf5565b61043b565b60405161018f9190610d50565b60405180910390f35b6101b260048036038101906101ad9190610de8565b6104e7565b6040516101bf9190610d7a565b60405180910390f35b6101d061052f565b6040516101dd9190610c3a565b60405180910390f35b61020060048036038101906101fb9190610cf5565b6105c1565b60405161020d9190610d50565b60405180910390f35b610230600480360381019061022b9190610cf5565b6106b5565b60405161023d9190610d50565b60405180910390f35b610260600480360381019061025b9190610e15565b6106d3565b60405161026d9190610d7a565b60405180910390f35b60606004805461028590610e84565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610e84565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f28565b60405180910390fd5b6104258561041461075a565b85846104209190610f77565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610fab565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90610e84565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90610e84565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490611073565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610f77565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611105565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611197565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109209190610d7a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611229565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a04906112bb565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a9061134d565b60405180910390fd5b8181610a9f9190610f77565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190610fab565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b939190610d7a565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bdb578082015181840152602081019050610bc0565b83811115610bea576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c0c82610ba1565b610c168185610bac565b9350610c26818560208601610bbd565b610c2f81610bf0565b840191505092915050565b60006020820190508181036000830152610c548184610c01565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c8c82610c61565b9050919050565b610c9c81610c81565b8114610ca757600080fd5b50565b600081359050610cb981610c93565b92915050565b6000819050919050565b610cd281610cbf565b8114610cdd57600080fd5b50565b600081359050610cef81610cc9565b92915050565b60008060408385031215610d0c57610d0b610c5c565b5b6000610d1a85828601610caa565b9250506020610d2b85828601610ce0565b9150509250929050565b60008115159050919050565b610d4a81610d35565b82525050565b6000602082019050610d656000830184610d41565b92915050565b610d7481610cbf565b82525050565b6000602082019050610d8f6000830184610d6b565b92915050565b600080600060608486031215610dae57610dad610c5c565b5b6000610dbc86828701610caa565b9350506020610dcd86828701610caa565b9250506040610dde86828701610ce0565b9150509250925092565b600060208284031215610dfe57610dfd610c5c565b5b6000610e0c84828501610caa565b91505092915050565b60008060408385031215610e2c57610e2b610c5c565b5b6000610e3a85828601610caa565b9250506020610e4b85828601610caa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e9c57607f821691505b60208210811415610eb057610eaf610e55565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f12602883610bac565b9150610f1d82610eb6565b604082019050919050565b60006020820190508181036000830152610f4181610f05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f8282610cbf565b9150610f8d83610cbf565b925082821015610fa057610f9f610f48565b5b828203905092915050565b6000610fb682610cbf565b9150610fc183610cbf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610ff657610ff5610f48565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061105d602583610bac565b915061106882611001565b604082019050919050565b6000602082019050818103600083015261108c81611050565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006110ef602483610bac565b91506110fa82611093565b604082019050919050565b6000602082019050818103600083015261111e816110e2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611181602283610bac565b915061118c82611125565b604082019050919050565b600060208201905081810360008301526111b081611174565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611213602583610bac565b915061121e826111b7565b604082019050919050565b6000602082019050818103600083015261124281611206565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112a5602383610bac565b91506112b082611249565b604082019050919050565b600060208201905081810360008301526112d481611298565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611337602683610bac565b9150611342826112db565b604082019050919050565b600060208201905081810360008301526113668161132a565b905091905056fea2646970667358221220c1eacfdcabce55d01082716048cc81a33e67520b069d896236c3c78ca7daf3d664736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000c2edbf2e0a3cd1ed442fcd769214f50c2d013d5c000000000000000000000000c2edbf2e0a3cd1ed442fcd769214f50c2d013d5c00000000000000000000000000000000000000000000000000000000000000094b7572616f6b616d69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054f4b414d49000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Kuraokami
Arg [1] : symbol_ (string): OKAMI
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 100000000000
Arg [4] : tokenOwner_ (address): 0xC2eDBF2E0A3cD1eD442FCd769214F50c2d013D5c
Arg [5] : feeReceiver_ (address): 0xC2eDBF2E0A3cD1eD442FCd769214F50c2d013D5c

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [4] : 000000000000000000000000c2edbf2e0a3cd1ed442fcd769214f50c2d013d5c
Arg [5] : 000000000000000000000000c2edbf2e0a3cd1ed442fcd769214f50c2d013d5c
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 4b7572616f6b616d690000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4f4b414d49000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10918:373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5201:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7377:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6330:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8028:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6163:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8859:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6501:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5420:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9577:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6841:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7079:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5201:100;5255:13;5288:5;5281:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5201:100;:::o;7377:169::-;7460:4;7477:39;7486:12;:10;:12::i;:::-;7500:7;7509:6;7477:8;:39::i;:::-;7534:4;7527:11;;7377:169;;;;:::o;6330:108::-;6391:7;6418:12;;6411:19;;6330:108;:::o;8028:422::-;8134:4;8151:36;8161:6;8169:9;8180:6;8151:9;:36::i;:::-;8200:24;8227:11;:19;8239:6;8227:19;;;;;;;;;;;;;;;:33;8247:12;:10;:12::i;:::-;8227:33;;;;;;;;;;;;;;;;8200:60;;8299:6;8279:16;:26;;8271:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8361:57;8370:6;8378:12;:10;:12::i;:::-;8411:6;8392:16;:25;;;;:::i;:::-;8361:8;:57::i;:::-;8438:4;8431:11;;;8028:422;;;;;:::o;6163:102::-;6221:7;6248:9;;6241:16;;6163:102;:::o;8859:215::-;8947:4;8964:80;8973:12;:10;:12::i;:::-;8987:7;9033:10;8996:11;:25;9008:12;:10;:12::i;:::-;8996:25;;;;;;;;;;;;;;;:34;9022:7;8996:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8964:8;:80::i;:::-;9062:4;9055:11;;8859:215;;;;:::o;6501:127::-;6575:7;6602:9;:18;6612:7;6602:18;;;;;;;;;;;;;;;;6595:25;;6501:127;;;:::o;5420:104::-;5476:13;5509:7;5502:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5420:104;:::o;9577:377::-;9670:4;9687:24;9714:11;:25;9726:12;:10;:12::i;:::-;9714:25;;;;;;;;;;;;;;;:34;9740:7;9714:34;;;;;;;;;;;;;;;;9687:61;;9787:15;9767:16;:35;;9759:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9855:67;9864:12;:10;:12::i;:::-;9878:7;9906:15;9887:16;:34;;;;:::i;:::-;9855:8;:67::i;:::-;9942:4;9935:11;;;9577:377;;;;:::o;6841:175::-;6927:4;6944:42;6954:12;:10;:12::i;:::-;6968:9;6979:6;6944:9;:42::i;:::-;7004:4;6997:11;;6841:175;;;;:::o;7079:151::-;7168:7;7195:11;:18;7207:5;7195:18;;;;;;;;;;;;;;;:27;7214:7;7195:27;;;;;;;;;;;;;;;;7188:34;;7079:151;;;;:::o;3689:98::-;3742:7;3769:10;3762:17;;3689:98;:::o;10522:346::-;10641:1;10624:19;;:5;:19;;;;10616:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10722:1;10703:21;;:7;:21;;;;10695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10806:6;10776:11;:18;10788:5;10776:18;;;;;;;;;;;;;;;:27;10795:7;10776:27;;;;;;;;;;;;;;;:36;;;;10844:7;10828:32;;10837:5;10828:32;;;10853:6;10828:32;;;;;;:::i;:::-;;;;;;;;10522:346;;;:::o;9964:546::-;10088:1;10070:20;;:6;:20;;;;10062:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10172:1;10151:23;;:9;:23;;;;10143:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10229:21;10253:9;:17;10263:6;10253:17;;;;;;;;;;;;;;;;10229:41;;10306:6;10289:13;:23;;10281:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10402:6;10386:13;:22;;;;:::i;:::-;10366:9;:17;10376:6;10366:17;;;;;;;;;;;;;;;:42;;;;10443:6;10419:9;:20;10429:9;10419:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10484:9;10467:35;;10476:6;10467:35;;;10495:6;10467:35;;;;;;:::i;:::-;;;;;;;;10051:459;9964:546;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:329::-;4530:6;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4471:329;;;;:::o;4806:474::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:53;5255:7;5246:6;5235:9;5231:22;5210:53;:::i;:::-;5200:63;;5155:118;4806:474;;;;;:::o;5286:180::-;5334:77;5331:1;5324:88;5431:4;5428:1;5421:15;5455:4;5452:1;5445:15;5472:320;5516:6;5553:1;5547:4;5543:12;5533:22;;5600:1;5594:4;5590:12;5621:18;5611:81;;5677:4;5669:6;5665:17;5655:27;;5611:81;5739:2;5731:6;5728:14;5708:18;5705:38;5702:84;;;5758:18;;:::i;:::-;5702:84;5523:269;5472:320;;;:::o;5798:227::-;5938:34;5934:1;5926:6;5922:14;5915:58;6007:10;6002:2;5994:6;5990:15;5983:35;5798:227;:::o;6031:366::-;6173:3;6194:67;6258:2;6253:3;6194:67;:::i;:::-;6187:74;;6270:93;6359:3;6270:93;:::i;:::-;6388:2;6383:3;6379:12;6372:19;;6031:366;;;:::o;6403:419::-;6569:4;6607:2;6596:9;6592:18;6584:26;;6656:9;6650:4;6646:20;6642:1;6631:9;6627:17;6620:47;6684:131;6810:4;6684:131;:::i;:::-;6676:139;;6403:419;;;:::o;6828:180::-;6876:77;6873:1;6866:88;6973:4;6970:1;6963:15;6997:4;6994:1;6987:15;7014:191;7054:4;7074:20;7092:1;7074:20;:::i;:::-;7069:25;;7108:20;7126:1;7108:20;:::i;:::-;7103:25;;7147:1;7144;7141:8;7138:34;;;7152:18;;:::i;:::-;7138:34;7197:1;7194;7190:9;7182:17;;7014:191;;;;:::o;7211:305::-;7251:3;7270:20;7288:1;7270:20;:::i;:::-;7265:25;;7304:20;7322:1;7304:20;:::i;:::-;7299:25;;7458:1;7390:66;7386:74;7383:1;7380:81;7377:107;;;7464:18;;:::i;:::-;7377:107;7508:1;7505;7501:9;7494:16;;7211:305;;;;:::o;7522:224::-;7662:34;7658:1;7650:6;7646:14;7639:58;7731:7;7726:2;7718:6;7714:15;7707:32;7522:224;:::o;7752:366::-;7894:3;7915:67;7979:2;7974:3;7915:67;:::i;:::-;7908:74;;7991:93;8080:3;7991:93;:::i;:::-;8109:2;8104:3;8100:12;8093:19;;7752:366;;;:::o;8124:419::-;8290:4;8328:2;8317:9;8313:18;8305:26;;8377:9;8371:4;8367:20;8363:1;8352:9;8348:17;8341:47;8405:131;8531:4;8405:131;:::i;:::-;8397:139;;8124:419;;;:::o;8549:223::-;8689:34;8685:1;8677:6;8673:14;8666:58;8758:6;8753:2;8745:6;8741:15;8734:31;8549:223;:::o;8778:366::-;8920:3;8941:67;9005:2;9000:3;8941:67;:::i;:::-;8934:74;;9017:93;9106:3;9017:93;:::i;:::-;9135:2;9130:3;9126:12;9119:19;;8778:366;;;:::o;9150:419::-;9316:4;9354:2;9343:9;9339:18;9331:26;;9403:9;9397:4;9393:20;9389:1;9378:9;9374:17;9367:47;9431:131;9557:4;9431:131;:::i;:::-;9423:139;;9150:419;;;:::o;9575:221::-;9715:34;9711:1;9703:6;9699:14;9692:58;9784:4;9779:2;9771:6;9767:15;9760:29;9575:221;:::o;9802:366::-;9944:3;9965:67;10029:2;10024:3;9965:67;:::i;:::-;9958:74;;10041:93;10130:3;10041:93;:::i;:::-;10159:2;10154:3;10150:12;10143:19;;9802:366;;;:::o;10174:419::-;10340:4;10378:2;10367:9;10363:18;10355:26;;10427:9;10421:4;10417:20;10413:1;10402:9;10398:17;10391:47;10455:131;10581:4;10455:131;:::i;:::-;10447:139;;10174:419;;;:::o;10599:224::-;10739:34;10735:1;10727:6;10723:14;10716:58;10808:7;10803:2;10795:6;10791:15;10784:32;10599:224;:::o;10829:366::-;10971:3;10992:67;11056:2;11051:3;10992:67;:::i;:::-;10985:74;;11068:93;11157:3;11068:93;:::i;:::-;11186:2;11181:3;11177:12;11170:19;;10829:366;;;:::o;11201:419::-;11367:4;11405:2;11394:9;11390:18;11382:26;;11454:9;11448:4;11444:20;11440:1;11429:9;11425:17;11418:47;11482:131;11608:4;11482:131;:::i;:::-;11474:139;;11201:419;;;:::o;11626:222::-;11766:34;11762:1;11754:6;11750:14;11743:58;11835:5;11830:2;11822:6;11818:15;11811:30;11626:222;:::o;11854:366::-;11996:3;12017:67;12081:2;12076:3;12017:67;:::i;:::-;12010:74;;12093:93;12182:3;12093:93;:::i;:::-;12211:2;12206:3;12202:12;12195:19;;11854:366;;;:::o;12226:419::-;12392:4;12430:2;12419:9;12415:18;12407:26;;12479:9;12473:4;12469:20;12465:1;12454:9;12450:17;12443:47;12507:131;12633:4;12507:131;:::i;:::-;12499:139;;12226:419;;;:::o;12651:225::-;12791:34;12787:1;12779:6;12775:14;12768:58;12860:8;12855:2;12847:6;12843:15;12836:33;12651:225;:::o;12882:366::-;13024:3;13045:67;13109:2;13104:3;13045:67;:::i;:::-;13038:74;;13121:93;13210:3;13121:93;:::i;:::-;13239:2;13234:3;13230:12;13223:19;;12882:366;;;:::o;13254:419::-;13420:4;13458:2;13447:9;13443:18;13435:26;;13507:9;13501:4;13497:20;13493:1;13482:9;13478:17;13471:47;13535:131;13661:4;13535:131;:::i;:::-;13527:139;;13254:419;;;:::o

Swarm Source

ipfs://c1eacfdcabce55d01082716048cc81a33e67520b069d896236c3c78ca7daf3d6
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.