ETH Price: $3,148.14 (-8.55%)
Gas: 9 Gwei

Token

ElonStarship (ELOS)
 

Overview

Max Total Supply

100,000,000,000,000,000 ELOS

Holders

149

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
129,419,723,843,860.394430436 ELOS

Value
$0.00
0x0F2990342Bfe3D6C3538C7878928eAea824CDcD8
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:
ElonStarship

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-02
*/

pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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 () internal {
        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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


contract ElonStarship is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 100000000000 * 10**6 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'ElonStarship';
    string private _symbol = 'ELOS';
    uint8 private _decimals = 9;
    
    uint256 public _maxTxAmount = 100000000 * 10**6 * 10**9;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        (uint256 rAmount,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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 _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(sender != owner() && recipient != owner())
          require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            
       
        _transferStandard(sender, recipient, amount);
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) {
        uint256 tFee = tAmount.div(100).mul(2);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
}

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":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

6a34f8e1f3adab5d4bffffff1960045560c0604052600c60808190526b0456c6f6e53746172736869760a41b60a09081526200003f916006919062000184565b5060408051808201909152600480825263454c4f5360e01b60209092019182526200006d9160079162000184565b506008805460ff1916600990811790915569152d02c7e14af680000090553480156200009857600080fd5b506000620000a562000180565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600454600160006200010062000180565b6001600160a01b031681526020810191909152604001600020556200012462000180565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a52b7d2dcc80cd2e40000006040518082815260200191505060405180910390a362000220565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001c757805160ff1916838001178555620001f7565b82800160010185558215620001f7579182015b82811115620001f7578251825591602001919060010190620001da565b506200020592915062000209565b5090565b5b808211156200020557600081556001016200020a565b61135280620002306000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610353578063a9059cbb1461037f578063d543dbeb146103ab578063dd62ed3e146103c8578063f2fde38b146103f65761012c565b806370a08231146102f1578063715018a6146103175780637d1db4a51461031f5780638da5cb5b1461032757806395d89b411461034b5761012c565b806323b872dd116100f457806323b872dd1461022f5780632d83811914610265578063313ce5671461028257806339509351146102a05780634549b039146102cc5761012c565b8063053ab1821461013157806306fdde0314610150578063095ea7b3146101cd57806313114a9d1461020d57806318160ddd14610227575b600080fd5b61014e6004803603602081101561014757600080fd5b503561041c565b005b61015861049b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610531565b604080519115158252519081900360200190f35b61021561054f565b60408051918252519081900360200190f35b610215610555565b6101f96004803603606081101561024557600080fd5b506001600160a01b03813581169160208101359091169060400135610564565b6102156004803603602081101561027b57600080fd5b50356105eb565b61028a61064b565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b657600080fd5b506001600160a01b038135169060200135610654565b610215600480360360408110156102e257600080fd5b508035906020013515156106a2565b6102156004803603602081101561030757600080fd5b50356001600160a01b031661073b565b61014e61075d565b610215610811565b61032f610817565b604080516001600160a01b039092168252519081900360200190f35b610158610826565b6101f96004803603604081101561036957600080fd5b506001600160a01b038135169060200135610887565b6101f96004803603604081101561039557600080fd5b506001600160a01b0381351690602001356108ef565b61014e600480360360208110156103c157600080fd5b5035610903565b610215600480360360408110156103de57600080fd5b506001600160a01b0381358116916020013516610993565b61014e6004803603602081101561040c57600080fd5b50356001600160a01b03166109be565b6000610426610ac8565b9050600061043383610acc565b505050506001600160a01b03831660009081526001602052604090205490915061045d9082610b18565b6001600160a01b0383166000908152600160205260409020556004546104839082610b18565b6004556005546104939084610b5a565b600555505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105275780601f106104fc57610100808354040283529160200191610527565b820191906000526020600020905b81548152906001019060200180831161050a57829003601f168201915b5050505050905090565b600061054561053e610ac8565b8484610bb4565b5060015b92915050565b60055490565b6a52b7d2dcc80cd2e400000090565b6000610571848484610ca0565b6105e18461057d610ac8565b6105dc8560405180606001604052806028815260200161125e602891396001600160a01b038a166000908152600360205260408120906105bb610ac8565b6001600160a01b031681526020810191909152604001600020549190610e01565b610bb4565b5060019392505050565b600060045482111561062e5760405162461bcd60e51b815260040180806020018281038252602a8152602001806111a3602a913960400191505060405180910390fd5b6000610638610e98565b90506106448382610ebb565b9392505050565b60085460ff1690565b6000610545610661610ac8565b846105dc8560036000610672610ac8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610b5a565b60006a52b7d2dcc80cd2e4000000831115610704576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161072257600061071484610acc565b509294506105499350505050565b600061072d84610acc565b509194506105499350505050565b6001600160a01b038116600090815260016020526040812054610549906105eb565b610765610ac8565b6000546001600160a01b039081169116146107c7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60095481565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105275780601f106104fc57610100808354040283529160200191610527565b6000610545610894610ac8565b846105dc856040518060600160405280602581526020016112f860259139600360006108be610ac8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e01565b60006105456108fc610ac8565b8484610ca0565b61090b610ac8565b6000546001600160a01b0390811691161461096d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61098d60646109876a52b7d2dcc80cd2e400000084610efd565b90610ebb565b60095550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6109c6610ac8565b6000546001600160a01b03908116911614610a28576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610a6d5760405162461bcd60e51b81526004018080602001828103825260268152602001806111cd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6000806000806000806000610ae088610f56565b915091506000610aee610e98565b90506000806000610b008c8686610f89565b919e909d50909b509599509397509395505050505050565b600061064483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e01565b600082820183811015610644576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316610bf95760405162461bcd60e51b81526004018080602001828103825260248152602001806112d46024913960400191505060405180910390fd5b6001600160a01b038216610c3e5760405162461bcd60e51b81526004018080602001828103825260228152602001806111f36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ce55760405162461bcd60e51b81526004018080602001828103825260258152602001806112af6025913960400191505060405180910390fd5b6001600160a01b038216610d2a5760405162461bcd60e51b81526004018080602001828103825260238152602001806111806023913960400191505060405180910390fd5b60008111610d695760405162461bcd60e51b81526004018080602001828103825260298152602001806112866029913960400191505060405180910390fd5b610d71610817565b6001600160a01b0316836001600160a01b031614158015610dab5750610d95610817565b6001600160a01b0316826001600160a01b031614155b15610df157600954811115610df15760405162461bcd60e51b81526004018080602001828103825260288152602001806112156028913960400191505060405180910390fd5b610dfc838383610fc5565b505050565b60008184841115610e905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e55578181015183820152602001610e3d565b50505050905090810190601f168015610e825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000610ea56110ad565b9092509050610eb48282610ebb565b9250505090565b600061064483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506110f6565b600082610f0c57506000610549565b82820282848281610f1957fe5b04146106445760405162461bcd60e51b815260040180806020018281038252602181526020018061123d6021913960400191505060405180910390fd5b60008080610f706002610f6a866064610ebb565b90610efd565b90506000610f7e8583610b18565b935090915050915091565b6000808080610f988786610efd565b90506000610fa68787610efd565b90506000610fb48383610b18565b929992985090965090945050505050565b6000806000806000610fd686610acc565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506110069086610b18565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546110359085610b5a565b6001600160a01b038816600090815260016020526040902055611058838261115b565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60045460009081906a52b7d2dcc80cd2e40000006110cb8282610ebb565b8210156110ec576004546a52b7d2dcc80cd2e40000009350935050506110f2565b90925090505b9091565b600081836111455760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610e55578181015183820152602001610e3d565b50600083858161115157fe5b0495945050505050565b6004546111689083610b18565b6004556005546111789082610b5a565b600555505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200e7be4babc8a0e0aa87291859c500da78434651c2ddcd6b1e6cb15f8bb7ea2e364736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610353578063a9059cbb1461037f578063d543dbeb146103ab578063dd62ed3e146103c8578063f2fde38b146103f65761012c565b806370a08231146102f1578063715018a6146103175780637d1db4a51461031f5780638da5cb5b1461032757806395d89b411461034b5761012c565b806323b872dd116100f457806323b872dd1461022f5780632d83811914610265578063313ce5671461028257806339509351146102a05780634549b039146102cc5761012c565b8063053ab1821461013157806306fdde0314610150578063095ea7b3146101cd57806313114a9d1461020d57806318160ddd14610227575b600080fd5b61014e6004803603602081101561014757600080fd5b503561041c565b005b61015861049b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610531565b604080519115158252519081900360200190f35b61021561054f565b60408051918252519081900360200190f35b610215610555565b6101f96004803603606081101561024557600080fd5b506001600160a01b03813581169160208101359091169060400135610564565b6102156004803603602081101561027b57600080fd5b50356105eb565b61028a61064b565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b657600080fd5b506001600160a01b038135169060200135610654565b610215600480360360408110156102e257600080fd5b508035906020013515156106a2565b6102156004803603602081101561030757600080fd5b50356001600160a01b031661073b565b61014e61075d565b610215610811565b61032f610817565b604080516001600160a01b039092168252519081900360200190f35b610158610826565b6101f96004803603604081101561036957600080fd5b506001600160a01b038135169060200135610887565b6101f96004803603604081101561039557600080fd5b506001600160a01b0381351690602001356108ef565b61014e600480360360208110156103c157600080fd5b5035610903565b610215600480360360408110156103de57600080fd5b506001600160a01b0381358116916020013516610993565b61014e6004803603602081101561040c57600080fd5b50356001600160a01b03166109be565b6000610426610ac8565b9050600061043383610acc565b505050506001600160a01b03831660009081526001602052604090205490915061045d9082610b18565b6001600160a01b0383166000908152600160205260409020556004546104839082610b18565b6004556005546104939084610b5a565b600555505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105275780601f106104fc57610100808354040283529160200191610527565b820191906000526020600020905b81548152906001019060200180831161050a57829003601f168201915b5050505050905090565b600061054561053e610ac8565b8484610bb4565b5060015b92915050565b60055490565b6a52b7d2dcc80cd2e400000090565b6000610571848484610ca0565b6105e18461057d610ac8565b6105dc8560405180606001604052806028815260200161125e602891396001600160a01b038a166000908152600360205260408120906105bb610ac8565b6001600160a01b031681526020810191909152604001600020549190610e01565b610bb4565b5060019392505050565b600060045482111561062e5760405162461bcd60e51b815260040180806020018281038252602a8152602001806111a3602a913960400191505060405180910390fd5b6000610638610e98565b90506106448382610ebb565b9392505050565b60085460ff1690565b6000610545610661610ac8565b846105dc8560036000610672610ac8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610b5a565b60006a52b7d2dcc80cd2e4000000831115610704576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161072257600061071484610acc565b509294506105499350505050565b600061072d84610acc565b509194506105499350505050565b6001600160a01b038116600090815260016020526040812054610549906105eb565b610765610ac8565b6000546001600160a01b039081169116146107c7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60095481565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105275780601f106104fc57610100808354040283529160200191610527565b6000610545610894610ac8565b846105dc856040518060600160405280602581526020016112f860259139600360006108be610ac8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e01565b60006105456108fc610ac8565b8484610ca0565b61090b610ac8565b6000546001600160a01b0390811691161461096d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61098d60646109876a52b7d2dcc80cd2e400000084610efd565b90610ebb565b60095550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6109c6610ac8565b6000546001600160a01b03908116911614610a28576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610a6d5760405162461bcd60e51b81526004018080602001828103825260268152602001806111cd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6000806000806000806000610ae088610f56565b915091506000610aee610e98565b90506000806000610b008c8686610f89565b919e909d50909b509599509397509395505050505050565b600061064483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e01565b600082820183811015610644576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316610bf95760405162461bcd60e51b81526004018080602001828103825260248152602001806112d46024913960400191505060405180910390fd5b6001600160a01b038216610c3e5760405162461bcd60e51b81526004018080602001828103825260228152602001806111f36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ce55760405162461bcd60e51b81526004018080602001828103825260258152602001806112af6025913960400191505060405180910390fd5b6001600160a01b038216610d2a5760405162461bcd60e51b81526004018080602001828103825260238152602001806111806023913960400191505060405180910390fd5b60008111610d695760405162461bcd60e51b81526004018080602001828103825260298152602001806112866029913960400191505060405180910390fd5b610d71610817565b6001600160a01b0316836001600160a01b031614158015610dab5750610d95610817565b6001600160a01b0316826001600160a01b031614155b15610df157600954811115610df15760405162461bcd60e51b81526004018080602001828103825260288152602001806112156028913960400191505060405180910390fd5b610dfc838383610fc5565b505050565b60008184841115610e905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e55578181015183820152602001610e3d565b50505050905090810190601f168015610e825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000610ea56110ad565b9092509050610eb48282610ebb565b9250505090565b600061064483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506110f6565b600082610f0c57506000610549565b82820282848281610f1957fe5b04146106445760405162461bcd60e51b815260040180806020018281038252602181526020018061123d6021913960400191505060405180910390fd5b60008080610f706002610f6a866064610ebb565b90610efd565b90506000610f7e8583610b18565b935090915050915091565b6000808080610f988786610efd565b90506000610fa68787610efd565b90506000610fb48383610b18565b929992985090965090945050505050565b6000806000806000610fd686610acc565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506110069086610b18565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546110359085610b5a565b6001600160a01b038816600090815260016020526040902055611058838261115b565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60045460009081906a52b7d2dcc80cd2e40000006110cb8282610ebb565b8210156110ec576004546a52b7d2dcc80cd2e40000009350935050506110f2565b90925090505b9091565b600081836111455760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610e55578181015183820152602001610e3d565b50600083858161115157fe5b0495945050505050565b6004546111689083610b18565b6004556005546111789082610b5a565b600555505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200e7be4babc8a0e0aa87291859c500da78434651c2ddcd6b1e6cb15f8bb7ea2e364736f6c634300060c0033

Deployed Bytecode Sourcemap

15564:6909:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18526:288;;;;;;;;;;;;;;;;-1:-1:-1;18526:288:0;;:::i;:::-;;16406:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17258:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17258:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18251:87;;;:::i;:::-;;;;;;;;;;;;;;;;16683:95;;;:::i;17427:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17427:313:0;;;;;;;;;;;;;;;;;:::i;19264:253::-;;;;;;;;;;;;;;;;-1:-1:-1;19264:253:0;;:::i;16592:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17748:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17748:218:0;;;;;;;;:::i;18822:434::-;;;;;;;;;;;;;;;;-1:-1:-1;18822:434:0;;;;;;;;;:::i;16786:138::-;;;;;;;;;;;;;;;;-1:-1:-1;16786:138:0;-1:-1:-1;;;;;16786:138:0;;:::i;15008:148::-;;;:::i;16203:55::-;;;:::i;14366:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;14366:79:0;;;;;;;;;;;;;;16497:87;;;:::i;17974:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17974:269:0;;;;;;;;:::i;16932:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16932:167:0;;;;;;;;:::i;18356:162::-;;;;;;;;;;;;;;;;-1:-1:-1;18356:162:0;;:::i;17107:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17107:143:0;;;;;;;;;;:::i;15311:244::-;;;;;;;;;;;;;;;;-1:-1:-1;15311:244:0;-1:-1:-1;;;;;15311:244:0;;:::i;18526:288::-;18578:14;18595:12;:10;:12::i;:::-;18578:29;;18619:15;18642:19;18653:7;18642:10;:19::i;:::-;-1:-1:-1;;;;;;;;;18690:15:0;;;;;;:7;:15;;;;;;18618:43;;-1:-1:-1;18690:28:0;;18618:43;18690:19;:28::i;:::-;-1:-1:-1;;;;;18672:15:0;;;;;;:7;:15;;;;;:46;18739:7;;:20;;18751:7;18739:11;:20::i;:::-;18729:7;:30;18783:10;;:23;;18798:7;18783:14;:23::i;:::-;18770:10;:36;-1:-1:-1;;;18526:288:0:o;16406:83::-;16476:5;16469:12;;;;;;;;-1:-1:-1;;16469:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16443:13;;16469:12;;16476:5;;16469:12;;16476:5;16469:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16406:83;:::o;17258:161::-;17333:4;17350:39;17359:12;:10;:12::i;:::-;17373:7;17382:6;17350:8;:39::i;:::-;-1:-1:-1;17407:4:0;17258:161;;;;;:::o;18251:87::-;18320:10;;18251:87;:::o;16683:95::-;15955:28;16683:95;:::o;17427:313::-;17525:4;17542:36;17552:6;17560:9;17571:6;17542:9;:36::i;:::-;17589:121;17598:6;17606:12;:10;:12::i;:::-;17620:89;17658:6;17620:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17620:19:0;;;;;;:11;:19;;;;;;17640:12;:10;:12::i;:::-;-1:-1:-1;;;;;17620:33:0;;;;;;;;;;;;-1:-1:-1;17620:33:0;;;:89;:37;:89::i;:::-;17589:8;:121::i;:::-;-1:-1:-1;17728:4:0;17427:313;;;;;:::o;19264:253::-;19330:7;19369;;19358;:18;;19350:73;;;;-1:-1:-1;;;19350:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19434:19;19457:10;:8;:10::i;:::-;19434:33;-1:-1:-1;19485:24:0;:7;19434:33;19485:11;:24::i;:::-;19478:31;19264:253;-1:-1:-1;;;19264:253:0:o;16592:83::-;16658:9;;;;16592:83;:::o;17748:218::-;17836:4;17853:83;17862:12;:10;:12::i;:::-;17876:7;17885:50;17924:10;17885:11;:25;17897:12;:10;:12::i;:::-;-1:-1:-1;;;;;17885:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17885:25:0;;;:34;;;;;;;;;;;:38;:50::i;18822:434::-;18912:7;15955:28;18940:7;:18;;18932:62;;;;;-1:-1:-1;;;18932:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19010:17;19005:244;;19045:15;19068:19;19079:7;19068:10;:19::i;:::-;-1:-1:-1;19044:43:0;;-1:-1:-1;19102:14:0;;-1:-1:-1;;;;19102:14:0;19005:244;19151:23;19181:19;19192:7;19181:10;:19::i;:::-;-1:-1:-1;19149:51:0;;-1:-1:-1;19215:22:0;;-1:-1:-1;;;;19215:22:0;16786:138;-1:-1:-1;;;;;16899:16:0;;16852:7;16899:16;;;:7;:16;;;;;;16879:37;;:19;:37::i;15008:148::-;14588:12;:10;:12::i;:::-;14578:6;;-1:-1:-1;;;;;14578:6:0;;;:22;;;14570:67;;;;;-1:-1:-1;;;14570:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15115:1:::1;15099:6:::0;;15078:40:::1;::::0;-1:-1:-1;;;;;15099:6:0;;::::1;::::0;15078:40:::1;::::0;15115:1;;15078:40:::1;15146:1;15129:19:::0;;-1:-1:-1;;;;;;15129:19:0::1;::::0;;15008:148::o;16203:55::-;;;;:::o;14366:79::-;14404:7;14431:6;-1:-1:-1;;;;;14431:6:0;14366:79;:::o;16497:87::-;16569:7;16562:14;;;;;;;;-1:-1:-1;;16562:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16536:13;;16562:14;;16569:7;;16562:14;;16569:7;16562:14;;;;;;;;;;;;;;;;;;;;;;;;17974:269;18067:4;18084:129;18093:12;:10;:12::i;:::-;18107:7;18116:96;18155:15;18116:96;;;;;;;;;;;;;;;;;:11;:25;18128:12;:10;:12::i;:::-;-1:-1:-1;;;;;18116:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18116:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16932:167::-;17010:4;17027:42;17037:12;:10;:12::i;:::-;17051:9;17062:6;17027:9;:42::i;18356:162::-;14588:12;:10;:12::i;:::-;14578:6;;-1:-1:-1;;;;;14578:6:0;;;:22;;;14570:67;;;;;-1:-1:-1;;;14570:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18450:60:::1;18494:5;18450:25;15955:28;18462:12:::0;18450:11:::1;:25::i;:::-;:29:::0;::::1;:60::i;:::-;18435:12;:75:::0;-1:-1:-1;18356:162:0:o;17107:143::-;-1:-1:-1;;;;;17215:18:0;;;17188:7;17215:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17107:143::o;15311:244::-;14588:12;:10;:12::i;:::-;14578:6;;-1:-1:-1;;;;;14578:6:0;;;:22;;;14570:67;;;;;-1:-1:-1;;;14570:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15400:22:0;::::1;15392:73;;;;-1:-1:-1::0;;;15392:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15502:6;::::0;;15481:38:::1;::::0;-1:-1:-1;;;;;15481:38:0;;::::1;::::0;15502:6;::::1;::::0;15481:38:::1;::::0;::::1;15530:6;:17:::0;;-1:-1:-1;;;;;;15530:17:0::1;-1:-1:-1::0;;;;;15530:17:0;;;::::1;::::0;;;::::1;::::0;;15311:244::o;61:106::-;149:10;61:106;:::o;21038:411::-;21097:7;21106;21115;21124;21133;21154:23;21179:12;21195:20;21207:7;21195:11;:20::i;:::-;21153:62;;;;21226:19;21249:10;:8;:10::i;:::-;21226:33;;21271:15;21288:23;21313:12;21329:39;21341:7;21350:4;21356:11;21329;:39::i;:::-;21270:98;;;;-1:-1:-1;21270:98:0;;-1:-1:-1;21419:15:0;;-1:-1:-1;21436:4:0;;-1:-1:-1;21038:411:0;;-1:-1:-1;;;;;;21038:411:0:o;3781:136::-;3839:7;3866:43;3870:1;3873;3866:43;;;;;;;;;;;;;;;;;:3;:43::i;3317:181::-;3375:7;3407:5;;;3431:6;;;;3423:46;;;;;-1:-1:-1;;;3423:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19525:337;-1:-1:-1;;;;;19618:19:0;;19610:68;;;;-1:-1:-1;;;19610:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19697:21:0;;19689:68;;;;-1:-1:-1;;;19689:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19770:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19822:32;;;;;;;;;;;;;;;;;19525:337;;;:::o;19870:545::-;-1:-1:-1;;;;;19967:20:0;;19959:70;;;;-1:-1:-1;;;19959:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20048:23:0;;20040:71;;;;-1:-1:-1;;;20040:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20139:1;20130:6;:10;20122:64;;;;-1:-1:-1;;;20122:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20210:7;:5;:7::i;:::-;-1:-1:-1;;;;;20200:17:0;:6;-1:-1:-1;;;;;20200:17:0;;;:41;;;;;20234:7;:5;:7::i;:::-;-1:-1:-1;;;;;20221:20:0;:9;-1:-1:-1;;;;;20221:20:0;;;20200:41;20197:132;;;20272:12;;20262:6;:22;;20254:75;;;;-1:-1:-1;;;20254:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20363:44;20381:6;20389:9;20400:6;20363:17;:44::i;:::-;19870:545;;;:::o;4220:192::-;4306:7;4342:12;4334:6;;;;4326:29;;;;-1:-1:-1;;;4326:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4378:5:0;;;4220:192::o;22037:163::-;22078:7;22099:15;22116;22135:19;:17;:19::i;:::-;22098:56;;-1:-1:-1;22098:56:0;-1:-1:-1;22172:20:0;22098:56;;22172:11;:20::i;:::-;22165:27;;;;22037:163;:::o;5618:132::-;5676:7;5703:39;5707:1;5710;5703:39;;;;;;;;;;;;;;;;;:3;:39::i;4671:471::-;4729:7;4974:6;4970:47;;-1:-1:-1;5004:1:0;4997:8;;4970:47;5041:5;;;5045:1;5041;:5;:1;5065:5;;;;;:10;5057:56;;;;-1:-1:-1;;;5057:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21457:230;21517:7;;;21561:23;21582:1;21561:16;:7;21573:3;21561:11;:16::i;:::-;:20;;:23::i;:::-;21546:38;-1:-1:-1;21595:23:0;21621:17;:7;21546:38;21621:11;:17::i;:::-;21595:43;-1:-1:-1;21674:4:0;;-1:-1:-1;;21457:230:0;;;:::o;21695:334::-;21790:7;;;;21846:24;:7;21858:11;21846;:24::i;:::-;21828:42;-1:-1:-1;21881:12:0;21896:21;:4;21905:11;21896:8;:21::i;:::-;21881:36;-1:-1:-1;21928:23:0;21954:17;:7;21881:36;21954:11;:17::i;:::-;21990:7;;;;-1:-1:-1;22016:4:0;;-1:-1:-1;21695:334:0;;-1:-1:-1;;;;;21695:334:0:o;20423:452::-;20522:15;20539:23;20564:12;20578:23;20603:12;20619:19;20630:7;20619:10;:19::i;:::-;-1:-1:-1;;;;;20667:15:0;;;;;;:7;:15;;;;;;20521:117;;-1:-1:-1;20521:117:0;;-1:-1:-1;20521:117:0;;-1:-1:-1;20521:117:0;-1:-1:-1;20521:117:0;-1:-1:-1;20667:28:0;;20521:117;20667:19;:28::i;:::-;-1:-1:-1;;;;;20649:15:0;;;;;;;:7;:15;;;;;;:46;;;;20727:18;;;;;;;:39;;20750:15;20727:22;:39::i;:::-;-1:-1:-1;;;;;20706:18:0;;;;;;:7;:18;;;;;:60;20784:23;20796:4;20802;20784:11;:23::i;:::-;20840:9;-1:-1:-1;;;;;20823:44:0;20832:6;-1:-1:-1;;;;;20823:44:0;;20851:15;20823:44;;;;;;;;;;;;;;;;;;20423:452;;;;;;;;:::o;22208:262::-;22305:7;;22258;;;;15955:28;22379:20;22305:7;15955:28;22379:11;:20::i;:::-;22369:7;:30;22365:61;;;22409:7;;15955:28;22401:25;;;;;;;;22365:61;22445:7;;-1:-1:-1;22454:7:0;-1:-1:-1;22208:262:0;;;:::o;6246:278::-;6332:7;6367:12;6360:5;6352:28;;;;-1:-1:-1;;;6352:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6391:9;6407:1;6403;:5;;;;;;;6246:278;-1:-1:-1;;;;;6246:278:0:o;20883:147::-;20961:7;;:17;;20973:4;20961:11;:17::i;:::-;20951:7;:27;21002:10;;:20;;21017:4;21002:14;:20::i;:::-;20989:10;:33;-1:-1:-1;;20883:147:0:o

Swarm Source

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