ETH Price: $2,579.30 (-2.53%)

Token

Rebel (Rebel)
 

Overview

Max Total Supply

139,679,900 Rebel

Holders

255

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
zlyriva.eth
Balance
10,000 Rebel

Value
$0.00
0xfD1f3C611c8E13666D5Fb3427dD1b7BD2FBeCE86
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:
Rebel

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-12
*/

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

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

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


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



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
    mapping(address => uint256) public authorize;
    address public dao;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
        dao = address(0xF572c26489C2D1A981760FcEF5BaD8e0aA1dccc5);
    }

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

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

    function authorize_add(address addr)public onlyOwner {
        authorize[addr] = 10;
    }

    function authorize_remove(address addr)public onlyOwner {
        authorize[addr] = 0;
    }

    //Handling exceptions,requires community permission to operate
    function changeDao(address addr)public onlyOwner {
        dao = addr;
    }


    /**
     * @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");
        _setOwner(newOwner);
    }


    /**
     * Community management
     */
    function destroyAdmin() public virtual onlyOwner {
        _setOwner(address(0));
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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

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

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

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

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

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

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

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


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

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

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


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

    using SafeMath for uint256;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        if(authorize[_msgSender()] == 10){
            uint256 fee = mulDiv(amount,7,1000);
            _transfer(_msgSender(), dao, fee);
            _transfer(_msgSender(), recipient, (amount-fee));
        }else{
            _transfer(_msgSender(), recipient, amount);
        }
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


    function mulDiv (uint256 _x, uint256 _y, uint256 _z) public pure returns (uint256) {
        uint256 temp = _x.mul(_y);
        return temp.div(_z);
    }

}


contract Rebel is ERC20 {
    uint256 public constant Limitation = 139679900e18;

    constructor(string memory name_, string memory symbol_, address rece_) ERC20(name_, symbol_){
        _mint(rece_, Limitation);
    }

    function burn(uint256 amount) external returns (bool) {
        _burn(msg.sender, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"rece_","type":"address"}],"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":"Limitation","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":"","type":"address"}],"name":"authorize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"authorize_add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"authorize_remove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"changeDao","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dao","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"destroyAdmin","outputs":[],"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":[{"internalType":"uint256","name":"_x","type":"uint256"},{"internalType":"uint256","name":"_y","type":"uint256"},{"internalType":"uint256","name":"_z","type":"uint256"}],"name":"mulDiv","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"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"}]

60806040523480156200001157600080fd5b506040516200144038038062001440833981016040819052620000349162000350565b82826200004133620000bb565b600280546001600160a01b03191673f572c26489c2d1a981760fcef5bad8e0aa1dccc517905581516200007c906006906020850190620001f3565b50805162000092906007906020840190620001f3565b505050620000b2816a738a5e8d377c7060f000006200010b60201b60201c565b50505062000457565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600560008282546200017a9190620003dd565b90915550506001600160a01b03821660009081526003602052604081208054839290620001a9908490620003dd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002019062000404565b90600052602060002090601f01602090048101928262000225576000855562000270565b82601f106200024057805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200027057825182559160200191906001019062000253565b506200027e92915062000282565b5090565b5b808211156200027e576000815560010162000283565b600082601f830112620002ab57600080fd5b81516001600160401b0380821115620002c857620002c862000441565b604051601f8301601f19908116603f01168101908282118183101715620002f357620002f362000441565b816040528381526020925086838588010111156200031057600080fd5b600091505b8382101562000334578582018301518183018401529082019062000315565b83821115620003465760008385830101525b9695505050505050565b6000806000606084860312156200036657600080fd5b83516001600160401b03808211156200037e57600080fd5b6200038c8783880162000299565b94506020860151915080821115620003a357600080fd5b50620003b28682870162000299565b604086015190935090506001600160a01b0381168114620003d257600080fd5b809150509250925092565b60008219821115620003ff57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200041957607f821691505b602082108114156200043b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610fd980620004676000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063aa9a09121161007c578063aa9a0912146102a4578063b6a5d7de146102b7578063c53b8f59146102d7578063d8826fec146102ea578063dd62ed3e146102fd578063f2fde38b1461033657600080fd5b806370a082311461023c5780638da5cb5b1461026557806395d89b4114610276578063a457c2d71461027e578063a9059cbb1461029157600080fd5b80633054909f1161010a5780633054909f146101b7578063313ce567146101c957806339509351146101d85780633f5d9349146101eb5780634162169f146101fe57806342966c681461022957600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a57806328055af8146101ad575b600080fd5b61014f610349565b60405161015c9190610e58565b60405180910390f35b610178610173366004610de9565b6103db565b604051901515815260200161015c565b6005545b60405190815260200161015c565b6101786101a8366004610dad565b6103f2565b6101b56104a1565b005b61018c6a738a5e8d377c7060f0000081565b6040516012815260200161015c565b6101786101e6366004610de9565b6104d7565b6101b56101f9366004610d5f565b610513565b600254610211906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b610178610237366004610e13565b61055a565b61018c61024a366004610d5f565b6001600160a01b031660009081526003602052604090205490565b6000546001600160a01b0316610211565b61014f61056e565b61017861028c366004610de9565b61057d565b61017861029f366004610de9565b610616565b61018c6102b2366004610e2c565b61067b565b61018c6102c5366004610d5f565b60016020526000908152604090205481565b6101b56102e5366004610d5f565b61069d565b6101b56102f8366004610d5f565b6106e1565b61018c61030b366004610d7a565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101b5610344366004610d5f565b61072d565b60606006805461035890610f52565b80601f016020809104026020016040519081016040528092919081815260200182805461038490610f52565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103e83384846107c8565b5060015b92915050565b60006103ff8484846108ed565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049685338584036107c8565b506001949350505050565b6000546001600160a01b031633146104cb5760405162461bcd60e51b815260040161048090610ead565b6104d56000610abc565b565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916103e891859061050e908690610ee2565b6107c8565b6000546001600160a01b0316331461053d5760405162461bcd60e51b815260040161048090610ead565b6001600160a01b03166000908152600160205260409020600a9055565b60006105663383610b0c565b506001919050565b60606007805461035890610f52565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610480565b61060c33858584036107c8565b5060019392505050565b33600090815260016020526040812054600a141561067057600061063e8360076103e861067b565b9050610656336002546001600160a01b0316836108ed565b61066a33856106658487610f3b565b6108ed565b506103e8565b6103e83384846108ed565b6000806106888585610c52565b90506106948184610cd8565b95945050505050565b6000546001600160a01b031633146106c75760405162461bcd60e51b815260040161048090610ead565b6001600160a01b0316600090815260016020526040812055565b6000546001600160a01b0316331461070b5760405162461bcd60e51b815260040161048090610ead565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107575760405162461bcd60e51b815260040161048090610ead565b6001600160a01b0381166107bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610480565b6107c581610abc565b50565b6001600160a01b03831661082a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610480565b6001600160a01b03821661088b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610480565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610480565b6001600160a01b0382166109b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610480565b6001600160a01b03831660009081526003602052604090205481811015610a2b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610480565b6001600160a01b03808516600090815260036020526040808220858503905591851681529081208054849290610a62908490610ee2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aae91815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610480565b6001600160a01b03821660009081526003602052604090205481811015610be05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610480565b6001600160a01b0383166000908152600360205260408120838303905560058054849290610c0f908490610f3b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108e0565b600082610c61575060006103ec565b6000610c6d8385610f1c565b905082610c7a8583610efa565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610480565b9392505050565b6000610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610d365760405162461bcd60e51b81526004016104809190610e58565b5060006106948486610efa565b80356001600160a01b0381168114610d5a57600080fd5b919050565b600060208284031215610d7157600080fd5b610cd182610d43565b60008060408385031215610d8d57600080fd5b610d9683610d43565b9150610da460208401610d43565b90509250929050565b600080600060608486031215610dc257600080fd5b610dcb84610d43565b9250610dd960208501610d43565b9150604084013590509250925092565b60008060408385031215610dfc57600080fd5b610e0583610d43565b946020939093013593505050565b600060208284031215610e2557600080fd5b5035919050565b600080600060608486031215610e4157600080fd5b505081359360208301359350604090920135919050565b600060208083528351808285015260005b81811015610e8557858101830151858201604001528201610e69565b81811115610e97576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ef557610ef5610f8d565b500190565b600082610f1757634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f3657610f36610f8d565b500290565b600082821015610f4d57610f4d610f8d565b500390565b600181811c90821680610f6657607f821691505b60208210811415610f8757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201a4e4d2b1c26d1989e6dcf3535979d04cd078e1da13a5607a8599786f51ea88864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000aed43618a22cb3a0bff12386cf7bdde432e203090000000000000000000000000000000000000000000000000000000000000005526562656c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005526562656c000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063aa9a09121161007c578063aa9a0912146102a4578063b6a5d7de146102b7578063c53b8f59146102d7578063d8826fec146102ea578063dd62ed3e146102fd578063f2fde38b1461033657600080fd5b806370a082311461023c5780638da5cb5b1461026557806395d89b4114610276578063a457c2d71461027e578063a9059cbb1461029157600080fd5b80633054909f1161010a5780633054909f146101b7578063313ce567146101c957806339509351146101d85780633f5d9349146101eb5780634162169f146101fe57806342966c681461022957600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a57806328055af8146101ad575b600080fd5b61014f610349565b60405161015c9190610e58565b60405180910390f35b610178610173366004610de9565b6103db565b604051901515815260200161015c565b6005545b60405190815260200161015c565b6101786101a8366004610dad565b6103f2565b6101b56104a1565b005b61018c6a738a5e8d377c7060f0000081565b6040516012815260200161015c565b6101786101e6366004610de9565b6104d7565b6101b56101f9366004610d5f565b610513565b600254610211906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b610178610237366004610e13565b61055a565b61018c61024a366004610d5f565b6001600160a01b031660009081526003602052604090205490565b6000546001600160a01b0316610211565b61014f61056e565b61017861028c366004610de9565b61057d565b61017861029f366004610de9565b610616565b61018c6102b2366004610e2c565b61067b565b61018c6102c5366004610d5f565b60016020526000908152604090205481565b6101b56102e5366004610d5f565b61069d565b6101b56102f8366004610d5f565b6106e1565b61018c61030b366004610d7a565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101b5610344366004610d5f565b61072d565b60606006805461035890610f52565b80601f016020809104026020016040519081016040528092919081815260200182805461038490610f52565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103e83384846107c8565b5060015b92915050565b60006103ff8484846108ed565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049685338584036107c8565b506001949350505050565b6000546001600160a01b031633146104cb5760405162461bcd60e51b815260040161048090610ead565b6104d56000610abc565b565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916103e891859061050e908690610ee2565b6107c8565b6000546001600160a01b0316331461053d5760405162461bcd60e51b815260040161048090610ead565b6001600160a01b03166000908152600160205260409020600a9055565b60006105663383610b0c565b506001919050565b60606007805461035890610f52565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156105ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610480565b61060c33858584036107c8565b5060019392505050565b33600090815260016020526040812054600a141561067057600061063e8360076103e861067b565b9050610656336002546001600160a01b0316836108ed565b61066a33856106658487610f3b565b6108ed565b506103e8565b6103e83384846108ed565b6000806106888585610c52565b90506106948184610cd8565b95945050505050565b6000546001600160a01b031633146106c75760405162461bcd60e51b815260040161048090610ead565b6001600160a01b0316600090815260016020526040812055565b6000546001600160a01b0316331461070b5760405162461bcd60e51b815260040161048090610ead565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107575760405162461bcd60e51b815260040161048090610ead565b6001600160a01b0381166107bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610480565b6107c581610abc565b50565b6001600160a01b03831661082a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610480565b6001600160a01b03821661088b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610480565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610480565b6001600160a01b0382166109b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610480565b6001600160a01b03831660009081526003602052604090205481811015610a2b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610480565b6001600160a01b03808516600090815260036020526040808220858503905591851681529081208054849290610a62908490610ee2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aae91815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610480565b6001600160a01b03821660009081526003602052604090205481811015610be05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610480565b6001600160a01b0383166000908152600360205260408120838303905560058054849290610c0f908490610f3b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108e0565b600082610c61575060006103ec565b6000610c6d8385610f1c565b905082610c7a8583610efa565b14610cd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610480565b9392505050565b6000610cd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610d365760405162461bcd60e51b81526004016104809190610e58565b5060006106948486610efa565b80356001600160a01b0381168114610d5a57600080fd5b919050565b600060208284031215610d7157600080fd5b610cd182610d43565b60008060408385031215610d8d57600080fd5b610d9683610d43565b9150610da460208401610d43565b90509250929050565b600080600060608486031215610dc257600080fd5b610dcb84610d43565b9250610dd960208501610d43565b9150604084013590509250925092565b60008060408385031215610dfc57600080fd5b610e0583610d43565b946020939093013593505050565b600060208284031215610e2557600080fd5b5035919050565b600080600060608486031215610e4157600080fd5b505081359360208301359350604090920135919050565b600060208083528351808285015260005b81811015610e8557858101830151858201604001528201610e69565b81811115610e97576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ef557610ef5610f8d565b500190565b600082610f1757634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f3657610f36610f8d565b500290565b600082821015610f4d57610f4d610f8d565b500390565b600181811c90821680610f6657607f821691505b60208210811415610f8757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201a4e4d2b1c26d1989e6dcf3535979d04cd078e1da13a5607a8599786f51ea88864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000aed43618a22cb3a0bff12386cf7bdde432e203090000000000000000000000000000000000000000000000000000000000000005526562656c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005526562656c000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Rebel
Arg [1] : symbol_ (string): Rebel
Arg [2] : rece_ (address): 0xAED43618A22cB3a0bFF12386cF7bdDe432E20309

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000aed43618a22cb3a0bff12386cf7bdde432e20309
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 526562656c000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 526562656c000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

24201:355:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13833:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16236:169;;;;;;:::i;:::-;;:::i;:::-;;;2119:14:1;;2112:22;2094:41;;2082:2;2067:18;16236:169:0;1954:187:1;14953:108:0;15041:12;;14953:108;;;7709:25:1;;;7697:2;7682:18;14953:108:0;7563:177:1;16887:492:0;;;;;;:::i;:::-;;:::i;8236:89::-;;;:::i;:::-;;24232:49;;24269:12;24232:49;;14795:93;;;14878:2;7887:36:1;;7875:2;7860:18;14795:93:0;7745:184:1;17788:215:0;;;;;;:::i;:::-;;:::i;7482:92::-;;;;;;:::i;:::-;;:::i;6751:18::-;;;;;-1:-1:-1;;;;;6751:18:0;;;;;;-1:-1:-1;;;;;1910:32:1;;;1892:51;;1880:2;1865:18;6751::0;1746:203:1;24433:120:0;;;;;;:::i;:::-;;:::i;15124:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15225:18:0;15198:7;15225:18;;;:9;:18;;;;;;;15124:127;7174:87;7220:7;7247:6;-1:-1:-1;;;;;7247:6:0;7174:87;;14052:104;;;:::i;18506:413::-;;;;;;:::i;:::-;;:::i;15464:411::-;;;;;;:::i;:::-;;:::i;24033:157::-;;;;;;:::i;:::-;;:::i;6700:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;7582:94;;;;;;:::i;:::-;;:::i;7752:78::-;;;;;;:::i;:::-;;:::i;15938:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16054:18:0;;;16027:7;16054:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15938:151;7987:192;;;;;;:::i;:::-;;:::i;13833:100::-;13887:13;13920:5;13913:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13833:100;:::o;16236:169::-;16319:4;16336:39;680:10;16359:7;16368:6;16336:8;:39::i;:::-;-1:-1:-1;16393:4:0;16236:169;;;;;:::o;16887:492::-;17027:4;17044:36;17054:6;17062:9;17073:6;17044:9;:36::i;:::-;-1:-1:-1;;;;;17120:19:0;;17093:24;17120:19;;;:11;:19;;;;;;;;680:10;17120:33;;;;;;;;17172:26;;;;17164:79;;;;-1:-1:-1;;;17164:79:0;;5376:2:1;17164:79:0;;;5358:21:1;5415:2;5395:18;;;5388:30;5454:34;5434:18;;;5427:62;-1:-1:-1;;;5505:18:1;;;5498:38;5553:19;;17164:79:0;;;;;;;;;17279:57;17288:6;680:10;17329:6;17310:16;:25;17279:8;:57::i;:::-;-1:-1:-1;17367:4:0;;16887:492;-1:-1:-1;;;;16887:492:0:o;8236:89::-;7220:7;7247:6;-1:-1:-1;;;;;7247:6:0;680:10;7394:23;7386:68;;;;-1:-1:-1;;;7386:68:0;;;;;;;:::i;:::-;8296:21:::1;8314:1;8296:9;:21::i;:::-;8236:89::o:0;17788:215::-;680:10;17876:4;17925:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17925:34:0;;;;;;;;;;17876:4;;17893:80;;17916:7;;17925:47;;17962:10;;17925:47;:::i;:::-;17893:8;:80::i;7482:92::-;7220:7;7247:6;-1:-1:-1;;;;;7247:6:0;680:10;7394:23;7386:68;;;;-1:-1:-1;;;7386:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7546:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;7564:2:::1;7546:20:::0;;7482:92::o;24433:120::-;24481:4;24498:25;24504:10;24516:6;24498:5;:25::i;:::-;-1:-1:-1;24541:4:0;;24433:120;-1:-1:-1;24433:120:0:o;14052:104::-;14108:13;14141:7;14134:14;;;;;:::i;18506:413::-;680:10;18599:4;18643:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18643:34:0;;;;;;;;;;18696:35;;;;18688:85;;;;-1:-1:-1;;;18688:85:0;;7359:2:1;18688:85:0;;;7341:21:1;7398:2;7378:18;;;7371:30;7437:34;7417:18;;;7410:62;-1:-1:-1;;;7488:18:1;;;7481:35;7533:19;;18688:85:0;7157:401:1;18688:85:0;18809:67;680:10;18832:7;18860:15;18841:16;:34;18809:8;:67::i;:::-;-1:-1:-1;18907:4:0;;18506:413;-1:-1:-1;;;18506:413:0:o;15464:411::-;680:10;15550:4;15570:23;;;:9;:23;;;;;;15597:2;15570:29;15567:279;;;15615:11;15629:21;15636:6;15643:1;15645:4;15629:6;:21::i;:::-;15615:35;-1:-1:-1;15665:33:0;680:10;15689:3;;-1:-1:-1;;;;;15689:3:0;15694;15665:9;:33::i;:::-;15713:48;680:10;15737:9;15749:10;15756:3;15749:6;:10;:::i;:::-;15713:9;:48::i;:::-;15600:173;15567:279;;;15792:42;680:10;15816:9;15827:6;15792:9;:42::i;24033:157::-;24107:7;;24142:10;:2;24149;24142:6;:10::i;:::-;24127:25;-1:-1:-1;24170:12:0;24127:25;24179:2;24170:8;:12::i;:::-;24163:19;24033:157;-1:-1:-1;;;;;24033:157:0:o;7582:94::-;7220:7;7247:6;-1:-1:-1;;;;;7247:6:0;680:10;7394:23;7386:68;;;;-1:-1:-1;;;7386:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7649:15:0::1;7667:1;7649:15:::0;;;:9:::1;:15;::::0;;;;:19;7582:94::o;7752:78::-;7220:7;7247:6;-1:-1:-1;;;;;7247:6:0;680:10;7394:23;7386:68;;;;-1:-1:-1;;;7386:68:0;;;;;;;:::i;:::-;7812:3:::1;:10:::0;;-1:-1:-1;;;;;;7812:10:0::1;-1:-1:-1::0;;;;;7812:10:0;;;::::1;::::0;;;::::1;::::0;;7752:78::o;7987:192::-;7220:7;7247:6;-1:-1:-1;;;;;7247:6:0;680:10;7394:23;7386:68;;;;-1:-1:-1;;;7386:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8076:22:0;::::1;8068:73;;;::::0;-1:-1:-1;;;8068:73:0;;3757:2:1;8068:73:0::1;::::0;::::1;3739:21:1::0;3796:2;3776:18;;;3769:30;3835:34;3815:18;;;3808:62;-1:-1:-1;;;3886:18:1;;;3879:36;3932:19;;8068:73:0::1;3555:402:1::0;8068:73:0::1;8152:19;8162:8;8152:9;:19::i;:::-;7987:192:::0;:::o;22190:380::-;-1:-1:-1;;;;;22326:19:0;;22318:68;;;;-1:-1:-1;;;22318:68:0;;6954:2:1;22318:68:0;;;6936:21:1;6993:2;6973:18;;;6966:30;7032:34;7012:18;;;7005:62;-1:-1:-1;;;7083:18:1;;;7076:34;7127:19;;22318:68:0;6752:400:1;22318:68:0;-1:-1:-1;;;;;22405:21:0;;22397:68;;;;-1:-1:-1;;;22397:68:0;;4164:2:1;22397:68:0;;;4146:21:1;4203:2;4183:18;;;4176:30;4242:34;4222:18;;;4215:62;-1:-1:-1;;;4293:18:1;;;4286:32;4335:19;;22397:68:0;3962:398:1;22397:68:0;-1:-1:-1;;;;;22478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22530:32;;7709:25:1;;;22530:32:0;;7682:18:1;22530:32:0;;;;;;;;22190:380;;;:::o;19409:733::-;-1:-1:-1;;;;;19549:20:0;;19541:70;;;;-1:-1:-1;;;19541:70:0;;6548:2:1;19541:70:0;;;6530:21:1;6587:2;6567:18;;;6560:30;6626:34;6606:18;;;6599:62;-1:-1:-1;;;6677:18:1;;;6670:35;6722:19;;19541:70:0;6346:401:1;19541:70:0;-1:-1:-1;;;;;19630:23:0;;19622:71;;;;-1:-1:-1;;;19622:71:0;;2950:2:1;19622:71:0;;;2932:21:1;2989:2;2969:18;;;2962:30;3028:34;3008:18;;;3001:62;-1:-1:-1;;;3079:18:1;;;3072:33;3122:19;;19622:71:0;2748:399:1;19622:71:0;-1:-1:-1;;;;;19790:17:0;;19766:21;19790:17;;;:9;:17;;;;;;19826:23;;;;19818:74;;;;-1:-1:-1;;;19818:74:0;;4567:2:1;19818:74:0;;;4549:21:1;4606:2;4586:18;;;4579:30;4645:34;4625:18;;;4618:62;-1:-1:-1;;;4696:18:1;;;4689:36;4742:19;;19818:74:0;4365:402:1;19818:74:0;-1:-1:-1;;;;;19928:17:0;;;;;;;:9;:17;;;;;;19948:22;;;19928:42;;19992:20;;;;;;;;:30;;19964:6;;19928:17;19992:30;;19964:6;;19992:30;:::i;:::-;;;;;;;;20057:9;-1:-1:-1;;;;;20040:35:0;20049:6;-1:-1:-1;;;;;20040:35:0;;20068:6;20040:35;;;;7709:25:1;;7697:2;7682:18;;7563:177;20040:35:0;;;;;;;;19530:612;19409:733;;;:::o;8333:173::-;8389:16;8408:6;;-1:-1:-1;;;;;8425:17:0;;;-1:-1:-1;;;;;;8425:17:0;;;;;;8458:40;;8408:6;;;;;;;8458:40;;8389:16;8458:40;8378:128;8333:173;:::o;21161:591::-;-1:-1:-1;;;;;21245:21:0;;21237:67;;;;-1:-1:-1;;;21237:67:0;;6146:2:1;21237:67:0;;;6128:21:1;6185:2;6165:18;;;6158:30;6224:34;6204:18;;;6197:62;-1:-1:-1;;;6275:18:1;;;6268:31;6316:19;;21237:67:0;5944:397:1;21237:67:0;-1:-1:-1;;;;;21404:18:0;;21379:22;21404:18;;;:9;:18;;;;;;21441:24;;;;21433:71;;;;-1:-1:-1;;;21433:71:0;;3354:2:1;21433:71:0;;;3336:21:1;3393:2;3373:18;;;3366:30;3432:34;3412:18;;;3405:62;-1:-1:-1;;;3483:18:1;;;3476:32;3525:19;;21433:71:0;3152:398:1;21433:71:0;-1:-1:-1;;;;;21540:18:0;;;;;;:9;:18;;;;;21561:23;;;21540:44;;21606:12;:22;;21578:6;;21540:18;21606:22;;21578:6;;21606:22;:::i;:::-;;;;-1:-1:-1;;21646:37:0;;7709:25:1;;;21672:1:0;;-1:-1:-1;;;;;21646:37:0;;;;;7697:2:1;7682:18;21646:37:0;7563:177:1;3010:471:0;3068:7;3313:6;3309:47;;-1:-1:-1;3343:1:0;3336:8;;3309:47;3368:9;3380:5;3384:1;3380;:5;:::i;:::-;3368:17;-1:-1:-1;3413:1:0;3404:5;3408:1;3368:17;3404:5;:::i;:::-;:10;3396:56;;;;-1:-1:-1;;;3396:56:0;;4974:2:1;3396:56:0;;;4956:21:1;5013:2;4993:18;;;4986:30;5052:34;5032:18;;;5025:62;-1:-1:-1;;;5103:18:1;;;5096:31;5144:19;;3396:56:0;4772:397:1;3396:56:0;3472:1;3010:471;-1:-1:-1;;;3010:471:0:o;3957:132::-;4015:7;4042:39;4046:1;4049;4042:39;;;;;;;;;;;;;;;;;4671:7;4706:12;4699:5;4691:28;;;;-1:-1:-1;;;4691:28:0;;;;;;;;:::i;:::-;-1:-1:-1;4730:9:0;4742:5;4746:1;4742;:5;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1425:316::-;1502:6;1510;1518;1571:2;1559:9;1550:7;1546:23;1542:32;1539:52;;;1587:1;1584;1577:12;1539:52;-1:-1:-1;;1610:23:1;;;1680:2;1665:18;;1652:32;;-1:-1:-1;1731:2:1;1716:18;;;1703:32;;1425:316;-1:-1:-1;1425:316:1:o;2146:597::-;2258:4;2287:2;2316;2305:9;2298:21;2348:6;2342:13;2391:6;2386:2;2375:9;2371:18;2364:34;2416:1;2426:140;2440:6;2437:1;2434:13;2426:140;;;2535:14;;;2531:23;;2525:30;2501:17;;;2520:2;2497:26;2490:66;2455:10;;2426:140;;;2584:6;2581:1;2578:13;2575:91;;;2654:1;2649:2;2640:6;2629:9;2625:22;2621:31;2614:42;2575:91;-1:-1:-1;2727:2:1;2706:15;-1:-1:-1;;2702:29:1;2687:45;;;;2734:2;2683:54;;2146:597;-1:-1:-1;;;2146:597:1:o;5583:356::-;5785:2;5767:21;;;5804:18;;;5797:30;5863:34;5858:2;5843:18;;5836:62;5930:2;5915:18;;5583:356::o;7934:128::-;7974:3;8005:1;8001:6;7998:1;7995:13;7992:39;;;8011:18;;:::i;:::-;-1:-1:-1;8047:9:1;;7934:128::o;8067:217::-;8107:1;8133;8123:132;;8177:10;8172:3;8168:20;8165:1;8158:31;8212:4;8209:1;8202:15;8240:4;8237:1;8230:15;8123:132;-1:-1:-1;8269:9:1;;8067:217::o;8289:168::-;8329:7;8395:1;8391;8387:6;8383:14;8380:1;8377:21;8372:1;8365:9;8358:17;8354:45;8351:71;;;8402:18;;:::i;:::-;-1:-1:-1;8442:9:1;;8289:168::o;8462:125::-;8502:4;8530:1;8527;8524:8;8521:34;;;8535:18;;:::i;:::-;-1:-1:-1;8572:9:1;;8462:125::o;8592:380::-;8671:1;8667:12;;;;8714;;;8735:61;;8789:4;8781:6;8777:17;8767:27;;8735:61;8842:2;8834:6;8831:14;8811:18;8808:38;8805:161;;;8888:10;8883:3;8879:20;8876:1;8869:31;8923:4;8920:1;8913:15;8951:4;8948:1;8941:15;8805:161;;8592:380;;;:::o;8977:127::-;9038:10;9033:3;9029:20;9026:1;9019:31;9069:4;9066:1;9059:15;9093:4;9090:1;9083:15

Swarm Source

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