ETH Price: $3,100.10 (+1.30%)
Gas: 7 Gwei

Token

VVO (VVO)
 

Overview

Max Total Supply

1,000,000 VVO

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,835.690354218709422734 VVO

Value
$0.00
0x77460af4c7548c5b3db0fdd4760e2d23db419113
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:
VVO

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

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

// https://projectvvo.xyz/
//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 VVO 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"}]

608060405260405162001d1438038062001d148339818101604052810190620000299190620003dd565b858584868584600490816200003f9190620006e1565b508360059081620000519190620006e1565b5081600a62000061919062000942565b836200006e919062000992565b6002819055506002545f808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6002546040516200011f9190620009ed565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801562000170573d5f803e3d5ffd5b5050505050505062000a08565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620001de8262000196565b810181811067ffffffffffffffff821117156200020057620001ff620001a6565b5b80604052505050565b5f620002146200017d565b9050620002228282620001d3565b919050565b5f67ffffffffffffffff821115620002445762000243620001a6565b5b6200024f8262000196565b9050602081019050919050565b5f5b838110156200027b5780820151818401526020810190506200025e565b5f8484015250505050565b5f6200029c620002968462000227565b62000209565b905082815260208101848484011115620002bb57620002ba62000192565b5b620002c88482856200025c565b509392505050565b5f82601f830112620002e757620002e66200018e565b5b8151620002f984826020860162000286565b91505092915050565b5f819050919050565b620003168162000302565b811462000321575f80fd5b50565b5f8151905062000334816200030b565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000365826200033a565b9050919050565b620003778162000359565b811462000382575f80fd5b50565b5f8151905062000395816200036c565b92915050565b5f620003a7826200033a565b9050919050565b620003b9816200039b565b8114620003c4575f80fd5b50565b5f81519050620003d781620003ae565b92915050565b5f805f805f8060c08789031215620003fa57620003f962000186565b5b5f87015167ffffffffffffffff8111156200041a57620004196200018a565b5b6200042889828a01620002d0565b965050602087015167ffffffffffffffff8111156200044c576200044b6200018a565b5b6200045a89828a01620002d0565b95505060406200046d89828a0162000324565b94505060606200048089828a0162000324565b93505060806200049389828a0162000385565b92505060a0620004a689828a01620003c7565b9150509295509295509295565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200050257607f821691505b602082108103620005185762000517620004bd565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200057c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200053f565b6200058886836200053f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620005c9620005c3620005bd8462000302565b620005a0565b62000302565b9050919050565b5f819050919050565b620005e483620005a9565b620005fc620005f382620005d0565b8484546200054b565b825550505050565b5f90565b6200061262000604565b6200061f818484620005d9565b505050565b5b8181101562000646576200063a5f8262000608565b60018101905062000625565b5050565b601f82111562000695576200065f816200051e565b6200066a8462000530565b810160208510156200067a578190505b62000692620006898562000530565b83018262000624565b50505b505050565b5f82821c905092915050565b5f620006b75f19846008026200069a565b1980831691505092915050565b5f620006d18383620006a6565b9150826002028217905092915050565b620006ec82620004b3565b67ffffffffffffffff811115620007085762000707620001a6565b5b620007148254620004ea565b620007218282856200064a565b5f60209050601f83116001811462000757575f841562000742578287015190505b6200074e8582620006c4565b865550620007bd565b601f19841662000767866200051e565b5f5b82811015620007905784890151825560018201915060208501945060208101905062000769565b86831015620007b05784890151620007ac601f891682620006a6565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200084f57808604811115620008275762000826620007c5565b5b6001851615620008375780820291505b80810290506200084785620007f2565b945062000807565b94509492505050565b5f826200086957600190506200093b565b8162000878575f90506200093b565b81600181146200089157600281146200089c57620008d2565b60019150506200093b565b60ff841115620008b157620008b0620007c5565b5b8360020a915084821115620008cb57620008ca620007c5565b5b506200093b565b5060208310610133831016604e8410600b84101617156200090c5782820a905083811115620009065762000905620007c5565b5b6200093b565b6200091b8484846001620007fe565b92509050818404811115620009355762000934620007c5565b5b81810290505b9392505050565b5f6200094e8262000302565b91506200095b8362000302565b92506200098a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000858565b905092915050565b5f6200099e8262000302565b9150620009ab8362000302565b9250828202620009bb8162000302565b91508282048414831517620009d557620009d4620007c5565b5b5092915050565b620009e78162000302565b82525050565b5f60208201905062000a025f830184620009dc565b92915050565b6112fe8062000a165f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610bf3565b60405180910390f35b6100e360048036038101906100de9190610ca4565b610303565b6040516100f09190610cfc565b60405180910390f35b610101610320565b60405161010e9190610d24565b60405180910390f35b610131600480360381019061012c9190610d3d565b610329565b60405161013e9190610cfc565b60405180910390f35b61014f610424565b60405161015c9190610d24565b60405180910390f35b61017f600480360381019061017a9190610ca4565b61042d565b60405161018c9190610cfc565b60405180910390f35b6101af60048036038101906101aa9190610d8d565b6104d4565b6040516101bc9190610d24565b60405180910390f35b6101cd610519565b6040516101da9190610bf3565b60405180910390f35b6101fd60048036038101906101f89190610ca4565b6105a9565b60405161020a9190610cfc565b60405180910390f35b61022d60048036038101906102289190610ca4565b610698565b60405161023a9190610cfc565b60405180910390f35b61025d60048036038101906102589190610db8565b6106b5565b60405161026a9190610d24565b60405180910390f35b60606004805461028290610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e23565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610737565b848461073e565b6001905092915050565b5f600254905090565b5f610335848484610901565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610ec3565b60405180910390fd5b61041885610407610737565b85846104139190610f0e565b61073e565b60019150509392505050565b5f600354905090565b5f6104ca610439610737565b848460015f610446610737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c59190610f41565b61073e565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461052890610e23565b80601f016020809104026020016040519081016040528092919081815260200182805461055490610e23565b801561059f5780601f106105765761010080835404028352916020019161059f565b820191905f5260205f20905b81548152906001019060200180831161058257829003601f168201915b5050505050905090565b5f8060015f6105b6610737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066790610fe4565b60405180910390fd5b61068d61067b610737565b8585846106889190610f0e565b61073e565b600191505092915050565b5f6106ab6106a4610737565b8484610901565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a390611072565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361081a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081190611100565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f49190610d24565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061118e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d49061121c565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a57906112aa565b60405180910390fd5b8181610a6c9190610f0e565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610af79190610f41565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b5b9190610d24565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ba0578082015181840152602081019050610b85565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610bc582610b69565b610bcf8185610b73565b9350610bdf818560208601610b83565b610be881610bab565b840191505092915050565b5f6020820190508181035f830152610c0b8184610bbb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c4082610c17565b9050919050565b610c5081610c36565b8114610c5a575f80fd5b50565b5f81359050610c6b81610c47565b92915050565b5f819050919050565b610c8381610c71565b8114610c8d575f80fd5b50565b5f81359050610c9e81610c7a565b92915050565b5f8060408385031215610cba57610cb9610c13565b5b5f610cc785828601610c5d565b9250506020610cd885828601610c90565b9150509250929050565b5f8115159050919050565b610cf681610ce2565b82525050565b5f602082019050610d0f5f830184610ced565b92915050565b610d1e81610c71565b82525050565b5f602082019050610d375f830184610d15565b92915050565b5f805f60608486031215610d5457610d53610c13565b5b5f610d6186828701610c5d565b9350506020610d7286828701610c5d565b9250506040610d8386828701610c90565b9150509250925092565b5f60208284031215610da257610da1610c13565b5b5f610daf84828501610c5d565b91505092915050565b5f8060408385031215610dce57610dcd610c13565b5b5f610ddb85828601610c5d565b9250506020610dec85828601610c5d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e3a57607f821691505b602082108103610e4d57610e4c610df6565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ead602883610b73565b9150610eb882610e53565b604082019050919050565b5f6020820190508181035f830152610eda81610ea1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f1882610c71565b9150610f2383610c71565b9250828203905081811115610f3b57610f3a610ee1565b5b92915050565b5f610f4b82610c71565b9150610f5683610c71565b9250828201905080821115610f6e57610f6d610ee1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610fce602583610b73565b9150610fd982610f74565b604082019050919050565b5f6020820190508181035f830152610ffb81610fc2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61105c602483610b73565b915061106782611002565b604082019050919050565b5f6020820190508181035f83015261108981611050565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6110ea602283610b73565b91506110f582611090565b604082019050919050565b5f6020820190508181035f830152611117816110de565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611178602583610b73565b91506111838261111e565b604082019050919050565b5f6020820190508181035f8301526111a58161116c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611206602383610b73565b9150611211826111ac565b604082019050919050565b5f6020820190508181035f830152611233816111fa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611294602683610b73565b915061129f8261123a565b604082019050919050565b5f6020820190508181035f8301526112c181611288565b905091905056fea264697066735822122049b0c75f3cb1d6ffa97b018cb06ca5ebc8cd844c77bb232a1a0bf393e1d1d51e64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000f424000000000000000000000000013cff20a1e3eaa256bc3a2a007cfa8afa6be0eb500000000000000000000000013cff20a1e3eaa256bc3a2a007cfa8afa6be0eb5000000000000000000000000000000000000000000000000000000000000000356564f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000356564f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610273565b6040516100c09190610bf3565b60405180910390f35b6100e360048036038101906100de9190610ca4565b610303565b6040516100f09190610cfc565b60405180910390f35b610101610320565b60405161010e9190610d24565b60405180910390f35b610131600480360381019061012c9190610d3d565b610329565b60405161013e9190610cfc565b60405180910390f35b61014f610424565b60405161015c9190610d24565b60405180910390f35b61017f600480360381019061017a9190610ca4565b61042d565b60405161018c9190610cfc565b60405180910390f35b6101af60048036038101906101aa9190610d8d565b6104d4565b6040516101bc9190610d24565b60405180910390f35b6101cd610519565b6040516101da9190610bf3565b60405180910390f35b6101fd60048036038101906101f89190610ca4565b6105a9565b60405161020a9190610cfc565b60405180910390f35b61022d60048036038101906102289190610ca4565b610698565b60405161023a9190610cfc565b60405180910390f35b61025d60048036038101906102589190610db8565b6106b5565b60405161026a9190610d24565b60405180910390f35b60606004805461028290610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610e23565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f610737565b848461073e565b6001905092915050565b5f600254905090565b5f610335848484610901565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61037c610737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156103fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f290610ec3565b60405180910390fd5b61041885610407610737565b85846104139190610f0e565b61073e565b60019150509392505050565b5f600354905090565b5f6104ca610439610737565b848460015f610446610737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104c59190610f41565b61073e565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461052890610e23565b80601f016020809104026020016040519081016040528092919081815260200182805461055490610e23565b801561059f5780601f106105765761010080835404028352916020019161059f565b820191905f5260205f20905b81548152906001019060200180831161058257829003601f168201915b5050505050905090565b5f8060015f6105b6610737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066790610fe4565b60405180910390fd5b61068d61067b610737565b8585846106889190610f0e565b61073e565b600191505092915050565b5f6106ab6106a4610737565b8484610901565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a390611072565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361081a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081190611100565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f49190610d24565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061118e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d49061121c565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a57906112aa565b60405180910390fd5b8181610a6c9190610f0e565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610af79190610f41565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b5b9190610d24565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ba0578082015181840152602081019050610b85565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610bc582610b69565b610bcf8185610b73565b9350610bdf818560208601610b83565b610be881610bab565b840191505092915050565b5f6020820190508181035f830152610c0b8184610bbb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c4082610c17565b9050919050565b610c5081610c36565b8114610c5a575f80fd5b50565b5f81359050610c6b81610c47565b92915050565b5f819050919050565b610c8381610c71565b8114610c8d575f80fd5b50565b5f81359050610c9e81610c7a565b92915050565b5f8060408385031215610cba57610cb9610c13565b5b5f610cc785828601610c5d565b9250506020610cd885828601610c90565b9150509250929050565b5f8115159050919050565b610cf681610ce2565b82525050565b5f602082019050610d0f5f830184610ced565b92915050565b610d1e81610c71565b82525050565b5f602082019050610d375f830184610d15565b92915050565b5f805f60608486031215610d5457610d53610c13565b5b5f610d6186828701610c5d565b9350506020610d7286828701610c5d565b9250506040610d8386828701610c90565b9150509250925092565b5f60208284031215610da257610da1610c13565b5b5f610daf84828501610c5d565b91505092915050565b5f8060408385031215610dce57610dcd610c13565b5b5f610ddb85828601610c5d565b9250506020610dec85828601610c5d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610e3a57607f821691505b602082108103610e4d57610e4c610df6565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f610ead602883610b73565b9150610eb882610e53565b604082019050919050565b5f6020820190508181035f830152610eda81610ea1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f1882610c71565b9150610f2383610c71565b9250828203905081811115610f3b57610f3a610ee1565b5b92915050565b5f610f4b82610c71565b9150610f5683610c71565b9250828201905080821115610f6e57610f6d610ee1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f610fce602583610b73565b9150610fd982610f74565b604082019050919050565b5f6020820190508181035f830152610ffb81610fc2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61105c602483610b73565b915061106782611002565b604082019050919050565b5f6020820190508181035f83015261108981611050565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6110ea602283610b73565b91506110f582611090565b604082019050919050565b5f6020820190508181035f830152611117816110de565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611178602583610b73565b91506111838261111e565b604082019050919050565b5f6020820190508181035f8301526111a58161116c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611206602383610b73565b9150611211826111ac565b604082019050919050565b5f6020820190508181035f830152611233816111fa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611294602683610b73565b915061129f8261123a565b604082019050919050565b5f6020820190508181035f8301526112c181611288565b905091905056fea264697066735822122049b0c75f3cb1d6ffa97b018cb06ca5ebc8cd844c77bb232a1a0bf393e1d1d51e64736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000f424000000000000000000000000013cff20a1e3eaa256bc3a2a007cfa8afa6be0eb500000000000000000000000013cff20a1e3eaa256bc3a2a007cfa8afa6be0eb5000000000000000000000000000000000000000000000000000000000000000356564f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000356564f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): VVO
Arg [1] : symbol_ (string): VVO
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 1000000
Arg [4] : tokenOwner_ (address): 0x13Cff20A1E3eAA256bC3A2a007cFA8aFA6bE0eB5
Arg [5] : feeReceiver_ (address): 0x13Cff20A1E3eAA256bC3A2a007cFA8aFA6bE0eB5

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [4] : 00000000000000000000000013cff20a1e3eaa256bc3a2a007cfa8afa6be0eb5
Arg [5] : 00000000000000000000000013cff20a1e3eaa256bc3a2a007cfa8afa6be0eb5
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 56564f0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 56564f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10809:371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5098:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7274:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6227:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7925:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6060:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8756:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6398:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5317:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9474:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6738:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6976:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5098:100;5152:13;5185:5;5178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5098:100;:::o;7274:169::-;7357:4;7374:39;7383:12;:10;:12::i;:::-;7397:7;7406:6;7374:8;:39::i;:::-;7431:4;7424:11;;7274:169;;;;:::o;6227:108::-;6288:7;6315:12;;6308:19;;6227:108;:::o;7925:422::-;8031:4;8048:36;8058:6;8066:9;8077:6;8048:9;:36::i;:::-;8097:24;8124:11;:19;8136:6;8124:19;;;;;;;;;;;;;;;:33;8144:12;:10;:12::i;:::-;8124:33;;;;;;;;;;;;;;;;8097:60;;8196:6;8176:16;:26;;8168:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8258:57;8267:6;8275:12;:10;:12::i;:::-;8308:6;8289:16;:25;;;;:::i;:::-;8258:8;:57::i;:::-;8335:4;8328:11;;;7925:422;;;;;:::o;6060:102::-;6118:7;6145:9;;6138:16;;6060:102;:::o;8756:215::-;8844:4;8861:80;8870:12;:10;:12::i;:::-;8884:7;8930:10;8893:11;:25;8905:12;:10;:12::i;:::-;8893:25;;;;;;;;;;;;;;;:34;8919:7;8893:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8861:8;:80::i;:::-;8959:4;8952:11;;8756:215;;;;:::o;6398:127::-;6472:7;6499:9;:18;6509:7;6499:18;;;;;;;;;;;;;;;;6492:25;;6398:127;;;:::o;5317:104::-;5373:13;5406:7;5399:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5317:104;:::o;9474:377::-;9567:4;9584:24;9611:11;:25;9623:12;:10;:12::i;:::-;9611:25;;;;;;;;;;;;;;;:34;9637:7;9611:34;;;;;;;;;;;;;;;;9584:61;;9684:15;9664:16;:35;;9656:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9752:67;9761:12;:10;:12::i;:::-;9775:7;9803:15;9784:16;:34;;;;:::i;:::-;9752:8;:67::i;:::-;9839:4;9832:11;;;9474:377;;;;:::o;6738:175::-;6824:4;6841:42;6851:12;:10;:12::i;:::-;6865:9;6876:6;6841:9;:42::i;:::-;6901:4;6894:11;;6738:175;;;;:::o;6976:151::-;7065:7;7092:11;:18;7104:5;7092:18;;;;;;;;;;;;;;;:27;7111:7;7092:27;;;;;;;;;;;;;;;;7085:34;;6976:151;;;;:::o;3586:98::-;3639:7;3666:10;3659:17;;3586:98;:::o;10416:346::-;10535:1;10518:19;;:5;:19;;;10510:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10616:1;10597:21;;:7;:21;;;10589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10700:6;10670:11;:18;10682:5;10670:18;;;;;;;;;;;;;;;:27;10689:7;10670:27;;;;;;;;;;;;;;;:36;;;;10738:7;10722:32;;10731:5;10722:32;;;10747:6;10722:32;;;;;;:::i;:::-;;;;;;;;10416:346;;;:::o;9861:543::-;9985:1;9967:20;;:6;:20;;;9959:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10069:1;10048:23;;:9;:23;;;10040:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10124:21;10148:9;:17;10158:6;10148:17;;;;;;;;;;;;;;;;10124:41;;10200:6;10183:13;:23;;10175:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10296:6;10280:13;:22;;;;:::i;:::-;10260:9;:17;10270:6;10260:17;;;;;;;;;;;;;;;:42;;;;10337:6;10313:9;:20;10323:9;10313:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10378:9;10361:35;;10370:6;10361:35;;;10389:6;10361:35;;;;;;:::i;:::-;;;;;;;;9948:456;9861:543;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:474::-;4826:6;4834;4883:2;4871:9;4862:7;4858:23;4854:32;4851:119;;;4889:79;;:::i;:::-;4851:119;5009:1;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4980:117;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4758:474;;;;;:::o;5238:180::-;5286:77;5283:1;5276:88;5383:4;5380:1;5373:15;5407:4;5404:1;5397:15;5424:320;5468:6;5505:1;5499:4;5495:12;5485:22;;5552:1;5546:4;5542:12;5573:18;5563:81;;5629:4;5621:6;5617:17;5607:27;;5563:81;5691:2;5683:6;5680:14;5660:18;5657:38;5654:84;;5710:18;;:::i;:::-;5654:84;5475:269;5424:320;;;:::o;5750:227::-;5890:34;5886:1;5878:6;5874:14;5867:58;5959:10;5954:2;5946:6;5942:15;5935:35;5750:227;:::o;5983:366::-;6125:3;6146:67;6210:2;6205:3;6146:67;:::i;:::-;6139:74;;6222:93;6311:3;6222:93;:::i;:::-;6340:2;6335:3;6331:12;6324:19;;5983:366;;;:::o;6355:419::-;6521:4;6559:2;6548:9;6544:18;6536:26;;6608:9;6602:4;6598:20;6594:1;6583:9;6579:17;6572:47;6636:131;6762:4;6636:131;:::i;:::-;6628:139;;6355:419;;;:::o;6780:180::-;6828:77;6825:1;6818:88;6925:4;6922:1;6915:15;6949:4;6946:1;6939:15;6966:194;7006:4;7026:20;7044:1;7026:20;:::i;:::-;7021:25;;7060:20;7078:1;7060:20;:::i;:::-;7055:25;;7104:1;7101;7097:9;7089:17;;7128:1;7122:4;7119:11;7116:37;;;7133:18;;:::i;:::-;7116:37;6966:194;;;;:::o;7166:191::-;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:224::-;7503:34;7499:1;7491:6;7487:14;7480:58;7572:7;7567:2;7559:6;7555:15;7548:32;7363:224;:::o;7593:366::-;7735:3;7756:67;7820:2;7815:3;7756:67;:::i;:::-;7749:74;;7832:93;7921:3;7832:93;:::i;:::-;7950:2;7945:3;7941:12;7934:19;;7593:366;;;:::o;7965:419::-;8131:4;8169:2;8158:9;8154:18;8146:26;;8218:9;8212:4;8208:20;8204:1;8193:9;8189:17;8182:47;8246:131;8372:4;8246:131;:::i;:::-;8238:139;;7965:419;;;:::o;8390:223::-;8530:34;8526:1;8518:6;8514:14;8507:58;8599:6;8594:2;8586:6;8582:15;8575:31;8390:223;:::o;8619:366::-;8761:3;8782:67;8846:2;8841:3;8782:67;:::i;:::-;8775:74;;8858:93;8947:3;8858:93;:::i;:::-;8976:2;8971:3;8967:12;8960:19;;8619:366;;;:::o;8991:419::-;9157:4;9195:2;9184:9;9180:18;9172:26;;9244:9;9238:4;9234:20;9230:1;9219:9;9215:17;9208:47;9272:131;9398:4;9272:131;:::i;:::-;9264:139;;8991:419;;;:::o;9416:221::-;9556:34;9552:1;9544:6;9540:14;9533:58;9625:4;9620:2;9612:6;9608:15;9601:29;9416:221;:::o;9643:366::-;9785:3;9806:67;9870:2;9865:3;9806:67;:::i;:::-;9799:74;;9882:93;9971:3;9882:93;:::i;:::-;10000:2;9995:3;9991:12;9984:19;;9643:366;;;:::o;10015:419::-;10181:4;10219:2;10208:9;10204:18;10196:26;;10268:9;10262:4;10258:20;10254:1;10243:9;10239:17;10232:47;10296:131;10422:4;10296:131;:::i;:::-;10288:139;;10015:419;;;:::o;10440:224::-;10580:34;10576:1;10568:6;10564:14;10557:58;10649:7;10644:2;10636:6;10632:15;10625:32;10440:224;:::o;10670:366::-;10812:3;10833:67;10897:2;10892:3;10833:67;:::i;:::-;10826:74;;10909:93;10998:3;10909:93;:::i;:::-;11027:2;11022:3;11018:12;11011:19;;10670:366;;;:::o;11042:419::-;11208:4;11246:2;11235:9;11231:18;11223:26;;11295:9;11289:4;11285:20;11281:1;11270:9;11266:17;11259:47;11323:131;11449:4;11323:131;:::i;:::-;11315:139;;11042:419;;;:::o;11467:222::-;11607:34;11603:1;11595:6;11591:14;11584:58;11676:5;11671:2;11663:6;11659:15;11652:30;11467:222;:::o;11695:366::-;11837:3;11858:67;11922:2;11917:3;11858:67;:::i;:::-;11851:74;;11934:93;12023:3;11934:93;:::i;:::-;12052:2;12047:3;12043:12;12036:19;;11695:366;;;:::o;12067:419::-;12233:4;12271:2;12260:9;12256:18;12248:26;;12320:9;12314:4;12310:20;12306:1;12295:9;12291:17;12284:47;12348:131;12474:4;12348:131;:::i;:::-;12340:139;;12067:419;;;:::o;12492:225::-;12632:34;12628:1;12620:6;12616:14;12609:58;12701:8;12696:2;12688:6;12684:15;12677:33;12492:225;:::o;12723:366::-;12865:3;12886:67;12950:2;12945:3;12886:67;:::i;:::-;12879:74;;12962:93;13051:3;12962:93;:::i;:::-;13080:2;13075:3;13071:12;13064:19;;12723:366;;;:::o;13095:419::-;13261:4;13299:2;13288:9;13284:18;13276:26;;13348:9;13342:4;13338:20;13334:1;13323:9;13319:17;13312:47;13376:131;13502:4;13376:131;:::i;:::-;13368:139;;13095:419;;;:::o

Swarm Source

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