ETH Price: $3,398.31 (-1.45%)
Gas: 2 Gwei

Token

Full Tard (TARD)
 

Overview

Max Total Supply

123,467,980,000,005 TARD

Holders

239 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
localhotmoms.eth
Balance
64,168,806,424.194603252663339197 TARD

Value
$0.00
0x2d19d78b7172464f295c200b18225f566899f2e6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

We all know life is hard & sometimes we can't live up to our full potential. We all make mistakes.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Tard

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-13
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/* Smartest contract in the world

        #@@@          (@@@@@@@@@@       @@%        @@@@@@@%      (@@@@@@@       
          @@@             %@@.         @@@@/      @@@    #@@@    @@@    @@@@    
   #@%     @@@            /@@         @@* @@.     (@@     @@@    @@@      @@@   
   @@@     @@@            *@@        @@@  *@@     *@@@@@@@@(     @@@      #@@   
           @@@            (@@.     &@@@@@@@@@@@   #@@   @@@      @@@      @@@   
   @@@    @@@             &@@/     &@@      @@@   @@@,   &@@@   @@@@  ,@@@@&    
   ,@    @@%               &%      ,@        %%    @#      *@     *@@@@#        

   Never Go Full Retard!
   Unless You're BUYING TARD
   
   https://tard.life
   Twitter: https://twitter.com/fulltardlife
   Telegram: https://t.me/fulltardlife
*/

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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(address initialOwner) {
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual 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 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 returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 amount) internal {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        _update(from, to, amount);
    }

    /**
     * @dev Transfers `amount` of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 amount) internal virtual {
        if (from == address(0)) {
            _totalSupply += amount;
        } else {
            uint256 fromBalance = _balances[from];
            require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
            unchecked {
                // Overflow not possible: amount <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - amount;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: amount <= totalSupply or amount <= fromBalance <= totalSupply.
                _totalSupply -= amount;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + amount is at most totalSupply, which we know fits into a uint256.
                _balances[to] += amount;
            }
        }

        emit Transfer(from, to, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");
        _update(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");
        _update(account, address(0), amount);
    }

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

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

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

/*
    TARD
    Never Go Full Retard!
    Unless You're BUYING TARD

    https://tard.life
    Twitter: https://twitter.com/fulltardlife
    Telegram: https://t.me/fulltardlife
*/

contract Tard is ERC20, ERC20Burnable, Ownable {
    constructor(
        uint256 _totalSupply,
        address _teamAddr,
        uint256 _teamPer,
        address _marketingAddr,
        uint256 _marketingPer
    ) ERC20("Full Tard", "TARD") Ownable(msg.sender){
        uint256 t = _totalSupply * _teamPer / 100;
        _mint(_teamAddr, t);
        uint256 m = _totalSupply * _marketingPer / 100;
        _mint(_marketingAddr, m);
        _mint(msg.sender, _totalSupply - m - t);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_teamAddr","type":"address"},{"internalType":"uint256","name":"_teamPer","type":"uint256"},{"internalType":"address","name":"_marketingAddr","type":"address"},{"internalType":"uint256","name":"_marketingPer","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

608060405234801562000010575f80fd5b50604051620010d1380380620010d1833981016040819052620000339162000359565b3360405180604001604052806009815260200168119d5b1b0815185c9960ba1b815250604051806040016040528060048152602001631510549160e21b81525081600390816200008491906200044a565b5060046200009382826200044a565b505050620000a7816200012b60201b60201c565b505f6064620000b7858862000526565b620000c3919062000546565b9050620000d185826200017c565b5f6064620000e0848962000526565b620000ec919062000546565b9050620000fa84826200017c565b6200011e33836200010c848b62000566565b62000118919062000566565b6200017c565b5050505050505062000592565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001e55f8383620001e9565b5050565b6001600160a01b03831662000217578060025f8282546200020b91906200057c565b90915550620002ae9050565b6001600160a01b0383165f9081526020819052604090205481811015620002905760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620001cf565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620002cc57600280548290039055620002ea565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033091815260200190565b60405180910390a3505050565b80516001600160a01b038116811462000354575f80fd5b919050565b5f805f805f60a086880312156200036e575f80fd5b8551945062000380602087016200033d565b93506040860151925062000397606087016200033d565b9150608086015190509295509295909350565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620003d357607f821691505b602082108103620003f257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000445575f81815260208120601f850160051c81016020861015620004205750805b601f850160051c820191505b8181101562000441578281556001016200042c565b5050505b505050565b81516001600160401b03811115620004665762000466620003aa565b6200047e81620004778454620003be565b84620003f8565b602080601f831160018114620004b4575f84156200049c5750858301515b5f19600386901b1c1916600185901b17855562000441565b5f85815260208120601f198616915b82811015620004e457888601518255948401946001909101908401620004c3565b50858210156200050257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000540576200054062000512565b92915050565b5f826200056157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111562000540576200054062000512565b8082018082111562000540576200054062000512565b610b3180620005a05f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d714610202578063a9059cbb14610215578063dd62ed3e14610228578063f2fde38b1461023b575f80fd5b8063715018a6146101c457806379cc6790146101cc5780638da5cb5b146101df57806395d89b41146101fa575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017457806342966c681461018757806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761024e565b6040516101149190610975565b60405180910390f35b61013061012b3660046109db565b6102de565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610a03565b6102f7565b60405160128152602001610114565b6101306101823660046109db565b61031a565b61019a610195366004610a3c565b61033b565b005b6101446101aa366004610a53565b6001600160a01b03165f9081526020819052604090205490565b61019a610348565b61019a6101da3660046109db565b61035b565b6005546040516001600160a01b039091168152602001610114565b610107610374565b6101306102103660046109db565b610383565b6101306102233660046109db565b610402565b610144610236366004610a73565b61040f565b61019a610249366004610a53565b610439565b60606003805461025d90610aa4565b80601f016020809104026020016040519081016040528092919081815260200182805461028990610aa4565b80156102d45780601f106102ab576101008083540402835291602001916102d4565b820191905f5260205f20905b8154815290600101906020018083116102b757829003601f168201915b5050505050905090565b5f336102eb8185856104af565b60019150505b92915050565b5f336103048582856105d3565b61030f85858561064b565b506001949350505050565b5f336102eb81858561032c838361040f565b6103369190610adc565b6104af565b6103453382610721565b50565b61035061078c565b6103595f6107e6565b565b6103668233836105d3565b6103708282610721565b5050565b60606004805461025d90610aa4565b5f3381610390828661040f565b9050838110156103f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61030f82868684036104af565b5f336102eb81858561064b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61044161078c565b6001600160a01b0381166104a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ec565b610345816107e6565b6001600160a01b0383166105115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ec565b6001600160a01b0382166105725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ec565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f6105de848461040f565b90505f19811461064557818110156106385760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ec565b61064584848484036104af565b50505050565b6001600160a01b0383166106af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ec565b6001600160a01b0382166107115760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ec565b61071c838383610837565b505050565b6001600160a01b0382166107815760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ec565b610370825f83610837565b6005546001600160a01b031633146103595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ec565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610861578060025f8282546108569190610adc565b909155506108f69050565b6001600160a01b0383165f90815260208190526040902054818110156108d85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ec565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661091257600280548290039055610930565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105c691815260200190565b5f6020808352835180828501525f5b818110156109a057858101830151858201604001528201610984565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109d6575f80fd5b919050565b5f80604083850312156109ec575f80fd5b6109f5836109c0565b946020939093013593505050565b5f805f60608486031215610a15575f80fd5b610a1e846109c0565b9250610a2c602085016109c0565b9150604084013590509250925092565b5f60208284031215610a4c575f80fd5b5035919050565b5f60208284031215610a63575f80fd5b610a6c826109c0565b9392505050565b5f8060408385031215610a84575f80fd5b610a8d836109c0565b9150610a9b602084016109c0565b90509250929050565b600181811c90821680610ab857607f821691505b602082108103610ad657634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102f157634e487b7160e01b5f52601160045260245ffdfea264697066735822122032db2ec875e3d5ef3176bf41481e3c0bda5a8ee277119387c32d94a16e9dcb5864736f6c634300081400330000000000000000000000000000000000000616628f53bc1c944dd690f40000000000000000000000000000f75b6b8d4be2ac65d68f8a2ade78ac717c9acc450000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b984bba15dbdececaee58977478cc965ceb7f35f0000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d714610202578063a9059cbb14610215578063dd62ed3e14610228578063f2fde38b1461023b575f80fd5b8063715018a6146101c457806379cc6790146101cc5780638da5cb5b146101df57806395d89b41146101fa575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017457806342966c681461018757806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761024e565b6040516101149190610975565b60405180910390f35b61013061012b3660046109db565b6102de565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610a03565b6102f7565b60405160128152602001610114565b6101306101823660046109db565b61031a565b61019a610195366004610a3c565b61033b565b005b6101446101aa366004610a53565b6001600160a01b03165f9081526020819052604090205490565b61019a610348565b61019a6101da3660046109db565b61035b565b6005546040516001600160a01b039091168152602001610114565b610107610374565b6101306102103660046109db565b610383565b6101306102233660046109db565b610402565b610144610236366004610a73565b61040f565b61019a610249366004610a53565b610439565b60606003805461025d90610aa4565b80601f016020809104026020016040519081016040528092919081815260200182805461028990610aa4565b80156102d45780601f106102ab576101008083540402835291602001916102d4565b820191905f5260205f20905b8154815290600101906020018083116102b757829003601f168201915b5050505050905090565b5f336102eb8185856104af565b60019150505b92915050565b5f336103048582856105d3565b61030f85858561064b565b506001949350505050565b5f336102eb81858561032c838361040f565b6103369190610adc565b6104af565b6103453382610721565b50565b61035061078c565b6103595f6107e6565b565b6103668233836105d3565b6103708282610721565b5050565b60606004805461025d90610aa4565b5f3381610390828661040f565b9050838110156103f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61030f82868684036104af565b5f336102eb81858561064b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61044161078c565b6001600160a01b0381166104a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ec565b610345816107e6565b6001600160a01b0383166105115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ec565b6001600160a01b0382166105725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ec565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f6105de848461040f565b90505f19811461064557818110156106385760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ec565b61064584848484036104af565b50505050565b6001600160a01b0383166106af5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ec565b6001600160a01b0382166107115760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ec565b61071c838383610837565b505050565b6001600160a01b0382166107815760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ec565b610370825f83610837565b6005546001600160a01b031633146103595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ec565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610861578060025f8282546108569190610adc565b909155506108f69050565b6001600160a01b0383165f90815260208190526040902054818110156108d85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ec565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661091257600280548290039055610930565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105c691815260200190565b5f6020808352835180828501525f5b818110156109a057858101830151858201604001528201610984565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109d6575f80fd5b919050565b5f80604083850312156109ec575f80fd5b6109f5836109c0565b946020939093013593505050565b5f805f60608486031215610a15575f80fd5b610a1e846109c0565b9250610a2c602085016109c0565b9150604084013590509250925092565b5f60208284031215610a4c575f80fd5b5035919050565b5f60208284031215610a63575f80fd5b610a6c826109c0565b9392505050565b5f8060408385031215610a84575f80fd5b610a8d836109c0565b9150610a9b602084016109c0565b90509250929050565b600181811c90821680610ab857607f821691505b602082108103610ad657634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102f157634e487b7160e01b5f52601160045260245ffdfea264697066735822122032db2ec875e3d5ef3176bf41481e3c0bda5a8ee277119387c32d94a16e9dcb5864736f6c63430008140033

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

0000000000000000000000000000000000000616628f53bc1c944dd690f40000000000000000000000000000f75b6b8d4be2ac65d68f8a2ade78ac717c9acc450000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b984bba15dbdececaee58977478cc965ceb7f35f0000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 123467980000005000000000000000000
Arg [1] : _teamAddr (address): 0xF75B6B8d4be2AC65D68f8a2AdE78ac717C9aCc45
Arg [2] : _teamPer (uint256): 3
Arg [3] : _marketingAddr (address): 0xb984BbA15DbDECecaeE58977478cC965CeB7F35F
Arg [4] : _marketingPer (uint256): 1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000616628f53bc1c944dd690f40000
Arg [1] : 000000000000000000000000f75b6b8d4be2ac65d68f8a2ade78ac717c9acc45
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 000000000000000000000000b984bba15dbdececaee58977478cc965ceb7f35f
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

19860:505:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9306:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11603:192;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11603:192:0;1004:187:1;10408:99:0;10487:12;;10408:99;;;1342:25:1;;;1330:2;1315:18;10408:99:0;1196:177:1;12375:252:0;;;;;;:::i;:::-;;:::i;10259:84::-;;;10333:2;1853:36:1;;1841:2;1826:18;10259:84:0;1711:184:1;13036:238:0;;;;;;:::i;:::-;;:::i;19088:91::-;;;;;;:::i;:::-;;:::i;:::-;;10570:118;;;;;;:::i;:::-;-1:-1:-1;;;;;10662:18:0;10635:7;10662:18;;;;;;;;;;;;10570:118;3341:103;;;:::i;19498:164::-;;;;;;:::i;:::-;;:::i;2700:87::-;2773:6;;2700:87;;-1:-1:-1;;;;;2773:6:0;;;2422:51:1;;2410:2;2395:18;2700:87:0;2276:203:1;9516:95:0;;;:::i;13777:436::-;;;;;;:::i;:::-;;:::i;10894:184::-;;;;;;:::i;:::-;;:::i;11141:142::-;;;;;;:::i;:::-;;:::i;3599:201::-;;;;;;:::i;:::-;;:::i;9306:91::-;9351:13;9384:5;9377:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9306:91;:::o;11603:192::-;11677:4;1469:10;11733:32;1469:10;11749:7;11758:6;11733:8;:32::i;:::-;11783:4;11776:11;;;11603:192;;;;;:::o;12375:252::-;12463:4;1469:10;12521:38;12537:4;1469:10;12552:6;12521:15;:38::i;:::-;12570:27;12580:4;12586:2;12590:6;12570:9;:27::i;:::-;-1:-1:-1;12615:4:0;;12375:252;-1:-1:-1;;;;12375:252:0:o;13036:238::-;13124:4;1469:10;13180:64;1469:10;13196:7;13233:10;13205:25;1469:10;13196:7;13205:9;:25::i;:::-;:38;;;;:::i;:::-;13180:8;:64::i;19088:91::-;19144:27;1469:10;19164:6;19144:5;:27::i;:::-;19088:91;:::o;3341:103::-;2586:13;:11;:13::i;:::-;3406:30:::1;3433:1;3406:18;:30::i;:::-;3341:103::o:0;19498:164::-;19575:46;19591:7;1469:10;19614:6;19575:15;:46::i;:::-;19632:22;19638:7;19647:6;19632:5;:22::i;:::-;19498:164;;:::o;9516:95::-;9563:13;9596:7;9589:14;;;;;:::i;13777:436::-;13870:4;1469:10;13870:4;13953:25;1469:10;13970:7;13953:9;:25::i;:::-;13926:52;;14017:15;13997:16;:35;;13989:85;;;;-1:-1:-1;;;13989:85:0;;3563:2:1;13989:85:0;;;3545:21:1;3602:2;3582:18;;;3575:30;3641:34;3621:18;;;3614:62;-1:-1:-1;;;3692:18:1;;;3685:35;3737:19;;13989:85:0;;;;;;;;;14110:60;14119:5;14126:7;14154:15;14135:16;:34;14110:8;:60::i;10894:184::-;10964:4;1469:10;11020:28;1469:10;11037:2;11041:6;11020:9;:28::i;11141:142::-;-1:-1:-1;;;;;11248:18:0;;;11221:7;11248:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11141:142::o;3599:201::-;2586:13;:11;:13::i;:::-;-1:-1:-1;;;;;3688:22:0;::::1;3680:73;;;::::0;-1:-1:-1;;;3680:73:0;;3969:2:1;3680:73:0::1;::::0;::::1;3951:21:1::0;4008:2;3988:18;;;3981:30;4047:34;4027:18;;;4020:62;-1:-1:-1;;;4098:18:1;;;4091:36;4144:19;;3680:73:0::1;3767:402:1::0;3680:73:0::1;3764:28;3783:8;3764:18;:28::i;17646:346::-:0;-1:-1:-1;;;;;17748:19:0;;17740:68;;;;-1:-1:-1;;;17740:68:0;;4376:2:1;17740:68:0;;;4358:21:1;4415:2;4395:18;;;4388:30;4454:34;4434:18;;;4427:62;-1:-1:-1;;;4505:18:1;;;4498:34;4549:19;;17740:68:0;4174:400:1;17740:68:0;-1:-1:-1;;;;;17827:21:0;;17819:68;;;;-1:-1:-1;;;17819:68:0;;4781:2:1;17819:68:0;;;4763:21:1;4820:2;4800:18;;;4793:30;4859:34;4839:18;;;4832:62;-1:-1:-1;;;4910:18:1;;;4903:32;4952:19;;17819:68:0;4579:398:1;17819:68:0;-1:-1:-1;;;;;17900:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17952:32;;1342:25:1;;;17952:32:0;;1315:18:1;17952:32:0;;;;;;;;17646:346;;;:::o;18283:419::-;18384:24;18411:25;18421:5;18428:7;18411:9;:25::i;:::-;18384:52;;-1:-1:-1;;18451:16:0;:37;18447:248;;18533:6;18513:16;:26;;18505:68;;;;-1:-1:-1;;;18505:68:0;;5184:2:1;18505:68:0;;;5166:21:1;5223:2;5203:18;;;5196:30;5262:31;5242:18;;;5235:59;5311:18;;18505:68:0;4982:353:1;18505:68:0;18617:51;18626:5;18633:7;18661:6;18642:16;:25;18617:8;:51::i;:::-;18373:329;18283:419;;;:::o;14590:268::-;-1:-1:-1;;;;;14679:18:0;;14671:68;;;;-1:-1:-1;;;14671:68:0;;5542:2:1;14671:68:0;;;5524:21:1;5581:2;5561:18;;;5554:30;5620:34;5600:18;;;5593:62;-1:-1:-1;;;5671:18:1;;;5664:35;5716:19;;14671:68:0;5340:401:1;14671:68:0;-1:-1:-1;;;;;14758:16:0;;14750:64;;;;-1:-1:-1;;;14750:64:0;;5948:2:1;14750:64:0;;;5930:21:1;5987:2;5967:18;;;5960:30;6026:34;6006:18;;;5999:62;-1:-1:-1;;;6077:18:1;;;6070:33;6120:19;;14750:64:0;5746:399:1;14750:64:0;14825:25;14833:4;14839:2;14843:6;14825:7;:25::i;:::-;14590:268;;;:::o;17018:190::-;-1:-1:-1;;;;;17094:21:0;;17086:67;;;;-1:-1:-1;;;17086:67:0;;6352:2:1;17086:67:0;;;6334:21:1;6391:2;6371:18;;;6364:30;6430:34;6410:18;;;6403:62;-1:-1:-1;;;6481:18:1;;;6474:31;6522:19;;17086:67:0;6150:397:1;17086:67:0;17164:36;17172:7;17189:1;17193:6;17164:7;:36::i;2865:132::-;2773:6;;-1:-1:-1;;;;;2773:6:0;1469:10;2929:23;2921:68;;;;-1:-1:-1;;;2921:68:0;;6754:2:1;2921:68:0;;;6736:21:1;;;6773:18;;;6766:30;6832:34;6812:18;;;6805:62;6884:18;;2921:68:0;6552:356:1;3960:191:0;4053:6;;;-1:-1:-1;;;;;4070:17:0;;;-1:-1:-1;;;;;;4070:17:0;;;;;;;4103:40;;4053:6;;;4070:17;4053:6;;4103:40;;4034:16;;4103:40;4023:128;3960:191;:::o;15166:998::-;-1:-1:-1;;;;;15257:18:0;;15253:408;;15308:6;15292:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;15253:408:0;;-1:-1:-1;15253:408:0;;-1:-1:-1;;;;;15369:15:0;;15347:19;15369:15;;;;;;;;;;;15407:21;;;;15399:72;;;;-1:-1:-1;;;15399:72:0;;7115:2:1;15399:72:0;;;7097:21:1;7154:2;7134:18;;;7127:30;7193:34;7173:18;;;7166:62;-1:-1:-1;;;7244:18:1;;;7237:36;7290:19;;15399:72:0;6913:402:1;15399:72:0;-1:-1:-1;;;;;15596:15:0;;:9;:15;;;;;;;;;;15614:20;;;;15596:38;;15253:408;-1:-1:-1;;;;;15677:16:0;;15673:440;;15845:12;:22;;;;;;;15673:440;;;-1:-1:-1;;;;;16063:13:0;;:9;:13;;;;;;;;;;:23;;;;;;15673:440;16145:2;-1:-1:-1;;;;;16130:26:0;16139:4;-1:-1:-1;;;;;16130:26:0;;16149:6;16130:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;14:548;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:222::-;3199:9;;;3220:10;;;3217:133;;;3272:10;3267:3;3263:20;3260:1;3253:31;3307:4;3304:1;3297:15;3335:4;3332:1;3325:15

Swarm Source

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