ETH Price: $2,410.23 (-0.62%)

Token

TETRA (TRA)
 

Overview

Max Total Supply

12,504,861,107 TRA

Holders

1

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 TRA

Value
$0.00
0x0000000000000000000000000000000000000000
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:
TetraToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.16;
// SPDX-License-Identifier: Unlicensed

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

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

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

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

    /**
     * @dev Returns the erc20 token owner.
     */
    function getOwner() external view returns (address);

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

/*
 * @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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.

    function _msgSender() internal view returns (address) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; 
        return msg.data;
    }
}

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 msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract ERC20 is Context, IERC20, Ownable {
    using SafeMath for uint256;

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

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

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupplyWithoutDecimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _mint(msg.sender, totalSupplyWithoutDecimals_ * 10**decimals_);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function getOwner() public view returns (address) {
        return owner();
    }

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

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

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

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

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

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

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

    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        // require(sender != address(0), "ERC20: transfer from the zero address");
        // require(recipient != address(0), "ERC20: transfer to the zero address");
        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal {
        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);

    }

    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()].sub(
                amount,
                "ERC20: burn amount exceeds allowance"
            )
        );
    }

}

contract TetraToken is ERC20 {
    constructor()ERC20("TETRA","TRA",18,12504861107) {}
}

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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806005815260200164544554524160d81b8152506040518060400160405280600381526020016254524160e81b81525060126402e95909b36000620000666200010b60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006620000be858262000311565b506005620000cd848262000311565b506004805460ff191660ff84161790556200010133620000ef84600a620004f0565b620000fb908462000508565b6200010f565b5050505062000538565b3390565b6001600160a01b0382166200016b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6003546200017a908262000200565b6003556001600160a01b038216600090815260016020526040902054620001a2908262000200565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f49085815260200190565b60405180910390a35050565b6000806200020f838562000522565b905083811015620002635760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000162565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200029757607f821691505b602082108103620002b857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200030c57600081815260208120601f850160051c81016020861015620002e75750805b601f850160051c820191505b818110156200030857828155600101620002f3565b5050505b505050565b81516001600160401b038111156200032d576200032d6200026c565b62000345816200033e845462000282565b84620002be565b602080601f8311600181146200037d5760008415620003645750858301515b600019600386901b1c1916600185901b17855562000308565b600085815260208120601f198616915b82811015620003ae578886015182559484019460019091019084016200038d565b5085821015620003cd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000434578160001904821115620004185762000418620003dd565b808516156200042657918102915b93841c9390800290620003f8565b509250929050565b6000826200044d5750600162000266565b816200045c5750600062000266565b81600181146200047557600281146200048057620004a0565b600191505062000266565b60ff841115620004945762000494620003dd565b50506001821b62000266565b5060208310610133831016604e8410600b8410161715620004c5575081810a62000266565b620004d18383620003f3565b8060001904821115620004e857620004e8620003dd565b029392505050565b60006200050160ff8416836200043c565b9392505050565b8082028115828204841417620002665762000266620003dd565b80820180821115620002665762000266620003dd565b610aaf80620005486000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f578063f2fde38b1461025857600080fd5b8063715018a6146101b1578063893d20e8146101bb5780638da5cb5b146101e057806395d89b41146101f157600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261026b565b60405161010f9190610872565b60405180910390f35b61012b6101263660046108dc565b6102fd565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610906565b610314565b60045460405160ff909116815260200161010f565b61012b6101833660046108dc565b61037d565b61013f610196366004610942565b6001600160a01b031660009081526001602052604090205490565b6101b96103b3565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161010f565b6000546001600160a01b03166101c8565b61010261045c565b61012b6102073660046108dc565b61046b565b61012b61021a3660046108dc565b6104ba565b61013f61022d36600461095d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b9610266366004610942565b6104c7565b60606006805461027a90610990565b80601f01602080910402602001604051908101604052809291908181526020018280546102a690610990565b80156102f35780601f106102c8576101008083540402835291602001916102f3565b820191906000526020600020905b8154815290600101906020018083116102d657829003601f168201915b5050505050905090565b600061030a33848461052d565b5060015b92915050565b6000610321848484610652565b610373843361036e85604051806060016040528060288152602001610a2d602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610712565b61052d565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030a91859061036e908661074c565b6000546001600160a01b031633146104125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461027a90610990565b600061030a338461036e85604051806060016040528060258152602001610a55602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610712565b600061030a338484610652565b6000546001600160a01b031633146105215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610409565b61052a816107b2565b50565b6001600160a01b03831661058f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610409565b6001600160a01b0382166105f05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610409565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61068f81604051806060016040528060268152602001610a07602691396001600160a01b0386166000908152600160205260409020549190610712565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546106be908261074c565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106459085815260200190565b600081848411156107365760405162461bcd60e51b81526004016104099190610872565b50600061074384866109e0565b95945050505050565b60008061075983856109f3565b9050838110156107ab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610409565b9392505050565b6001600160a01b0381166108175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610409565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600060208083528351808285015260005b8181101561089f57858101830151858201604001528201610883565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108d757600080fd5b919050565b600080604083850312156108ef57600080fd5b6108f8836108c0565b946020939093013593505050565b60008060006060848603121561091b57600080fd5b610924846108c0565b9250610932602085016108c0565b9150604084013590509250925092565b60006020828403121561095457600080fd5b6107ab826108c0565b6000806040838503121561097057600080fd5b610979836108c0565b9150610987602084016108c0565b90509250929050565b600181811c908216806109a457607f821691505b6020821081036109c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561030e5761030e6109ca565b8082018082111561030e5761030e6109ca56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e76540c2181f892f508e1018e08dc2910667add9c3bfd36e9a555e3af26091d064736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f9578063a9059cbb1461020c578063dd62ed3e1461021f578063f2fde38b1461025857600080fd5b8063715018a6146101b1578063893d20e8146101bb5780638da5cb5b146101e057806395d89b41146101f157600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261026b565b60405161010f9190610872565b60405180910390f35b61012b6101263660046108dc565b6102fd565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610906565b610314565b60045460405160ff909116815260200161010f565b61012b6101833660046108dc565b61037d565b61013f610196366004610942565b6001600160a01b031660009081526001602052604090205490565b6101b96103b3565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161010f565b6000546001600160a01b03166101c8565b61010261045c565b61012b6102073660046108dc565b61046b565b61012b61021a3660046108dc565b6104ba565b61013f61022d36600461095d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b9610266366004610942565b6104c7565b60606006805461027a90610990565b80601f01602080910402602001604051908101604052809291908181526020018280546102a690610990565b80156102f35780601f106102c8576101008083540402835291602001916102f3565b820191906000526020600020905b8154815290600101906020018083116102d657829003601f168201915b5050505050905090565b600061030a33848461052d565b5060015b92915050565b6000610321848484610652565b610373843361036e85604051806060016040528060288152602001610a2d602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610712565b61052d565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030a91859061036e908661074c565b6000546001600160a01b031633146104125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461027a90610990565b600061030a338461036e85604051806060016040528060258152602001610a55602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610712565b600061030a338484610652565b6000546001600160a01b031633146105215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610409565b61052a816107b2565b50565b6001600160a01b03831661058f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610409565b6001600160a01b0382166105f05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610409565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61068f81604051806060016040528060268152602001610a07602691396001600160a01b0386166000908152600160205260409020549190610712565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546106be908261074c565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106459085815260200190565b600081848411156107365760405162461bcd60e51b81526004016104099190610872565b50600061074384866109e0565b95945050505050565b60008061075983856109f3565b9050838110156107ab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610409565b9392505050565b6001600160a01b0381166108175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610409565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600060208083528351808285015260005b8181101561089f57858101830151858201604001528201610883565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108d757600080fd5b919050565b600080604083850312156108ef57600080fd5b6108f8836108c0565b946020939093013593505050565b60008060006060848603121561091b57600080fd5b610924846108c0565b9250610932602085016108c0565b9150604084013590509250925092565b60006020828403121561095457600080fd5b6107ab826108c0565b6000806040838503121561097057600080fd5b610979836108c0565b9150610987602084016108c0565b90509250929050565b600181811c908216806109a457607f821691505b6020821081036109c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561030e5761030e6109ca565b8082018082111561030e5761030e6109ca56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e76540c2181f892f508e1018e08dc2910667add9c3bfd36e9a555e3af26091d064736f6c63430008130033

Deployed Bytecode Sourcemap

16446:90:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12938:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13609:154;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13609:154:0;1004:187:1;13029:91:0;13100:12;;13029:91;;;1342:25:1;;;1330:2;1315:18;13029:91:0;1196:177:1;12216:437:0;;;;;;:::i;:::-;;:::i;12752:83::-;12818:9;;12752:83;;12818:9;;;;1853:36:1;;1841:2;1826:18;12752:83:0;1711:184:1;13771:283:0;;;;;;:::i;:::-;;:::i;13128:110::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13212:18:0;13185:7;13212:18;;;:9;:18;;;;;;;13128:110;5360:140;;;:::i;:::-;;12661:83;12702:7;4783:6;-1:-1:-1;;;;;4783:6:0;12661:83;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;12661:83:0;2091:203:1;4718:79:0;4756:7;4783:6;-1:-1:-1;;;;;4783:6:0;4718:79;;12843:87;;;:::i;14062:383::-;;;;;;:::i;:::-;;:::i;13246:181::-;;;;;;:::i;:::-;;:::i;13435:166::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13566:18:0;;;13534:7;13566:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13435:166;5655:109;;;;;;:::i;:::-;;:::i;12938:83::-;12975:13;13008:5;13001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12938:83;:::o;13609:154::-;13675:4;13692:39;4062:10;13715:7;13724:6;13692:8;:39::i;:::-;-1:-1:-1;13751:4:0;13609:154;;;;;:::o;12216:437::-;12339:4;12356:36;12366:6;12374:9;12385:6;12356:9;:36::i;:::-;12403:220;12426:6;4062:10;12474:138;12530:6;12474:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12474:19:0;;;;;;:11;:19;;;;;;;;4062:10;12474:33;;;;;;;;;;:37;:138::i;:::-;12403:8;:220::i;:::-;-1:-1:-1;12641:4:0;12216:437;;;;;:::o;13771:283::-;4062:10;13869:4;13963:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13963:34:0;;;;;;;;;;13869:4;;13891:133;;13941:7;;13963:50;;14002:10;13963:38;:50::i;5360:140::-;4930:6;;-1:-1:-1;;;;;4930:6:0;4062:10;4930:22;4922:67;;;;-1:-1:-1;;;4922:67:0;;3151:2:1;4922:67:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;4922:67:0;;;;;;;;;5459:1:::1;5443:6:::0;;5422:40:::1;::::0;-1:-1:-1;;;;;5443:6:0;;::::1;::::0;5422:40:::1;::::0;5459:1;;5422:40:::1;5490:1;5473:19:::0;;-1:-1:-1;;;;;;5473:19:0::1;::::0;;5360:140::o;12843:87::-;12882:13;12915:7;12908:14;;;;;:::i;14062:383::-;14165:4;14187:228;4062:10;14237:7;14259:145;14316:15;14259:145;;;;;;;;;;;;;;;;;4062:10;14259:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14259:34:0;;;;;;;;;;;;:38;:145::i;13246:181::-;13333:4;13355:42;4062:10;13379:9;13390:6;13355:9;:42::i;5655:109::-;4930:6;;-1:-1:-1;;;;;4930:6:0;4062:10;4930:22;4922:67;;;;-1:-1:-1;;;4922:67:0;;3151:2:1;4922:67:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;4922:67:0;2949:356:1;4922:67:0;5728:28:::1;5747:8;5728:18;:28::i;:::-;5655:109:::0;:::o;15726:372::-;-1:-1:-1;;;;;15854:19:0;;15846:68;;;;-1:-1:-1;;;15846:68:0;;3512:2:1;15846:68:0;;;3494:21:1;3551:2;3531:18;;;3524:30;3590:34;3570:18;;;3563:62;-1:-1:-1;;;3641:18:1;;;3634:34;3685:19;;15846:68:0;3310:400:1;15846:68:0;-1:-1:-1;;;;;15933:21:0;;15925:68;;;;-1:-1:-1;;;15925:68:0;;3917:2:1;15925:68:0;;;3899:21:1;3956:2;3936:18;;;3929:30;3995:34;3975:18;;;3968:62;-1:-1:-1;;;4046:18:1;;;4039:32;4088:19;;15925:68:0;3715:398:1;15925:68:0;-1:-1:-1;;;;;16004:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16056:32;;1342:25:1;;;16056:32:0;;1315:18:1;16056:32:0;;;;;;;;15726:372;;;:::o;14453:556::-;14766:108;14802:6;14766:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14766:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;14746:17:0;;;;;;;:9;:17;;;;;;:128;;;;14908:20;;;;;;;:32;;14933:6;14908:24;:32::i;:::-;-1:-1:-1;;;;;14885:20:0;;;;;;;:9;:20;;;;;;;:55;;;;14966:35;;;;;;;;;;14994:6;1342:25:1;;1330:2;1315:18;;1196:177;7862:226:0;7982:7;8018:12;8010:6;;;;8002:29;;;;-1:-1:-1;;;8002:29:0;;;;;;;;:::i;:::-;-1:-1:-1;8042:9:0;8054:5;8058:1;8054;:5;:::i;:::-;8042:17;7862:226;-1:-1:-1;;;;;7862:226:0:o;6975:181::-;7033:7;;7065:5;7069:1;7065;:5;:::i;:::-;7053:17;;7094:1;7089;:6;;7081:46;;;;-1:-1:-1;;;7081:46:0;;4715:2:1;7081:46:0;;;4697:21:1;4754:2;4734:18;;;4727:30;4793:29;4773:18;;;4766:57;4840:18;;7081:46:0;4513:351:1;7081:46:0;7147:1;6975:181;-1:-1:-1;;;6975:181:0:o;5870:266::-;-1:-1:-1;;;;;5958:22:0;;5936:110;;;;-1:-1:-1;;;5936:110:0;;5071:2:1;5936:110:0;;;5053:21:1;5110:2;5090:18;;;5083:30;5149:34;5129:18;;;5122:62;-1:-1:-1;;;5200:18:1;;;5193:36;5246:19;;5936:110:0;4869:402:1;5936:110:0;6083:6;;;6062:38;;-1:-1:-1;;;;;6062:38:0;;;;6083:6;;;6062:38;;;6111:6;:17;;-1:-1:-1;;;;;;6111:17:0;-1:-1:-1;;;;;6111:17:0;;;;;;;;;;5870:266::o;14:548: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;;;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:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;4118:127::-;4179:10;4174:3;4170:20;4167:1;4160:31;4210:4;4207:1;4200:15;4234:4;4231:1;4224:15;4250:128;4317:9;;;4338:11;;;4335:37;;;4352:18;;:::i;4383:125::-;4448:9;;;4469:10;;;4466:36;;;4482:18;;:::i

Swarm Source

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