ETH Price: $3,084.24 (+1.16%)
Gas: 3 Gwei

Token

The Zoot Suit (ZOOTED)
 

Overview

Max Total Supply

394,733,915,603.97776413796553535 ZOOTED

Holders

191

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
93,332,080.160160564373732252 ZOOTED

Value
$0.00
0x6446eb0d274bb9203ff93000606e29a78fea3b48
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:
TheZootSuit

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-18
*/

/// https://thezootsuit.com
/// https://t.me/thezootsuit
/// https://twitter.com/thezootsuiteth
/// 0.420/0.420 taxes (<1% slippage) for 30 days, 0 after


// File @openzeppelin/contracts/utils/[email protected]

// 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 @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 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 {
    _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 @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

  /**
   * @dev Moves `amount` tokens from the caller's account to `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 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);
}

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;

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

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

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

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

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

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

  /**
   * @dev See {IERC20-transfer}.
   *
   * Requirements:
   *
   * - `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, _allowances[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 = _allowances[owner][spender];
    require(
      currentAllowance >= subtractedValue,
      'ERC20: decreased allowance below zero'
    );
    unchecked {
      _approve(owner, spender, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Moves `amount` of tokens from `sender` to `recipient`.
   *
   * This internal function is equivalent to {transfer}, and can be used to
   * e.g. implement automatic token fees, slashing mechanisms, etc.
   *
   * Emits a {Transfer} event.
   *
   * Requirements:
   *
   * - `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];
    require(fromBalance >= amount, 'ERC20: transfer amount exceeds balance');
    unchecked {
      _balances[from] = fromBalance - amount;
    }
    _balances[to] += amount;

    emit Transfer(from, to, amount);

    _afterTokenTransfer(from, to, amount);
  }

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev Spend `amount` form the allowance of `owner` toward `spender`.
   *
   * 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 {}
}

// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

  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(uint256) external view returns (address pair);

  function allPairsLength() external view returns (uint256);

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

  function setFeeTo(address) external;

  function setFeeToSetter(address) external;
}

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

  function WETH() external pure returns (address);

  function addLiquidity(
    address tokenA,
    address tokenB,
    uint256 amountADesired,
    uint256 amountBDesired,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  )
    external
    returns (
      uint256 amountA,
      uint256 amountB,
      uint256 liquidity
    );

  function addLiquidityETH(
    address token,
    uint256 amountTokenDesired,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  )
    external
    payable
    returns (
      uint256 amountToken,
      uint256 amountETH,
      uint256 liquidity
    );

  function removeLiquidity(
    address tokenA,
    address tokenB,
    uint256 liquidity,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountA, uint256 amountB);

  function removeLiquidityETH(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountToken, uint256 amountETH);

  function removeLiquidityWithPermit(
    address tokenA,
    address tokenB,
    uint256 liquidity,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline,
    bool approveMax,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external returns (uint256 amountA, uint256 amountB);

  function removeLiquidityETHWithPermit(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline,
    bool approveMax,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external returns (uint256 amountToken, uint256 amountETH);

  function swapExactTokensForTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapTokensForExactTokens(
    uint256 amountOut,
    uint256 amountInMax,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapExactETHForTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable returns (uint256[] memory amounts);

  function swapTokensForExactETH(
    uint256 amountOut,
    uint256 amountInMax,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapExactTokensForETH(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapETHForExactTokens(
    uint256 amountOut,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable returns (uint256[] memory amounts);

  function quote(
    uint256 amountA,
    uint256 reserveA,
    uint256 reserveB
  ) external pure returns (uint256 amountB);

  function getAmountOut(
    uint256 amountIn,
    uint256 reserveIn,
    uint256 reserveOut
  ) external pure returns (uint256 amountOut);

  function getAmountIn(
    uint256 amountOut,
    uint256 reserveIn,
    uint256 reserveOut
  ) external pure returns (uint256 amountIn);

  function getAmountsOut(uint256 amountIn, address[] calldata path)
    external
    view
    returns (uint256[] memory amounts);

  function getAmountsIn(uint256 amountOut, address[] calldata path)
    external
    view
    returns (uint256[] memory amounts);
}

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
  function removeLiquidityETHSupportingFeeOnTransferTokens(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountETH);

  function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline,
    bool approveMax,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external returns (uint256 amountETH);

  function swapExactTokensForTokensSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;

  function swapExactETHForTokensSupportingFeeOnTransferTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable;

  function swapExactTokensForETHSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;
}

// File contracts/TheZootSuit.sol

pragma solidity ^0.8.16;

contract TheZootSuit is ERC20, Ownable {
  uint256 public startedZooting;
  bool public taxesOn = true;
  mapping(address => bool) public bot;
  IUniswapV2Router02 public router =
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
  address public pair;

  event GetZooted(address indexed user, uint256 amount);

  constructor() ERC20('The Zoot Suit', 'ZOOTED') {
    _mint(msg.sender, 420_420_420_420 * 10**18);
    pair = IUniswapV2Factory(router.factory()).createPair(
      address(this),
      router.WETH()
    );
  }

  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) internal virtual override {
    bool _buying = sender == pair && recipient != address(router);
    bool _selling = recipient == pair;

    if (_buying) {
      require(startedZooting > 0, 'NOTLAUNCHED');
      if (block.timestamp <= startedZooting + 60) {
        bot[recipient] = true;
      } else if (block.timestamp < startedZooting + 60 minutes) {
        require(
          balanceOf(recipient) + amount <= (totalSupply() * 1) / 100,
          '1PERC'
        );
      }
    } else {
      bool _bot = bot[recipient] || bot[sender] || bot[msg.sender];
      require(!_bot, 'NONONONO');
    }

    uint256 tax;
    if (
      taxesOn &&
      block.timestamp < startedZooting + 30 days &&
      (_buying || _selling)
    ) {
      tax = (amount * 42) / 10000; // 0.420%
      _burnEv(sender, tax);
    }

    super._transfer(sender, recipient, amount - tax);
  }

  function _burnEv(address _user, uint256 _amount) internal {
    _burn(_user, _amount);
    emit GetZooted(_user, _amount);
  }

  function zoot(uint256 _amount) external {
    _burnEv(msg.sender, _amount);
  }

  function getZooted() external onlyOwner {
    require(startedZooting == 0, 'LAUNCHED');
    startedZooting = block.timestamp;
  }

  function setBot(address _user, bool _is) external onlyOwner {
    require(bot[_user] != _is, 'TOGBOT');
    bot[_user] = _is;
  }

  function setTaxesOn(bool _is) external onlyOwner {
    require(taxesOn != _is, 'TOGTAXES');
    taxesOn = _is;
  }
}

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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GetZooted","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":[{"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":"bot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getZooted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_is","type":"bool"}],"name":"setTaxesOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startedZooting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"zoot","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff19166001179055600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200004457600080fd5b506040518060400160405280600d81526020016c151a1948169bdbdd0814dd5a5d609a1b815250604051806040016040528060068152602001651693d3d5115160d21b81525081600390816200009b919062000464565b506004620000aa828262000464565b505050620000c7620000c16200027d60201b60201c565b62000281565b620000e0336c054e739ef2d4e77128a2900000620002d3565b600960009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000134573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015a919062000530565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e3919062000530565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000231573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000257919062000530565b600a80546001600160a01b0319166001600160a01b03929092169190911790556200058a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200032e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000342919062000562565b90915550506001600160a01b038216600090815260208190526040812080548392906200037190849062000562565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003eb57607f821691505b6020821081036200040c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003bb57600081815260208120601f850160051c810160208610156200043b5750805b601f850160051c820191505b818110156200045c5782815560010162000447565b505050505050565b81516001600160401b03811115620004805762000480620003c0565b6200049881620004918454620003d6565b8462000412565b602080601f831160018114620004d05760008415620004b75750858301515b600019600386901b1c1916600185901b1785556200045c565b600085815260208120601f198616915b828110156200050157888601518255948401946001909101908401620004e0565b5085821015620005205787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200054357600080fd5b81516001600160a01b03811681146200055b57600080fd5b9392505050565b808201808211156200058457634e487b7160e01b600052601160045260246000fd5b92915050565b611219806200059a6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063bb71fddc1161007c578063bb71fddc146102c5578063c16804da146102cd578063dafb42c5146102da578063dd62ed3e146102ed578063f2fde38b14610326578063f887ea401461033957600080fd5b80638da5cb5b1461024c57806395d89b41146102715780639b9ea39a14610279578063a457c2d71461028c578063a8aa1b311461029f578063a9059cbb146102b257600080fd5b8063313ce56711610115578063313ce567146101c1578063342aa8b5146101d0578063353f2345146101e5578063395093511461020857806370a082311461021b578063715018a61461024457600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806318b81e76146101a557806323b872dd146101ae575b600080fd5b61015a61034c565b6040516101679190610f64565b60405180910390f35b61018361017e366004610fce565b6103de565b6040519015158152602001610167565b6002545b604051908152602001610167565b61019760065481565b6101836101bc366004610ff8565b6103f8565b60405160128152602001610167565b6101e36101de366004611044565b61041c565b005b6101836101f3366004611077565b60086020526000908152604090205460ff1681565b610183610216366004610fce565b6104d3565b610197610229366004611077565b6001600160a01b031660009081526020819052604090205490565b6101e3610512565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610167565b61015a610548565b6101e3610287366004611099565b610557565b61018361029a366004610fce565b6105d9565b600a54610259906001600160a01b031681565b6101836102c0366004610fce565b61066b565b6101e3610679565b6007546101839060ff1681565b6101e36102e83660046110b4565b6106e4565b6101976102fb3660046110cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e3610334366004611077565b6106f1565b600954610259906001600160a01b031681565b60606003805461035b906110f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610387906110f7565b80156103d45780601f106103a9576101008083540402835291602001916103d4565b820191906000526020600020905b8154815290600101906020018083116103b757829003601f168201915b5050505050905090565b6000336103ec818585610789565b60019150505b92915050565b6000336104068582856108ae565b610411858585610940565b506001949350505050565b6005546001600160a01b0316331461044f5760405162461bcd60e51b815260040161044690611131565b60405180910390fd5b6001600160a01b03821660009081526008602052604090205481151560ff9091161515036104a85760405162461bcd60e51b81526020600482015260066024820152651513d1d093d560d21b6044820152606401610446565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103ec908290869061050d90879061117c565b610789565b6005546001600160a01b0316331461053c5760405162461bcd60e51b815260040161044690611131565b6105466000610bad565b565b60606004805461035b906110f7565b6005546001600160a01b031633146105815760405162461bcd60e51b815260040161044690611131565b60075481151560ff9091161515036105c65760405162461bcd60e51b8152602060048201526008602482015267544f47544158455360c01b6044820152606401610446565b6007805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561065e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610446565b6104118286868403610789565b6000336103ec818585610940565b6005546001600160a01b031633146106a35760405162461bcd60e51b815260040161044690611131565b600654156106de5760405162461bcd60e51b81526020600482015260086024820152671310555390d2115160c21b6044820152606401610446565b42600655565b6106ee3382610bff565b50565b6005546001600160a01b0316331461071b5760405162461bcd60e51b815260040161044690611131565b6001600160a01b0381166107805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610446565b6106ee81610bad565b6001600160a01b0383166107eb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610446565b6001600160a01b03821661084c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610446565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461093a578181101561092d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610446565b61093a8484848403610789565b50505050565b600a546000906001600160a01b03858116911614801561096e57506009546001600160a01b03848116911614155b600a549091506001600160a01b038481169116148115610a9f576000600654116109c85760405162461bcd60e51b815260206004820152600b60248201526a1393d51310555390d2115160aa1b6044820152606401610446565b6006546109d690603c61117c565b4211610a04576001600160a01b0384166000908152600860205260409020805460ff19166001179055610b35565b600654610a1390610e1061117c565b421015610a9a576064610a2560025490565b610a3090600161118f565b610a3a91906111ae565b83610a5a866001600160a01b031660009081526020819052604090205490565b610a64919061117c565b1115610a9a5760405162461bcd60e51b8152602060048201526005602482015264315045524360d81b6044820152606401610446565b610b35565b6001600160a01b03841660009081526008602052604081205460ff1680610ade57506001600160a01b03861660009081526008602052604090205460ff165b80610af857503360009081526008602052604090205460ff165b90508015610b335760405162461bcd60e51b81526020600482015260086024820152674e4f4e4f4e4f4e4f60c01b6044820152606401610446565b505b60075460009060ff168015610b585750600654610b559062278d0061117c565b42105b8015610b6857508280610b685750815b15610b9157612710610b7b85602a61118f565b610b8591906111ae565b9050610b918682610bff565b610ba58686610ba084886111d0565b610c50565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c098282610e1e565b816001600160a01b03167f7ff742056163af6e6c3c0684b3c05282d88999dc8259639a9bc4330426d419fd82604051610c4491815260200190565b60405180910390a25050565b6001600160a01b038316610cb45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610446565b6001600160a01b038216610d165760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610446565b6001600160a01b03831660009081526020819052604090205481811015610d8e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610446565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610dc590849061117c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1191815260200190565b60405180910390a361093a565b6001600160a01b038216610e7e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610446565b6001600160a01b03821660009081526020819052604090205481811015610ef25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610446565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f219084906111d0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108a1565b600060208083528351808285015260005b81811015610f9157858101830151858201604001528201610f75565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fc957600080fd5b919050565b60008060408385031215610fe157600080fd5b610fea83610fb2565b946020939093013593505050565b60008060006060848603121561100d57600080fd5b61101684610fb2565b925061102460208501610fb2565b9150604084013590509250925092565b80358015158114610fc957600080fd5b6000806040838503121561105757600080fd5b61106083610fb2565b915061106e60208401611034565b90509250929050565b60006020828403121561108957600080fd5b61109282610fb2565b9392505050565b6000602082840312156110ab57600080fd5b61109282611034565b6000602082840312156110c657600080fd5b5035919050565b600080604083850312156110e057600080fd5b6110e983610fb2565b915061106e60208401610fb2565b600181811c9082168061110b57607f821691505b60208210810361112b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156103f2576103f2611166565b60008160001904831182151516156111a9576111a9611166565b500290565b6000826111cb57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103f2576103f261116656fea2646970667358221220705437d3ce428e77c388b5c8f33063dccc1bcb264d77d56befab03fb17764e4064736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063bb71fddc1161007c578063bb71fddc146102c5578063c16804da146102cd578063dafb42c5146102da578063dd62ed3e146102ed578063f2fde38b14610326578063f887ea401461033957600080fd5b80638da5cb5b1461024c57806395d89b41146102715780639b9ea39a14610279578063a457c2d71461028c578063a8aa1b311461029f578063a9059cbb146102b257600080fd5b8063313ce56711610115578063313ce567146101c1578063342aa8b5146101d0578063353f2345146101e5578063395093511461020857806370a082311461021b578063715018a61461024457600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806318b81e76146101a557806323b872dd146101ae575b600080fd5b61015a61034c565b6040516101679190610f64565b60405180910390f35b61018361017e366004610fce565b6103de565b6040519015158152602001610167565b6002545b604051908152602001610167565b61019760065481565b6101836101bc366004610ff8565b6103f8565b60405160128152602001610167565b6101e36101de366004611044565b61041c565b005b6101836101f3366004611077565b60086020526000908152604090205460ff1681565b610183610216366004610fce565b6104d3565b610197610229366004611077565b6001600160a01b031660009081526020819052604090205490565b6101e3610512565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610167565b61015a610548565b6101e3610287366004611099565b610557565b61018361029a366004610fce565b6105d9565b600a54610259906001600160a01b031681565b6101836102c0366004610fce565b61066b565b6101e3610679565b6007546101839060ff1681565b6101e36102e83660046110b4565b6106e4565b6101976102fb3660046110cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e3610334366004611077565b6106f1565b600954610259906001600160a01b031681565b60606003805461035b906110f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610387906110f7565b80156103d45780601f106103a9576101008083540402835291602001916103d4565b820191906000526020600020905b8154815290600101906020018083116103b757829003601f168201915b5050505050905090565b6000336103ec818585610789565b60019150505b92915050565b6000336104068582856108ae565b610411858585610940565b506001949350505050565b6005546001600160a01b0316331461044f5760405162461bcd60e51b815260040161044690611131565b60405180910390fd5b6001600160a01b03821660009081526008602052604090205481151560ff9091161515036104a85760405162461bcd60e51b81526020600482015260066024820152651513d1d093d560d21b6044820152606401610446565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103ec908290869061050d90879061117c565b610789565b6005546001600160a01b0316331461053c5760405162461bcd60e51b815260040161044690611131565b6105466000610bad565b565b60606004805461035b906110f7565b6005546001600160a01b031633146105815760405162461bcd60e51b815260040161044690611131565b60075481151560ff9091161515036105c65760405162461bcd60e51b8152602060048201526008602482015267544f47544158455360c01b6044820152606401610446565b6007805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561065e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610446565b6104118286868403610789565b6000336103ec818585610940565b6005546001600160a01b031633146106a35760405162461bcd60e51b815260040161044690611131565b600654156106de5760405162461bcd60e51b81526020600482015260086024820152671310555390d2115160c21b6044820152606401610446565b42600655565b6106ee3382610bff565b50565b6005546001600160a01b0316331461071b5760405162461bcd60e51b815260040161044690611131565b6001600160a01b0381166107805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610446565b6106ee81610bad565b6001600160a01b0383166107eb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610446565b6001600160a01b03821661084c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610446565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461093a578181101561092d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610446565b61093a8484848403610789565b50505050565b600a546000906001600160a01b03858116911614801561096e57506009546001600160a01b03848116911614155b600a549091506001600160a01b038481169116148115610a9f576000600654116109c85760405162461bcd60e51b815260206004820152600b60248201526a1393d51310555390d2115160aa1b6044820152606401610446565b6006546109d690603c61117c565b4211610a04576001600160a01b0384166000908152600860205260409020805460ff19166001179055610b35565b600654610a1390610e1061117c565b421015610a9a576064610a2560025490565b610a3090600161118f565b610a3a91906111ae565b83610a5a866001600160a01b031660009081526020819052604090205490565b610a64919061117c565b1115610a9a5760405162461bcd60e51b8152602060048201526005602482015264315045524360d81b6044820152606401610446565b610b35565b6001600160a01b03841660009081526008602052604081205460ff1680610ade57506001600160a01b03861660009081526008602052604090205460ff165b80610af857503360009081526008602052604090205460ff165b90508015610b335760405162461bcd60e51b81526020600482015260086024820152674e4f4e4f4e4f4e4f60c01b6044820152606401610446565b505b60075460009060ff168015610b585750600654610b559062278d0061117c565b42105b8015610b6857508280610b685750815b15610b9157612710610b7b85602a61118f565b610b8591906111ae565b9050610b918682610bff565b610ba58686610ba084886111d0565b610c50565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c098282610e1e565b816001600160a01b03167f7ff742056163af6e6c3c0684b3c05282d88999dc8259639a9bc4330426d419fd82604051610c4491815260200190565b60405180910390a25050565b6001600160a01b038316610cb45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610446565b6001600160a01b038216610d165760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610446565b6001600160a01b03831660009081526020819052604090205481811015610d8e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610446565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610dc590849061117c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1191815260200190565b60405180910390a361093a565b6001600160a01b038216610e7e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610446565b6001600160a01b03821660009081526020819052604090205481811015610ef25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610446565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f219084906111d0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108a1565b600060208083528351808285015260005b81811015610f9157858101830151858201604001528201610f75565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fc957600080fd5b919050565b60008060408385031215610fe157600080fd5b610fea83610fb2565b946020939093013593505050565b60008060006060848603121561100d57600080fd5b61101684610fb2565b925061102460208501610fb2565b9150604084013590509250925092565b80358015158114610fc957600080fd5b6000806040838503121561105757600080fd5b61106083610fb2565b915061106e60208401611034565b90509250929050565b60006020828403121561108957600080fd5b61109282610fb2565b9392505050565b6000602082840312156110ab57600080fd5b61109282611034565b6000602082840312156110c657600080fd5b5035919050565b600080604083850312156110e057600080fd5b6110e983610fb2565b915061106e60208401610fb2565b600181811c9082168061110b57607f821691505b60208210810361112b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156103f2576103f2611166565b60008160001904831182151516156111a9576111a9611166565b500290565b6000826111cb57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103f2576103f261116656fea2646970667358221220705437d3ce428e77c388b5c8f33063dccc1bcb264d77d56befab03fb17764e4064736f6c63430008100033

Deployed Bytecode Sourcemap

25412:2173:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9078:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11356:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11356:210:0;1004:187:1;10134:102:0;10218:12;;10134:102;;;1342:25:1;;;1330:2;1315:18;10134:102:0;1196:177:1;25456:29:0;;;;;;12112:263;;;;;;:::i;:::-;;:::i;9990:87::-;;;10069:2;1853:36:1;;1841:2;1826:18;9990:87:0;1711:184:1;27327:132:0;;;;;;:::i;:::-;;:::i;:::-;;25521:35;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12758:244;;;;;;:::i;:::-;;:::i;10291:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10416:18:0;10390:7;10416:18;;;;;;;;;;;;10291:149;2740:97;;;:::i;2129:81::-;2198:6;;-1:-1:-1;;;;;2198:6:0;2129:81;;;-1:-1:-1;;;;;2679:32:1;;;2661:51;;2649:2;2634:18;2129:81:0;2515:203:1;9281:98:0;;;:::i;27465:117::-;;;;;;:::i;:::-;;:::i;13475:445::-;;;;;;:::i;:::-;;:::i;25668:19::-;;;;;-1:-1:-1;;;;;25668:19:0;;;10628:202;;;;;;:::i;:::-;;:::i;27189:132::-;;;:::i;25490:26::-;;;;;;;;;27102:81;;;;;;:::i;:::-;;:::i;10885:173::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11025:18:0;;;10999:7;11025:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10885:173;2982:191;;;;;;:::i;:::-;;:::i;25561:102::-;;;;;-1:-1:-1;;;;;25561:102:0;;;9078:94;9132:13;9161:5;9154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9078:94;:::o;11356:210::-;11459:4;952:10;11510:32;952:10;11526:7;11535:6;11510:8;:32::i;:::-;11556:4;11549:11;;;11356:210;;;;;:::o;12112:263::-;12229:4;952:10;12279:38;12295:4;952:10;12310:6;12279:15;:38::i;:::-;12324:27;12334:4;12340:2;12344:6;12324:9;:27::i;:::-;-1:-1:-1;12365:4:0;;12112:263;-1:-1:-1;;;;12112:263:0:o;27327:132::-;2198:6;;-1:-1:-1;;;;;2198:6:0;952:10;2331:23;2323:68;;;;-1:-1:-1;;;2323:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;27402:10:0;::::1;;::::0;;;:3:::1;:10;::::0;;;;;:17;::::1;;:10;::::0;;::::1;:17;;::::0;27394:36:::1;;;::::0;-1:-1:-1;;;27394:36:0;;4541:2:1;27394:36:0::1;::::0;::::1;4523:21:1::0;4580:1;4560:18;;;4553:29;-1:-1:-1;;;4598:18:1;;;4591:36;4644:18;;27394:36:0::1;4339:329:1::0;27394:36:0::1;-1:-1:-1::0;;;;;27437:10:0;;;::::1;;::::0;;;:3:::1;:10;::::0;;;;:16;;-1:-1:-1;;27437:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27327:132::o;12758:244::-;952:10;12861:4;12937:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;12937:27:0;;;;;;;;;;12861:4;;952:10;12912:66;;952:10;;12937:27;;:40;;12967:10;;12937:40;:::i;:::-;12912:8;:66::i;2740:97::-;2198:6;;-1:-1:-1;;;;;2198:6:0;952:10;2331:23;2323:68;;;;-1:-1:-1;;;2323:68:0;;;;;;;:::i;:::-;2801:30:::1;2828:1;2801:18;:30::i;:::-;2740:97::o:0;9281:98::-;9337:13;9366:7;9359:14;;;;;:::i;27465:117::-;2198:6;;-1:-1:-1;;;;;2198:6:0;952:10;2331:23;2323:68;;;;-1:-1:-1;;;2323:68:0;;;;;;;:::i;:::-;27529:7:::1;::::0;:14;::::1;;:7;::::0;;::::1;:14;;::::0;27521:35:::1;;;::::0;-1:-1:-1;;;27521:35:0;;5137:2:1;27521:35:0::1;::::0;::::1;5119:21:1::0;5176:1;5156:18;;;5149:29;-1:-1:-1;;;5194:18:1;;;5187:38;5242:18;;27521:35:0::1;4935:331:1::0;27521:35:0::1;27563:7;:13:::0;;-1:-1:-1;;27563:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27465:117::o;13475:445::-;952:10;13583:4;13661:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;13661:27:0;;;;;;;;;;13583:4;;952:10;13711:35;;;;13695:106;;;;-1:-1:-1;;;13695:106:0;;5473:2:1;13695:106:0;;;5455:21:1;5512:2;5492:18;;;5485:30;5551:34;5531:18;;;5524:62;-1:-1:-1;;;5602:18:1;;;5595:35;5647:19;;13695:106:0;5271:401:1;13695:106:0;13827:60;13836:5;13843:7;13871:15;13852:16;:34;13827:8;:60::i;10628:202::-;10727:4;952:10;10778:28;952:10;10795:2;10799:6;10778:9;:28::i;27189:132::-;2198:6;;-1:-1:-1;;;;;2198:6:0;952:10;2331:23;2323:68;;;;-1:-1:-1;;;2323:68:0;;;;;;;:::i;:::-;27244:14:::1;::::0;:19;27236:40:::1;;;::::0;-1:-1:-1;;;27236:40:0;;5879:2:1;27236:40:0::1;::::0;::::1;5861:21:1::0;5918:1;5898:18;;;5891:29;-1:-1:-1;;;5936:18:1;;;5929:38;5984:18;;27236:40:0::1;5677:331:1::0;27236:40:0::1;27300:15;27283:14;:32:::0;27189:132::o;27102:81::-;27149:28;27157:10;27169:7;27149;:28::i;:::-;27102:81;:::o;2982:191::-;2198:6;;-1:-1:-1;;;;;2198:6:0;952:10;2331:23;2323:68;;;;-1:-1:-1;;;2323:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3067:22:0;::::1;3059:73;;;::::0;-1:-1:-1;;;3059:73:0;;6215:2:1;3059:73:0::1;::::0;::::1;6197:21:1::0;6254:2;6234:18;;;6227:30;6293:34;6273:18;;;6266:62;-1:-1:-1;;;6344:18:1;;;6337:36;6390:19;;3059:73:0::1;6013:402:1::0;3059:73:0::1;3139:28;3158:8;3139:18;:28::i;16884:348::-:0;-1:-1:-1;;;;;17002:19:0;;16994:68;;;;-1:-1:-1;;;16994:68:0;;6622:2:1;16994:68:0;;;6604:21:1;6661:2;6641:18;;;6634:30;6700:34;6680:18;;;6673:62;-1:-1:-1;;;6751:18:1;;;6744:34;6795:19;;16994:68:0;6420:400:1;16994:68:0;-1:-1:-1;;;;;17077:21:0;;17069:68;;;;-1:-1:-1;;;17069:68:0;;7027:2:1;17069:68:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;-1:-1:-1;;;7156:18:1;;;7149:32;7198:19;;17069:68:0;6825:398:1;17069:68:0;-1:-1:-1;;;;;17146:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17194:32;;1342:25:1;;;17194:32:0;;1315:18:1;17194:32:0;;;;;;;;16884:348;;;:::o;17501:399::-;-1:-1:-1;;;;;11025:18:0;;;17618:24;11025:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;17681:37:0;;17677:218;;17757:6;17737:16;:26;;17729:68;;;;-1:-1:-1;;;17729:68:0;;7430:2:1;17729:68:0;;;7412:21:1;7469:2;7449:18;;;7442:30;7508:31;7488:18;;;7481:59;7557:18;;17729:68:0;7228:353:1;17729:68:0;17827:51;17836:5;17843:7;17871:6;17852:16;:25;17827:8;:51::i;:::-;17611:289;17501:399;;;:::o;25974:987::-;26122:4;;26097:12;;-1:-1:-1;;;;;26112:14:0;;;26122:4;;26112:14;:46;;;;-1:-1:-1;26151:6:0;;-1:-1:-1;;;;;26130:28:0;;;26151:6;;26130:28;;26112:46;26194:4;;26097:61;;-1:-1:-1;;;;;;26181:17:0;;;26194:4;;26181:17;26207:471;;;;26254:1;26237:14;;:18;26229:42;;;;-1:-1:-1;;;26229:42:0;;7788:2:1;26229:42:0;;;7770:21:1;7827:2;7807:18;;;7800:30;-1:-1:-1;;;7846:18:1;;;7839:41;7897:18;;26229:42:0;7586:335:1;26229:42:0;26303:14;;:19;;26320:2;26303:19;:::i;:::-;26284:15;:38;26280:273;;-1:-1:-1;;;;;26335:14:0;;;;;;:3;:14;;;;;:21;;-1:-1:-1;;26335:21:0;26352:4;26335:21;;;26207:471;;26280:273;26394:14;;:27;;26411:10;26394:27;:::i;:::-;26376:15;:45;26372:181;;;26509:3;26488:13;10218:12;;;10134:102;26488:13;:17;;26504:1;26488:17;:::i;:::-;26487:25;;;;:::i;:::-;26477:6;26454:20;26464:9;-1:-1:-1;;;;;10416:18:0;10390:7;10416:18;;;;;;;;;;;;10291:149;26454:20;:29;;;;:::i;:::-;:58;;26434:109;;;;-1:-1:-1;;;26434:109:0;;8523:2:1;26434:109:0;;;8505:21:1;8562:1;8542:18;;;8535:29;-1:-1:-1;;;8580:18:1;;;8573:35;8625:18;;26434:109:0;8321:328:1;26434:109:0;26207:471;;;-1:-1:-1;;;;;26587:14:0;;26575:9;26587:14;;;:3;:14;;;;;;;;;:29;;-1:-1:-1;;;;;;26605:11:0;;;;;;:3;:11;;;;;;;;26587:29;:48;;;-1:-1:-1;26624:10:0;26620:15;;;;:3;:15;;;;;;;;26587:48;26575:60;;26653:4;26652:5;26644:26;;;;-1:-1:-1;;;26644:26:0;;8856:2:1;26644:26:0;;;8838:21:1;8895:1;8875:18;;;8868:29;-1:-1:-1;;;8913:18:1;;;8906:38;8961:18;;26644:26:0;8654:331:1;26644:26:0;26566:112;26207:471;26716:7;;26686:11;;26716:7;;:60;;;;-1:-1:-1;26752:14:0;;:24;;26769:7;26752:24;:::i;:::-;26734:15;:42;26716:60;:92;;;;;26788:7;:19;;;;26799:8;26788:19;26704:195;;;26847:5;26832:11;:6;26841:2;26832:11;:::i;:::-;26831:21;;;;:::i;:::-;26825:27;;26871:20;26879:6;26887:3;26871:7;:20::i;:::-;26907:48;26923:6;26931:9;26942:12;26951:3;26942:6;:12;:::i;:::-;26907:15;:48::i;:::-;26090:871;;;25974:987;;;:::o;3323:177::-;3412:6;;;-1:-1:-1;;;;;3425:17:0;;;-1:-1:-1;;;;;;3425:17:0;;;;;;;3454:40;;3412:6;;;3425:17;3412:6;;3454:40;;3393:16;;3454:40;3386:114;3323:177;:::o;26967:129::-;27032:21;27038:5;27045:7;27032:5;:21::i;:::-;27075:5;-1:-1:-1;;;;;27065:25:0;;27082:7;27065:25;;;;1342::1;;1330:2;1315:18;;1196:177;27065:25:0;;;;;;;;26967:129;;:::o;14369:609::-;-1:-1:-1;;;;;14482:18:0;;14474:68;;;;-1:-1:-1;;;14474:68:0;;9325:2:1;14474:68:0;;;9307:21:1;9364:2;9344:18;;;9337:30;9403:34;9383:18;;;9376:62;-1:-1:-1;;;9454:18:1;;;9447:35;9499:19;;14474:68:0;9123:401:1;14474:68:0;-1:-1:-1;;;;;14557:16:0;;14549:64;;;;-1:-1:-1;;;14549:64:0;;9731:2:1;14549:64:0;;;9713:21:1;9770:2;9750:18;;;9743:30;9809:34;9789:18;;;9782:62;-1:-1:-1;;;9860:18:1;;;9853:33;9903:19;;14549:64:0;9529:399:1;14549:64:0;-1:-1:-1;;;;;14691:15:0;;14669:19;14691:15;;;;;;;;;;;14721:21;;;;14713:72;;;;-1:-1:-1;;;14713:72:0;;10135:2:1;14713:72:0;;;10117:21:1;10174:2;10154:18;;;10147:30;10213:34;10193:18;;;10186:62;-1:-1:-1;;;10264:18:1;;;10257:36;10310:19;;14713:72:0;9933:402:1;14713:72:0;-1:-1:-1;;;;;14811:15:0;;;:9;:15;;;;;;;;;;;14829:20;;;14811:38;;14863:13;;;;;;;;:23;;14843:6;;14811:9;14863:23;;14843:6;;14863:23;:::i;:::-;;;;;;;;14915:2;-1:-1:-1;;;;;14900:26:0;14909:4;-1:-1:-1;;;;;14900:26:0;;14919:6;14900:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;14900:26:0;;;;;;;;14935:37;15927:547;;-1:-1:-1;;;;;16007:21:0;;15999:67;;;;-1:-1:-1;;;15999:67:0;;10542:2:1;15999:67:0;;;10524:21:1;10581:2;10561:18;;;10554:30;10620:34;10600:18;;;10593:62;-1:-1:-1;;;10671:18:1;;;10664:31;10712:19;;15999:67:0;10340:397:1;15999:67:0;-1:-1:-1;;;;;16158:18:0;;16133:22;16158:18;;;;;;;;;;;16191:24;;;;16183:71;;;;-1:-1:-1;;;16183:71:0;;10944:2:1;16183:71:0;;;10926:21:1;10983:2;10963:18;;;10956:30;11022:34;11002:18;;;10995:62;-1:-1:-1;;;11073:18:1;;;11066:32;11115:19;;16183:71:0;10742:398:1;16183:71:0;-1:-1:-1;;;;;16280:18:0;;:9;:18;;;;;;;;;;16301:23;;;16280:44;;16338:12;:22;;16318:6;;16280:9;16338:22;;16318:6;;16338:22;:::i;:::-;;;;-1:-1:-1;;16374:37:0;;1342:25:1;;;16400:1:0;;-1:-1:-1;;;;;16374:37:0;;;;;1330:2:1;1315:18;16374:37:0;1196:177:1;14:548;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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:160::-;1965:20;;2021:13;;2014:21;2004:32;;1994:60;;2050:1;2047;2040:12;2065:254;2130:6;2138;2191:2;2179:9;2170:7;2166:23;2162:32;2159:52;;;2207:1;2204;2197:12;2159:52;2230:29;2249:9;2230:29;:::i;:::-;2220:39;;2278:35;2309:2;2298:9;2294:18;2278:35;:::i;:::-;2268:45;;2065:254;;;;;:::o;2324:186::-;2383:6;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;2324:186;-1:-1:-1;;;2324:186:1:o;2723:180::-;2779:6;2832:2;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2871:26;2887:9;2871:26;:::i;2908:180::-;2967:6;3020:2;3008:9;2999:7;2995:23;2991:32;2988:52;;;3036:1;3033;3026:12;2988:52;-1:-1:-1;3059:23:1;;2908:180;-1:-1:-1;2908:180:1:o;3093:260::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3309:38;3343:2;3332:9;3328:18;3309:38;:::i;3593:380::-;3672:1;3668:12;;;;3715;;;3736:61;;3790:4;3782:6;3778:17;3768:27;;3736:61;3843:2;3835:6;3832:14;3812:18;3809:38;3806:161;;3889:10;3884:3;3880:20;3877:1;3870:31;3924:4;3921:1;3914:15;3952:4;3949:1;3942:15;3806:161;;3593:380;;;:::o;3978:356::-;4180:2;4162:21;;;4199:18;;;4192:30;4258:34;4253:2;4238:18;;4231:62;4325:2;4310:18;;3978:356::o;4673:127::-;4734:10;4729:3;4725:20;4722:1;4715:31;4765:4;4762:1;4755:15;4789:4;4786:1;4779:15;4805:125;4870:9;;;4891:10;;;4888:36;;;4904:18;;:::i;7926:168::-;7966:7;8032:1;8028;8024:6;8020:14;8017:1;8014:21;8009:1;8002:9;7995:17;7991:45;7988:71;;;8039:18;;:::i;:::-;-1:-1:-1;8079:9:1;;7926:168::o;8099:217::-;8139:1;8165;8155:132;;8209:10;8204:3;8200:20;8197:1;8190:31;8244:4;8241:1;8234:15;8272:4;8269:1;8262:15;8155:132;-1:-1:-1;8301:9:1;;8099:217::o;8990:128::-;9057:9;;;9078:11;;;9075:37;;;9092:18;;:::i

Swarm Source

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