ETH Price: $2,421.69 (+0.01%)

Token

TUnamano (TUNA)
 

Overview

Max Total Supply

100,000,000,000 TUNA

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
124,557.87767592 TUNA

Value
$0.00
0x1f9d77f7b96b7b6d05717ca7d0c99b7d89e797e3
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:
UnamanoERC20

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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

/**
 * @dev Collection of functions related to the address type
 */
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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

/**
 * @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 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 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.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

/**
 * @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 guidelines: functions revert instead
 * of 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 UnamanoERC20 is Ownable, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    mapping (address => uint8) private _exchanges;
    mapping (address => uint8) private _operators;
    mapping (address => bool) public isBlackListed;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address public feeAddress;
    address public multisignatureWallet;

    event AddedBlackList(address _user);
    event RemovedBlackList(address _user);

    modifier onlyOperator() {
        require(_operators[msg.sender] == 1, "Not operator");
        _;
    }

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (uint256 amount, string memory tokenName, string memory tokenSymbol, uint8 tokenDecimals, address _feeAddress, address _multisignatureWallet) {
        _name = tokenName;
        _symbol = tokenSymbol;
        _decimals = tokenDecimals;
        address account = _msgSender();
        _beforeTokenTransfer(address(0), account, amount);
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        feeAddress = _feeAddress;
        multisignatureWallet = _multisignatureWallet;
        emit Transfer(address(0), account, amount);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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) {
        _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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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(!isBlackListed[sender], "ERC20: Black address");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        if (_exchanges[recipient] == 1) {
            uint256 amPer = amount.mul(25).div(1000);
            uint256 twoAmPer = amPer.mul(2);
            uint256 newAmount = amount.sub(twoAmPer);
            _balances[recipient] = _balances[recipient].add(newAmount);
            _balances[feeAddress] = _balances[feeAddress].add(amPer);
            _totalSupply = _totalSupply.sub(amPer);
            emit Transfer(sender, recipient, newAmount);
            emit Transfer(sender, address(0), amPer);
            emit Transfer(sender, feeAddress, amPer);
        } else {
            _balances[recipient] = _balances[recipient].add(amount);
            emit Transfer(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
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }

    function addOperator(address _operator) public onlyOwner {
        require(address(this) != _operator, "Do nothing by yourself");
        require(address(0) != _operator, "Zero address");
        _operators[_operator] = 1;
    }

    function removeOperator(address _operator) public onlyOwner {
        delete _operators[_operator];
    }

    function addExchange(address _exchange) external onlyOperator {
        require(_exchange != address(0), "Zero address");
        _exchanges[_exchange] = 1;
    }

    function removeExchange(address _exchange) external onlyOperator {
        require(_exchange != address(0), "Zero address");
        _exchanges[_exchange] = 0;
    }

    function editFeeAddress(address _feeAddress) external {
        require(multisignatureWallet == msg.sender, "Denied.");
        require(_feeAddress != address(0), "Zero address");
        feeAddress = _feeAddress;
    }

    function getBlackListStatus(address _maker) external view returns (bool) {
        return isBlackListed[_maker];
    }

    function addBlackList (address _evilUser) public onlyOperator {
        isBlackListed[_evilUser] = true;
        emit AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOperator {
        isBlackListed[_clearedUser] = false;
        emit RemovedBlackList(_clearedUser);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint8","name":"tokenDecimals","type":"uint8"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"address","name":"_multisignatureWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exchange","type":"address"}],"name":"addExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"addOperator","outputs":[],"stateMutability":"nonpayable","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":"_feeAddress","type":"address"}],"name":"editFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multisignatureWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exchange","type":"address"}],"name":"removeExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620018a6380380620018a68339810160408190526200003491620002e6565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600762000083868262000426565b50600862000092858262000426565b506009805460ff191660ff85161790556000620000ac3390565b9050620000ca876006546200019560201b62000a081790919060201c565b6006556001600160a01b038116600090815260016020908152604090912054620000ff91899062000a0862000195821b17901c565b6001600160a01b0382811660008181526001602090815260408083209590955560098054610100600160a81b0319166101008a871602179055600a80546001600160a01b0319169488169490941790935592518a81529092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050505062000514565b505050565b600080620001a48385620004f2565b905083811015620001fb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640160405180910390fd5b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022c57600080fd5b81516001600160401b038082111562000249576200024962000204565b604051601f8301601f19908116603f0116810190828211818310171562000274576200027462000204565b816040528381526020925086838588010111156200029157600080fd5b600091505b83821015620002b5578582018301518183018401529082019062000296565b600093810190920192909252949350505050565b80516001600160a01b0381168114620002e157600080fd5b919050565b60008060008060008060c087890312156200030057600080fd5b865160208801519096506001600160401b03808211156200032057600080fd5b6200032e8a838b016200021a565b965060408901519150808211156200034557600080fd5b506200035489828a016200021a565b945050606087015160ff811681146200036c57600080fd5b92506200037c60808801620002c9565b91506200038c60a08801620002c9565b90509295509295509295565b600181811c90821680620003ad57607f821691505b602082108103620003ce57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019057600081815260208120601f850160051c81016020861015620003fd5750805b601f850160051c820191505b818110156200041e5782815560010162000409565b505050505050565b81516001600160401b0381111562000442576200044262000204565b6200045a8162000453845462000398565b84620003d4565b602080601f831160018114620004925760008415620004795750858301515b600019600386901b1c1916600185901b1785556200041e565b600085815260208120601f198616915b82811015620004c357888601518255948401946001909101908401620004a2565b5085821015620004e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620001fe57634e487b7160e01b600052601160045260246000fd5b61138280620005246000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638e0be369116100c3578063ac8a584a1161007c578063ac8a584a14610310578063dd62ed3e14610323578063e47d60601461035c578063e4997dc51461037f578063f2fde38b14610392578063fbb3e5ca146103a557600080fd5b80638e0be369146102a957806395d89b41146102bc5780639870d7fe146102c4578063a457c2d7146102d7578063a9059cbb146102ea578063aa10ce22146102fd57600080fd5b8063395093511161011557806339509351146101ed578063412753581461020057806359bf1abe1461023057806370a082311461025c57806370c9c791146102855780638da5cb5b1461029857600080fd5b806306fdde031461015d578063095ea7b31461017b5780630ecb93c01461019e57806318160ddd146101b357806323b872dd146101c5578063313ce567146101d8575b600080fd5b6101656103b8565b604051610172919061106b565b60405180910390f35b61018e6101893660046110d5565b61044a565b6040519015158152602001610172565b6101b16101ac3660046110ff565b610461565b005b6006545b604051908152602001610172565b61018e6101d336600461111a565b6104f7565b60095460405160ff9091168152602001610172565b61018e6101fb3660046110d5565b610560565b6009546102189061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610172565b61018e61023e3660046110ff565b6001600160a01b031660009081526005602052604090205460ff1690565b6101b761026a3660046110ff565b6001600160a01b031660009081526001602052604090205490565b6101b16102933660046110ff565b610596565b6000546001600160a01b0316610218565b6101b16102b73660046110ff565b610628565b6101656106a1565b6101b16102d23660046110ff565b6106b0565b61018e6102e53660046110d5565b610778565b61018e6102f83660046110d5565b6107c7565b6101b161030b3660046110ff565b6107d4565b6101b161031e3660046110ff565b610850565b6101b7610331366004611156565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61018e61036a3660046110ff565b60056020526000908152604090205460ff1681565b6101b161038d3660046110ff565b61089b565b6101b16103a03660046110ff565b61091e565b600a54610218906001600160a01b031681565b6060600780546103c790611189565b80601f01602080910402602001604051908101604052809291908181526020018280546103f390611189565b80156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b5050505050905090565b6000610457338484610a6e565b5060015b92915050565b3360009081526004602052604090205460ff1660011461049c5760405162461bcd60e51b8152600401610493906111c3565b60405180910390fd5b6001600160a01b038116600081815260056020908152604091829020805460ff1916600117905590519182527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc91015b60405180910390a150565b6000610504848484610b93565b6105568433610551856040518060600160405280602881526020016112e0602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610efd565b610a6e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104579185906105519086610a08565b600a546001600160a01b031633146105da5760405162461bcd60e51b81526020600482015260076024820152662232b734b2b21760c91b6044820152606401610493565b6001600160a01b0381166106005760405162461bcd60e51b8152600401610493906111e9565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3360009081526004602052604090205460ff1660011461065a5760405162461bcd60e51b8152600401610493906111c3565b6001600160a01b0381166106805760405162461bcd60e51b8152600401610493906111e9565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6060600880546103c790611189565b6000546001600160a01b031633146106da5760405162461bcd60e51b81526004016104939061120f565b6001600160a01b038116300361072b5760405162461bcd60e51b81526020600482015260166024820152752237903737ba3434b73390313c903cb7bab939b2b63360511b6044820152606401610493565b6001600160a01b0381166000036107545760405162461bcd60e51b8152600401610493906111e9565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000610457338461055185604051806060016040528060258152602001611328602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610efd565b6000610457338484610b93565b3360009081526004602052604090205460ff166001146108065760405162461bcd60e51b8152600401610493906111c3565b6001600160a01b03811661082c5760405162461bcd60e51b8152600401610493906111e9565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b0316331461087a5760405162461bcd60e51b81526004016104939061120f565b6001600160a01b03166000908152600460205260409020805460ff19169055565b3360009081526004602052604090205460ff166001146108cd5760405162461bcd60e51b8152600401610493906111c3565b6001600160a01b038116600081815260056020908152604091829020805460ff1916905590519182527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c91016104ec565b6000546001600160a01b031633146109485760405162461bcd60e51b81526004016104939061120f565b6001600160a01b0381166109ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610493565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600080610a15838561125a565b905083811015610a675760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610493565b9392505050565b6001600160a01b038316610ad05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610493565b6001600160a01b038216610b315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610493565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831660009081526005602052604090205460ff1615610bf35760405162461bcd60e51b815260206004820152601460248201527345524332303a20426c61636b206164647265737360601b6044820152606401610493565b6001600160a01b038316610c575760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610493565b6001600160a01b038216610cb95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610493565b610cf6816040518060600160405280602681526020016112ba602691396001600160a01b0386166000908152600160205260409020549190610efd565b6001600160a01b0380851660009081526001602081815260408084209590955592861682526003909252919091205460ff169003610e98576000610d476103e8610d41846019610f37565b90610fb9565b90506000610d56826002610f37565b90506000610d648483610ffb565b6001600160a01b038616600090815260016020526040902054909150610d8a9082610a08565b6001600160a01b0380871660009081526001602052604080822093909355600954610100900490911681522054610dc19084610a08565b60095461010090046001600160a01b0316600090815260016020526040902055600654610dee9084610ffb565b6006556040518181526001600160a01b0380871691908816906000805160206113088339815191529060200160405180910390a36040518381526000906001600160a01b038816906000805160206113088339815191529060200160405180910390a36009546040516001600160a01b0361010090920482169188169060008051602061130883398151915290610e889087815260200190565b60405180910390a3505050505050565b6001600160a01b038216600090815260016020526040902054610ebb9082610a08565b6001600160a01b03808416600081815260016020526040908190209390935591519085169060008051602061130883398151915290610b869085815260200190565b60008184841115610f215760405162461bcd60e51b8152600401610493919061106b565b506000610f2e848661126d565b95945050505050565b600082600003610f495750600061045b565b6000610f558385611280565b905082610f628583611297565b14610a675760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610493565b6000610a6783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061103d565b6000610a6783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610efd565b6000818361105e5760405162461bcd60e51b8152600401610493919061106b565b506000610f2e8486611297565b600060208083528351808285015260005b818110156110985785810183015185820160400152820161107c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110d057600080fd5b919050565b600080604083850312156110e857600080fd5b6110f1836110b9565b946020939093013593505050565b60006020828403121561111157600080fd5b610a67826110b9565b60008060006060848603121561112f57600080fd5b611138846110b9565b9250611146602085016110b9565b9150604084013590509250925092565b6000806040838503121561116957600080fd5b611172836110b9565b9150611180602084016110b9565b90509250929050565b600181811c9082168061119d57607f821691505b6020821081036111bd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b2737ba1037b832b930ba37b960a11b604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561045b5761045b611244565b8181038181111561045b5761045b611244565b808202811582820484141761045b5761045b611244565b6000826112b457634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209175d21e50a8d36f9cecaa19bea5c4060ecea51cb61870c4c10ba51fb2a34e7764736f6c634300081100330000000000000000000000000000000000000000000000008ac7230489e8000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000080000000000000000000000006dd58180318bed107f3cc6158c244d7ca57849c90000000000000000000000002c0e3e45b2b88a3aa843f109f41c208d20d6fefc000000000000000000000000000000000000000000000000000000000000000854556e616d616e6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454554e4100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80638e0be369116100c3578063ac8a584a1161007c578063ac8a584a14610310578063dd62ed3e14610323578063e47d60601461035c578063e4997dc51461037f578063f2fde38b14610392578063fbb3e5ca146103a557600080fd5b80638e0be369146102a957806395d89b41146102bc5780639870d7fe146102c4578063a457c2d7146102d7578063a9059cbb146102ea578063aa10ce22146102fd57600080fd5b8063395093511161011557806339509351146101ed578063412753581461020057806359bf1abe1461023057806370a082311461025c57806370c9c791146102855780638da5cb5b1461029857600080fd5b806306fdde031461015d578063095ea7b31461017b5780630ecb93c01461019e57806318160ddd146101b357806323b872dd146101c5578063313ce567146101d8575b600080fd5b6101656103b8565b604051610172919061106b565b60405180910390f35b61018e6101893660046110d5565b61044a565b6040519015158152602001610172565b6101b16101ac3660046110ff565b610461565b005b6006545b604051908152602001610172565b61018e6101d336600461111a565b6104f7565b60095460405160ff9091168152602001610172565b61018e6101fb3660046110d5565b610560565b6009546102189061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610172565b61018e61023e3660046110ff565b6001600160a01b031660009081526005602052604090205460ff1690565b6101b761026a3660046110ff565b6001600160a01b031660009081526001602052604090205490565b6101b16102933660046110ff565b610596565b6000546001600160a01b0316610218565b6101b16102b73660046110ff565b610628565b6101656106a1565b6101b16102d23660046110ff565b6106b0565b61018e6102e53660046110d5565b610778565b61018e6102f83660046110d5565b6107c7565b6101b161030b3660046110ff565b6107d4565b6101b161031e3660046110ff565b610850565b6101b7610331366004611156565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61018e61036a3660046110ff565b60056020526000908152604090205460ff1681565b6101b161038d3660046110ff565b61089b565b6101b16103a03660046110ff565b61091e565b600a54610218906001600160a01b031681565b6060600780546103c790611189565b80601f01602080910402602001604051908101604052809291908181526020018280546103f390611189565b80156104405780601f1061041557610100808354040283529160200191610440565b820191906000526020600020905b81548152906001019060200180831161042357829003601f168201915b5050505050905090565b6000610457338484610a6e565b5060015b92915050565b3360009081526004602052604090205460ff1660011461049c5760405162461bcd60e51b8152600401610493906111c3565b60405180910390fd5b6001600160a01b038116600081815260056020908152604091829020805460ff1916600117905590519182527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc91015b60405180910390a150565b6000610504848484610b93565b6105568433610551856040518060600160405280602881526020016112e0602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610efd565b610a6e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104579185906105519086610a08565b600a546001600160a01b031633146105da5760405162461bcd60e51b81526020600482015260076024820152662232b734b2b21760c91b6044820152606401610493565b6001600160a01b0381166106005760405162461bcd60e51b8152600401610493906111e9565b600980546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3360009081526004602052604090205460ff1660011461065a5760405162461bcd60e51b8152600401610493906111c3565b6001600160a01b0381166106805760405162461bcd60e51b8152600401610493906111e9565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6060600880546103c790611189565b6000546001600160a01b031633146106da5760405162461bcd60e51b81526004016104939061120f565b6001600160a01b038116300361072b5760405162461bcd60e51b81526020600482015260166024820152752237903737ba3434b73390313c903cb7bab939b2b63360511b6044820152606401610493565b6001600160a01b0381166000036107545760405162461bcd60e51b8152600401610493906111e9565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000610457338461055185604051806060016040528060258152602001611328602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610efd565b6000610457338484610b93565b3360009081526004602052604090205460ff166001146108065760405162461bcd60e51b8152600401610493906111c3565b6001600160a01b03811661082c5760405162461bcd60e51b8152600401610493906111e9565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b0316331461087a5760405162461bcd60e51b81526004016104939061120f565b6001600160a01b03166000908152600460205260409020805460ff19169055565b3360009081526004602052604090205460ff166001146108cd5760405162461bcd60e51b8152600401610493906111c3565b6001600160a01b038116600081815260056020908152604091829020805460ff1916905590519182527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c91016104ec565b6000546001600160a01b031633146109485760405162461bcd60e51b81526004016104939061120f565b6001600160a01b0381166109ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610493565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600080610a15838561125a565b905083811015610a675760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610493565b9392505050565b6001600160a01b038316610ad05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610493565b6001600160a01b038216610b315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610493565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831660009081526005602052604090205460ff1615610bf35760405162461bcd60e51b815260206004820152601460248201527345524332303a20426c61636b206164647265737360601b6044820152606401610493565b6001600160a01b038316610c575760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610493565b6001600160a01b038216610cb95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610493565b610cf6816040518060600160405280602681526020016112ba602691396001600160a01b0386166000908152600160205260409020549190610efd565b6001600160a01b0380851660009081526001602081815260408084209590955592861682526003909252919091205460ff169003610e98576000610d476103e8610d41846019610f37565b90610fb9565b90506000610d56826002610f37565b90506000610d648483610ffb565b6001600160a01b038616600090815260016020526040902054909150610d8a9082610a08565b6001600160a01b0380871660009081526001602052604080822093909355600954610100900490911681522054610dc19084610a08565b60095461010090046001600160a01b0316600090815260016020526040902055600654610dee9084610ffb565b6006556040518181526001600160a01b0380871691908816906000805160206113088339815191529060200160405180910390a36040518381526000906001600160a01b038816906000805160206113088339815191529060200160405180910390a36009546040516001600160a01b0361010090920482169188169060008051602061130883398151915290610e889087815260200190565b60405180910390a3505050505050565b6001600160a01b038216600090815260016020526040902054610ebb9082610a08565b6001600160a01b03808416600081815260016020526040908190209390935591519085169060008051602061130883398151915290610b869085815260200190565b60008184841115610f215760405162461bcd60e51b8152600401610493919061106b565b506000610f2e848661126d565b95945050505050565b600082600003610f495750600061045b565b6000610f558385611280565b905082610f628583611297565b14610a675760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610493565b6000610a6783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061103d565b6000610a6783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610efd565b6000818361105e5760405162461bcd60e51b8152600401610493919061106b565b506000610f2e8486611297565b600060208083528351808285015260005b818110156110985785810183015185820160400152820161107c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110d057600080fd5b919050565b600080604083850312156110e857600080fd5b6110f1836110b9565b946020939093013593505050565b60006020828403121561111157600080fd5b610a67826110b9565b60008060006060848603121561112f57600080fd5b611138846110b9565b9250611146602085016110b9565b9150604084013590509250925092565b6000806040838503121561116957600080fd5b611172836110b9565b9150611180602084016110b9565b90509250929050565b600181811c9082168061119d57607f821691505b6020821081036111bd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b2737ba1037b832b930ba37b960a11b604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561045b5761045b611244565b8181038181111561045b5761045b611244565b808202811582820484141761045b5761045b611244565b6000826112b457634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209175d21e50a8d36f9cecaa19bea5c4060ecea51cb61870c4c10ba51fb2a34e7764736f6c63430008110033

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

0000000000000000000000000000000000000000000000008ac7230489e8000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000080000000000000000000000006dd58180318bed107f3cc6158c244d7ca57849c90000000000000000000000002c0e3e45b2b88a3aa843f109f41c208d20d6fefc000000000000000000000000000000000000000000000000000000000000000854556e616d616e6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454554e4100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : amount (uint256): 10000000000000000000
Arg [1] : tokenName (string): TUnamano
Arg [2] : tokenSymbol (string): TUNA
Arg [3] : tokenDecimals (uint8): 8
Arg [4] : _feeAddress (address): 0x6Dd58180318beD107F3Cc6158c244D7Ca57849C9
Arg [5] : _multisignatureWallet (address): 0x2C0e3E45B2b88A3AA843f109F41c208D20D6FEFC

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000008ac7230489e80000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 0000000000000000000000006dd58180318bed107f3cc6158c244d7ca57849c9
Arg [5] : 0000000000000000000000002c0e3e45b2b88a3aa843f109f41c208d20d6fefc
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 54556e616d616e6f000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 54554e4100000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

14512:12708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16330:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18436:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;18436:169:0;1004:187:1;26886:153:0;;;;;;:::i;:::-;;:::i;:::-;;17405:100;17485:12;;17405:100;;;1533:25:1;;;1521:2;1506:18;17405:100:0;1387:177:1;19079:321:0;;;;;;:::i;:::-;;:::i;17257:83::-;17323:9;;17257:83;;17323:9;;;;2044:36:1;;2032:2;2017:18;17257:83:0;1902:184:1;19809:218:0;;;;;;:::i;:::-;;:::i;15042:25::-;;;;;;;;-1:-1:-1;;;;;15042:25:0;;;;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;15042:25:0;2091:203:1;26758:120:0;;;;;;:::i;:::-;-1:-1:-1;;;;;26849:21:0;26825:4;26849:21;;;:13;:21;;;;;;;;;26758:120;17568:119;;;;;;:::i;:::-;-1:-1:-1;;;;;17661:18:0;17634:7;17661:18;;;:9;:18;;;;;;;17568:119;26527:223;;;;;;:::i;:::-;;:::i;12628:79::-;12666:7;12693:6;-1:-1:-1;;;;;12693:6:0;12628:79;;26351:168;;;;;;:::i;:::-;;:::i;16532:87::-;;;:::i;25823:232::-;;;;;;:::i;:::-;;:::i;20530:269::-;;;;;;:::i;:::-;;:::i;17900:175::-;;;;;;:::i;:::-;;:::i;26178:165::-;;;;;;:::i;:::-;;:::i;26063:107::-;;;;;;:::i;:::-;;:::i;18138:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18254:18:0;;;18227:7;18254:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18138:151;14864:46;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27047:168;;;;;;:::i;:::-;;:::i;13074:244::-;;;;;;:::i;:::-;;:::i;15074:35::-;;;;;-1:-1:-1;;;;;15074:35:0;;;16330:83;16367:13;16400:5;16393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16330:83;:::o;18436:169::-;18519:4;18536:39;686:10;18559:7;18568:6;18536:8;:39::i;:::-;-1:-1:-1;18593:4:0;18436:169;;;;;:::o;26886:153::-;15260:10;15249:22;;;;:10;:22;;;;;;;;;:27;15241:52;;;;-1:-1:-1;;;15241:52:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;26959:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;;;;;:31;;-1:-1:-1;;26959:31:0::1;26986:4;26959:31;::::0;;27006:25;;2237:51:1;;;27006:25:0::1;::::0;2210:18:1;27006:25:0::1;;;;;;;;26886:153:::0;:::o;19079:321::-;19185:4;19202:36;19212:6;19220:9;19231:6;19202:9;:36::i;:::-;19249:121;19258:6;686:10;19280:89;19318:6;19280:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19280:19:0;;;;;;:11;:19;;;;;;;;686:10;19280:33;;;;;;;;;;:37;:89::i;:::-;19249:8;:121::i;:::-;-1:-1:-1;19388:4:0;19079:321;;;;;:::o;19809:218::-;686:10;19897:4;19946:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19946:34:0;;;;;;;;;;19897:4;;19914:83;;19937:7;;19946:50;;19985:10;19946:38;:50::i;26527:223::-;26600:20;;-1:-1:-1;;;;;26600:20:0;26624:10;26600:34;26592:54;;;;-1:-1:-1;;;26592:54:0;;3492:2:1;26592:54:0;;;3474:21:1;3531:1;3511:18;;;3504:29;-1:-1:-1;;;3549:18:1;;;3542:37;3596:18;;26592:54:0;3290:330:1;26592:54:0;-1:-1:-1;;;;;26665:25:0;;26657:50;;;;-1:-1:-1;;;26657:50:0;;;;;;;:::i;:::-;26718:10;:24;;-1:-1:-1;;;;;26718:24:0;;;;;-1:-1:-1;;;;;;26718:24:0;;;;;;;;;26527:223::o;26351:168::-;15260:10;15249:22;;;;:10;:22;;;;;;;;;:27;15241:52;;;;-1:-1:-1;;;15241:52:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26435:23:0;::::1;26427:48;;;;-1:-1:-1::0;;;26427:48:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26486:21:0::1;26510:1;26486:21:::0;;;:10:::1;:21;::::0;;;;:25;;-1:-1:-1;;26486:25:0::1;::::0;;26351:168::o;16532:87::-;16571:13;16604:7;16597:14;;;;;:::i;25823:232::-;12840:6;;-1:-1:-1;;;;;12840:6:0;686:10;12840:22;12832:67;;;;-1:-1:-1;;;12832:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25899:26:0;::::1;25907:4;25899:26:::0;25891:61:::1;;;::::0;-1:-1:-1;;;25891:61:0;;4529:2:1;25891:61:0::1;::::0;::::1;4511:21:1::0;4568:2;4548:18;;;4541:30;-1:-1:-1;;;4587:18:1;;;4580:52;4649:18;;25891:61:0::1;4327:346:1::0;25891:61:0::1;-1:-1:-1::0;;;;;25971:23:0;::::1;25979:1;25971:23:::0;25963:48:::1;;;;-1:-1:-1::0;;;25963:48:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26022:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;:25;;-1:-1:-1;;26022:25:0::1;26046:1;26022:25;::::0;;25823:232::o;20530:269::-;20623:4;20640:129;686:10;20663:7;20672:96;20711:15;20672:96;;;;;;;;;;;;;;;;;686:10;20672:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20672:34:0;;;;;;;;;;;;:38;:96::i;17900:175::-;17986:4;18003:42;686:10;18027:9;18038:6;18003:9;:42::i;26178:165::-;15260:10;15249:22;;;;:10;:22;;;;;;;;;:27;15241:52;;;;-1:-1:-1;;;15241:52:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26259:23:0;::::1;26251:48;;;;-1:-1:-1::0;;;26251:48:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26310:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;:25;;-1:-1:-1;;26310:25:0::1;26334:1;26310:25;::::0;;26178:165::o;26063:107::-;12840:6;;-1:-1:-1;;;;;12840:6:0;686:10;12840:22;12832:67;;;;-1:-1:-1;;;12832:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26141:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;26134:28;;-1:-1:-1;;26134:28:0::1;::::0;;26063:107::o;27047:168::-;15260:10;15249:22;;;;:10;:22;;;;;;;;;:27;15241:52;;;;-1:-1:-1;;;15241:52:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27126:27:0;::::1;27156:5;27126:27:::0;;;:13:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;27126:35:0::1;::::0;;27177:30;;2237:51:1;;;27177:30:0::1;::::0;2210:18:1;27177:30:0::1;2091:203:1::0;13074:244:0;12840:6;;-1:-1:-1;;;;;12840:6:0;686:10;12840:22;12832:67;;;;-1:-1:-1;;;12832:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13163:22:0;::::1;13155:73;;;::::0;-1:-1:-1;;;13155:73:0;;4880:2:1;13155:73:0::1;::::0;::::1;4862:21:1::0;4919:2;4899:18;;;4892:30;4958:34;4938:18;;;4931:62;-1:-1:-1;;;5009:18:1;;;5002:36;5055:19;;13155:73:0::1;4678:402:1::0;13155:73:0::1;13265:6;::::0;;13244:38:::1;::::0;-1:-1:-1;;;;;13244:38:0;;::::1;::::0;13265:6;::::1;::::0;13244:38:::1;::::0;::::1;13293:6;:17:::0;;-1:-1:-1;;;;;;13293:17:0::1;-1:-1:-1::0;;;;;13293:17:0;;;::::1;::::0;;;::::1;::::0;;13074:244::o;4456:181::-;4514:7;;4546:5;4550:1;4546;:5;:::i;:::-;4534:17;;4575:1;4570;:6;;4562:46;;;;-1:-1:-1;;;4562:46:0;;5549:2:1;4562:46:0;;;5531:21:1;5588:2;5568:18;;;5561:30;5627:29;5607:18;;;5600:57;5674:18;;4562:46:0;5347:351:1;4562:46:0;4628:1;4456:181;-1:-1:-1;;;4456:181:0:o;24352:346::-;-1:-1:-1;;;;;24454:19:0;;24446:68;;;;-1:-1:-1;;;24446:68:0;;5905:2:1;24446:68:0;;;5887:21:1;5944:2;5924:18;;;5917:30;5983:34;5963:18;;;5956:62;-1:-1:-1;;;6034:18:1;;;6027:34;6078:19;;24446:68:0;5703:400:1;24446:68:0;-1:-1:-1;;;;;24533:21:0;;24525:68;;;;-1:-1:-1;;;24525:68:0;;6310:2:1;24525:68:0;;;6292:21:1;6349:2;6329:18;;;6322:30;6388:34;6368:18;;;6361:62;-1:-1:-1;;;6439:18:1;;;6432:32;6481:19;;24525:68:0;6108:398:1;24525:68:0;-1:-1:-1;;;;;24606:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24658:32;;1533:25:1;;;24658:32:0;;1506:18:1;24658:32:0;;;;;;;;24352:346;;;:::o;21289:1214::-;-1:-1:-1;;;;;21396:21:0;;;;;;:13;:21;;;;;;;;21395:22;21387:55;;;;-1:-1:-1;;;21387:55:0;;6713:2:1;21387:55:0;;;6695:21:1;6752:2;6732:18;;;6725:30;-1:-1:-1;;;6771:18:1;;;6764:50;6831:18;;21387:55:0;6511:344:1;21387:55:0;-1:-1:-1;;;;;21461:20:0;;21453:70;;;;-1:-1:-1;;;21453:70:0;;7062:2:1;21453:70:0;;;7044:21:1;7101:2;7081:18;;;7074:30;7140:34;7120:18;;;7113:62;-1:-1:-1;;;7191:18:1;;;7184:35;7236:19;;21453:70:0;6860:401:1;21453:70:0;-1:-1:-1;;;;;21542:23:0;;21534:71;;;;-1:-1:-1;;;21534:71:0;;7468:2:1;21534:71:0;;;7450:21:1;7507:2;7487:18;;;7480:30;7546:34;7526:18;;;7519:62;-1:-1:-1;;;7597:18:1;;;7590:33;7640:19;;21534:71:0;7266:399:1;21534:71:0;21696;21718:6;21696:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21696:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;21676:17:0;;;;;;;:9;:17;;;;;;;;:91;;;;21782:21;;;;;:10;:21;;;;;;;;;;:26;;21778:708;;21825:13;21841:24;21860:4;21841:14;:6;21852:2;21841:10;:14::i;:::-;:18;;:24::i;:::-;21825:40;-1:-1:-1;21880:16:0;21899:12;21825:40;21909:1;21899:9;:12::i;:::-;21880:31;-1:-1:-1;21926:17:0;21946:20;:6;21880:31;21946:10;:20::i;:::-;-1:-1:-1;;;;;22004:20:0;;;;;;:9;:20;;;;;;21926:40;;-1:-1:-1;22004:35:0;;21926:40;22004:24;:35::i;:::-;-1:-1:-1;;;;;21981:20:0;;;;;;;:9;:20;;;;;;:58;;;;22088:10;;;;;;;;22078:21;;;;:32;;22104:5;22078:25;:32::i;:::-;22064:10;;;;;-1:-1:-1;;;;;22064:10:0;22054:21;;;;:9;:21;;;;;:56;22140:12;;:23;;22157:5;22140:16;:23::i;:::-;22125:12;:38;22183;;1533:25:1;;;-1:-1:-1;;;;;22183:38:0;;;;;;;;-1:-1:-1;;;;;;;;;;;22183:38:0;1521:2:1;1506:18;22183:38:0;;;;;;;22241:35;;1533:25:1;;;22266:1:0;;-1:-1:-1;;;;;22241:35:0;;;-1:-1:-1;;;;;;;;;;;22241:35:0;1521:2:1;1506:18;22241:35:0;;;;;;;22313:10;;22296:35;;-1:-1:-1;;;;;22313:10:0;;;;;;;22296:35;;;-1:-1:-1;;;;;;;;;;;22296:35:0;;;22325:5;1533:25:1;;1521:2;1506:18;;1387:177;22296:35:0;;;;;;;;21810:533;;;21289:1214;;;:::o;21778:708::-;-1:-1:-1;;;;;22387:20:0;;;;;;:9;:20;;;;;;:32;;22412:6;22387:24;:32::i;:::-;-1:-1:-1;;;;;22364:20:0;;;;;;;:9;:20;;;;;;;:55;;;;22439:35;;;;;;-1:-1:-1;;;;;;;;;;;22439:35:0;;;22467:6;1533:25:1;;1521:2;1506:18;;1387:177;5359:192:0;5445:7;5481:12;5473:6;;;;5465:29;;;;-1:-1:-1;;;5465:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5505:9:0;5517:5;5521:1;5517;:5;:::i;:::-;5505:17;5359:192;-1:-1:-1;;;;;5359:192:0:o;5810:471::-;5868:7;6113:1;6118;6113:6;6109:47;;-1:-1:-1;6143:1:0;6136:8;;6109:47;6168:9;6180:5;6184:1;6180;:5;:::i;:::-;6168:17;-1:-1:-1;6213:1:0;6204:5;6208:1;6168:17;6204:5;:::i;:::-;:10;6196:56;;;;-1:-1:-1;;;6196:56:0;;8400:2:1;6196:56:0;;;8382:21:1;8439:2;8419:18;;;8412:30;8478:34;8458:18;;;8451:62;-1:-1:-1;;;8529:18:1;;;8522:31;8570:19;;6196:56:0;8198:397:1;6757:132:0;6815:7;6842:39;6846:1;6849;6842:39;;;;;;;;;;;;;;;;;:3;:39::i;4920:136::-;4978:7;5005:43;5009:1;5012;5005:43;;;;;;;;;;;;;;;;;:3;:43::i;7385:278::-;7471:7;7506:12;7499:5;7491:28;;;;-1:-1:-1;;;7491:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7530:9:0;7542:5;7546:1;7542;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:336::-;3151:2;3133:21;;;3190:2;3170:18;;;3163:30;-1:-1:-1;;;3224:2:1;3209:18;;3202:42;3276:2;3261:18;;2949:336::o;3625:::-;3827:2;3809:21;;;3866:2;3846:18;;;3839:30;-1:-1:-1;;;3900:2:1;3885:18;;3878:42;3952:2;3937:18;;3625:336::o;3966:356::-;4168:2;4150:21;;;4187:18;;;4180:30;4246:34;4241:2;4226:18;;4219:62;4313:2;4298:18;;3966:356::o;5085:127::-;5146:10;5141:3;5137:20;5134:1;5127:31;5177:4;5174:1;5167:15;5201:4;5198:1;5191:15;5217:125;5282:9;;;5303:10;;;5300:36;;;5316:18;;:::i;7670:128::-;7737:9;;;7758:11;;;7755:37;;;7772:18;;:::i;7803:168::-;7876:9;;;7907;;7924:15;;;7918:22;;7904:37;7894:71;;7945:18;;:::i;7976:217::-;8016:1;8042;8032:132;;8086:10;8081:3;8077:20;8074:1;8067:31;8121:4;8118:1;8111:15;8149:4;8146:1;8139:15;8032:132;-1:-1:-1;8178:9:1;;7976:217::o

Swarm Source

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