ETH Price: $3,331.17 (-1.56%)
Gas: 16 Gwei

Token

The 7th Element (VITAS)
 

Overview

Max Total Supply

7,000,000,000 VITAS

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,866,783.969122486618985107 VITAS

Value
$0.00
0xd8671fe12c76b4be3f7cd21a2bb8212e91dd72dd
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:
The7thElement

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2023-04-18
*/

// Telegram https://t.me/the7thelement_eth
// Website: https://vitaseth.com
// Twitter: https://twitter.com/vitas_eth
// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.11;

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

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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract The7thElement is Context, IERC20, IERC20Metadata, Ownable {
    // Openzeppelin variables
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // Openzeppelin functions

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        // Editable
        _name = "The 7th Element";
        _symbol = "VITAS";
        uint e_totalSupply = 7_000_000_000 ether;
        // End editable

        _mint(msg.sender, e_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 (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506200001d33620000a3565b60408051808201909152600f8082526e151a19480ddd1a08115b195b595b9d608a1b60209092019182526200005591600491620001db565b5060408051808201909152600580825264564954415360d81b6020909201918252620000829181620001db565b506b169e43a85eb381aa580000006200009c3382620000f3565b50620002e5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200014e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806003600082825462000162919062000281565b90915550506001600160a01b038216600090815260016020526040812080548392906200019190849062000281565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001e990620002a8565b90600052602060002090601f0160209004810192826200020d576000855562000258565b82601f106200022857805160ff191683800117855562000258565b8280016001018555821562000258579182015b82811115620002585782518255916020019190600101906200023b565b50620002669291506200026a565b5090565b5b808211156200026657600081556001016200026b565b60008219821115620002a357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002bd57607f821691505b60208210811415620002df57634e487b7160e01b600052602260045260246000fd5b50919050565b610ac880620002f56000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101cd578063a9059cbb146101e0578063dd62ed3e146101f3578063f2fde38b1461022c57600080fd5b8063715018a6146101a05780638da5cb5b146101aa57806395d89b41146101c557600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016457806370a082311461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023f565b6040516101049190610905565b60405180910390f35b61012061011b366004610976565b6102d1565b6040519015158152602001610104565b6003545b604051908152602001610104565b6101206101503660046109a0565b6102e9565b60405160128152602001610104565b610120610172366004610976565b61030d565b6101346101853660046109dc565b6001600160a01b031660009081526001602052604090205490565b6101a861034c565b005b6000546040516001600160a01b039091168152602001610104565b6100f76103b7565b6101206101db366004610976565b6103c6565b6101206101ee366004610976565b610458565b6101346102013660046109fe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a861023a3660046109dc565b610466565b60606004805461024e90610a31565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610a31565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b6000336102df818585610531565b5060019392505050565b6000336102f7858285610655565b6103028585856106e7565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906102df9082908690610347908790610a6c565b610531565b6000546001600160a01b031633146103ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103b560006108b5565b565b60606005805461024e90610a31565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091908381101561044b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a2565b6103028286868403610531565b6000336102df8185856106e7565b6000546001600160a01b031633146104c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a2565b6001600160a01b0381166105255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a2565b61052e816108b5565b50565b6001600160a01b0383166105935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a2565b6001600160a01b0382166105f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526002602090815260408083209386168352929052205460001981146106e157818110156106d45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a2565b6106e18484848403610531565b50505050565b6001600160a01b03831661074b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a2565b6001600160a01b0382166107ad5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a2565b6001600160a01b038316600090815260016020526040902054818110156108255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a2565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061085c908490610a6c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a891815260200190565b60405180910390a36106e1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561093257858101830151858201604001528201610916565b81811115610944576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461097157600080fd5b919050565b6000806040838503121561098957600080fd5b6109928361095a565b946020939093013593505050565b6000806000606084860312156109b557600080fd5b6109be8461095a565b92506109cc6020850161095a565b9150604084013590509250925092565b6000602082840312156109ee57600080fd5b6109f78261095a565b9392505050565b60008060408385031215610a1157600080fd5b610a1a8361095a565b9150610a286020840161095a565b90509250929050565b600181811c90821680610a4557607f821691505b60208210811415610a6657634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610a8d57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220c9b19c161a9e0e51b0e0de9c400c21a0bda10947ef2cbe5abe91b75e2259276e64736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101cd578063a9059cbb146101e0578063dd62ed3e146101f3578063f2fde38b1461022c57600080fd5b8063715018a6146101a05780638da5cb5b146101aa57806395d89b41146101c557600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016457806370a082311461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023f565b6040516101049190610905565b60405180910390f35b61012061011b366004610976565b6102d1565b6040519015158152602001610104565b6003545b604051908152602001610104565b6101206101503660046109a0565b6102e9565b60405160128152602001610104565b610120610172366004610976565b61030d565b6101346101853660046109dc565b6001600160a01b031660009081526001602052604090205490565b6101a861034c565b005b6000546040516001600160a01b039091168152602001610104565b6100f76103b7565b6101206101db366004610976565b6103c6565b6101206101ee366004610976565b610458565b6101346102013660046109fe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a861023a3660046109dc565b610466565b60606004805461024e90610a31565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610a31565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b6000336102df818585610531565b5060019392505050565b6000336102f7858285610655565b6103028585856106e7565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906102df9082908690610347908790610a6c565b610531565b6000546001600160a01b031633146103ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103b560006108b5565b565b60606005805461024e90610a31565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091908381101561044b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a2565b6103028286868403610531565b6000336102df8185856106e7565b6000546001600160a01b031633146104c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a2565b6001600160a01b0381166105255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a2565b61052e816108b5565b50565b6001600160a01b0383166105935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a2565b6001600160a01b0382166105f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526002602090815260408083209386168352929052205460001981146106e157818110156106d45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a2565b6106e18484848403610531565b50505050565b6001600160a01b03831661074b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a2565b6001600160a01b0382166107ad5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a2565b6001600160a01b038316600090815260016020526040902054818110156108255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a2565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061085c908490610a6c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a891815260200190565b60405180910390a36106e1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561093257858101830151858201604001528201610916565b81811115610944576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461097157600080fd5b919050565b6000806040838503121561098957600080fd5b6109928361095a565b946020939093013593505050565b6000806000606084860312156109b557600080fd5b6109be8461095a565b92506109cc6020850161095a565b9150604084013590509250925092565b6000602082840312156109ee57600080fd5b6109f78261095a565b9392505050565b60008060408385031215610a1157600080fd5b610a1a8361095a565b9150610a286020840161095a565b90509250929050565b600181811c90821680610a4557607f821691505b60208210811415610a6657634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610a8d57634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220c9b19c161a9e0e51b0e0de9c400c21a0bda10947ef2cbe5abe91b75e2259276e64736f6c634300080b0033

Deployed Bytecode Sourcemap

5271:11764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6244:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8595:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8595:201:0;1053:187:1;7364:108:0;7452:12;;7364:108;;;1391:25:1;;;1379:2;1364:18;7364:108:0;1245:177:1;9376:295:0;;;;;;:::i;:::-;;:::i;7206:93::-;;;7289:2;1902:36:1;;1890:2;1875:18;7206:93:0;1760:184:1;10080:240:0;;;;;;:::i;:::-;;:::i;7535:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7636:18:0;7609:7;7636:18;;;:9;:18;;;;;;;7535:127;4454:103;;;:::i;:::-;;3803:87;3849:7;3876:6;3803:87;;-1:-1:-1;;;;;3876:6:0;;;2286:51:1;;2274:2;2259:18;3803:87:0;2140:203:1;6463:104:0;;;:::i;10823:438::-;;;;;;:::i;:::-;;:::i;7868:193::-;;;;;;:::i;:::-;;:::i;8124:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8240:18:0;;;8213:7;8240:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8124:151;4712:201;;;;;;:::i;:::-;;:::i;6244:100::-;6298:13;6331:5;6324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6244:100;:::o;8595:201::-;8678:4;301:10;8734:32;301:10;8750:7;8759:6;8734:8;:32::i;:::-;-1:-1:-1;8784:4:0;;8595:201;-1:-1:-1;;;8595:201:0:o;9376:295::-;9507:4;301:10;9565:38;9581:4;301:10;9596:6;9565:15;:38::i;:::-;9614:27;9624:4;9630:2;9634:6;9614:9;:27::i;:::-;-1:-1:-1;9659:4:0;;9376:295;-1:-1:-1;;;;9376:295:0:o;10080:240::-;301:10;10168:4;10249:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10249:27:0;;;;;;;;;;10168:4;;301:10;10224:66;;301:10;;10249:27;;:40;;10279:10;;10249:40;:::i;:::-;10224:8;:66::i;4454:103::-;3849:7;3876:6;-1:-1:-1;;;;;3876:6:0;301:10;4023:23;4015:68;;;;-1:-1:-1;;;4015:68:0;;3430:2:1;4015:68:0;;;3412:21:1;;;3449:18;;;3442:30;3508:34;3488:18;;;3481:62;3560:18;;4015:68:0;;;;;;;;;4519:30:::1;4546:1;4519:18;:30::i;:::-;4454:103::o:0;6463:104::-;6519:13;6552:7;6545:14;;;;;:::i;10823:438::-;301:10;10916:4;10999:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10999:27:0;;;;;;;;;;10916:4;;301:10;11045:35;;;;11037:85;;;;-1:-1:-1;;;11037:85:0;;3791:2:1;11037:85:0;;;3773:21:1;3830:2;3810:18;;;3803:30;3869:34;3849:18;;;3842:62;-1:-1:-1;;;3920:18:1;;;3913:35;3965:19;;11037:85:0;3589:401:1;11037:85:0;11158:60;11167:5;11174:7;11202:15;11183:16;:34;11158:8;:60::i;7868:193::-;7947:4;301:10;8003:28;301:10;8020:2;8024:6;8003:9;:28::i;4712:201::-;3849:7;3876:6;-1:-1:-1;;;;;3876:6:0;301:10;4023:23;4015:68;;;;-1:-1:-1;;;4015:68:0;;3430:2:1;4015:68:0;;;3412:21:1;;;3449:18;;;3442:30;3508:34;3488:18;;;3481:62;3560:18;;4015:68:0;3228:356:1;4015:68:0;-1:-1:-1;;;;;4801:22:0;::::1;4793:73;;;::::0;-1:-1:-1;;;4793:73:0;;4197:2:1;4793:73:0::1;::::0;::::1;4179:21:1::0;4236:2;4216:18;;;4209:30;4275:34;4255:18;;;4248:62;-1:-1:-1;;;4326:18:1;;;4319:36;4372:19;;4793:73:0::1;3995:402:1::0;4793:73:0::1;4877:28;4896:8;4877:18;:28::i;:::-;4712:201:::0;:::o;14459:380::-;-1:-1:-1;;;;;14595:19:0;;14587:68;;;;-1:-1:-1;;;14587:68:0;;4604:2:1;14587:68:0;;;4586:21:1;4643:2;4623:18;;;4616:30;4682:34;4662:18;;;4655:62;-1:-1:-1;;;4733:18:1;;;4726:34;4777:19;;14587:68:0;4402:400:1;14587:68:0;-1:-1:-1;;;;;14674:21:0;;14666:68;;;;-1:-1:-1;;;14666:68:0;;5009:2:1;14666:68:0;;;4991:21:1;5048:2;5028:18;;;5021:30;5087:34;5067:18;;;5060:62;-1:-1:-1;;;5138:18:1;;;5131:32;5180:19;;14666:68:0;4807:398:1;14666:68:0;-1:-1:-1;;;;;14747:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14799:32;;1391:25:1;;;14799:32:0;;1364:18:1;14799:32:0;;;;;;;14459:380;;;:::o;15126:453::-;-1:-1:-1;;;;;8240:18:0;;;15261:24;8240:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15328:37:0;;15324:248;;15410:6;15390:16;:26;;15382:68;;;;-1:-1:-1;;;15382:68:0;;5412:2:1;15382:68:0;;;5394:21:1;5451:2;5431:18;;;5424:30;5490:31;5470:18;;;5463:59;5539:18;;15382:68:0;5210:353:1;15382:68:0;15494:51;15503:5;15510:7;15538:6;15519:16;:25;15494:8;:51::i;:::-;15250:329;15126:453;;;:::o;11740:671::-;-1:-1:-1;;;;;11871:18:0;;11863:68;;;;-1:-1:-1;;;11863:68:0;;5770:2:1;11863:68:0;;;5752:21:1;5809:2;5789:18;;;5782:30;5848:34;5828:18;;;5821:62;-1:-1:-1;;;5899:18:1;;;5892:35;5944:19;;11863:68:0;5568:401:1;11863:68:0;-1:-1:-1;;;;;11950:16:0;;11942:64;;;;-1:-1:-1;;;11942:64:0;;6176:2:1;11942:64:0;;;6158:21:1;6215:2;6195:18;;;6188:30;6254:34;6234:18;;;6227:62;-1:-1:-1;;;6305:18:1;;;6298:33;6348:19;;11942:64:0;5974:399:1;11942:64:0;-1:-1:-1;;;;;12092:15:0;;12070:19;12092:15;;;:9;:15;;;;;;12126:21;;;;12118:72;;;;-1:-1:-1;;;12118:72:0;;6580:2:1;12118:72:0;;;6562:21:1;6619:2;6599:18;;;6592:30;6658:34;6638:18;;;6631:62;-1:-1:-1;;;6709:18:1;;;6702:36;6755:19;;12118:72:0;6378:402:1;12118:72:0;-1:-1:-1;;;;;12226:15:0;;;;;;;:9;:15;;;;;;12244:20;;;12226:38;;12286:13;;;;;;;;:23;;12258:6;;12226:15;12286:23;;12258:6;;12286:23;:::i;:::-;;;;;;;;12342:2;-1:-1:-1;;;;;12327:26:0;12336:4;-1:-1:-1;;;;;12327:26:0;;12346:6;12327:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;12327:26:0;;;;;;;;12366:37;16179:125;5073:191;5147:16;5166:6;;-1:-1:-1;;;;;5183:17:0;;;-1:-1:-1;;;;;;5183:17:0;;;;;;5216:40;;5166:6;;;;;;;5216:40;;5147:16;5216:40;5136:128;5073:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:225::-;3038:3;3069:1;3065:6;3062:1;3059:13;3056:136;;;3114:10;3109:3;3105:20;3102:1;3095:31;3149:4;3146:1;3139:15;3177:4;3174:1;3167:15;3056:136;-1:-1:-1;3208:9:1;;2998:225::o

Swarm Source

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