ETH Price: $2,285.60 (+0.94%)
 

Overview

Max Total Supply

1,000,000,000 ROOST

Holders

84,688

Total Transfers

-

Market

Price

$0.00 @ 0.000001 ETH (-4.99%)

Onchain Market Cap

$1,388,550.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ROOST is the champion of the Base ecosystem. Protecting, vibing and growing the $ROOST community.

Market

Volume (24H):$113,744.00
Market Capitalization:$0.00
Circulating Supply:0.00 ROOST
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
RoostToken

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 7 : RoostToken.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity 0.8.25;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "./interfaces/IVerifier.sol";

contract RoostToken is Ownable, ERC20 {
    IVerifier verifier;
    bool public limits;

    mapping(address => bool) public isBot;
    mapping(address => bool) public isExcludedFromLimits;

    event LimitsStatusUpdated();
    event ExcludeFromLimits(address indexed account, bool value);

    constructor(
        address _owner,
        address _verifier,
        address[] memory uniswapAddresses
    ) ERC20("Roost Coin", "ROOST") {
        verifier = IVerifier(_verifier);

        limits = true;

        _excludeFromLimits(msg.sender, true);
        _excludeFromLimits(_owner, true);
        _excludeFromLimits(address(this), true);

        for (uint256 i = 0; i < uniswapAddresses.length; i++) {
            _excludeFromLimits(uniswapAddresses[i], true);
        }

        _mint(_owner, 1_000_000_000 ether);
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    function setLimits(bool status) external onlyOwner {
        limits = status;
        emit LimitsStatusUpdated();
    }

    function excludeFromLimits(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromLimits(accounts[i], value);
        }
    }

    function setBots(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            isBot[accounts[i]] = value;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        amount = amount; // silence unused variable warning
        address sender = msg.sender;
        require(!isBot[from], "RoostToken: bot detected");
        require(sender == from || !isBot[sender], "RoostToken: bot detected");
        require(
            tx.origin == from || tx.origin == sender || !isBot[tx.origin],
            "RoostToken: bot detected"
        );
        if (
            (limits &&
                !(isExcludedFromLimits[from] || isExcludedFromLimits[to]))
        ) {
            require((verifier.verify(from, to)), "RoostToken: not authorized.");
        }
    }

    function _excludeFromLimits(address account, bool value) internal virtual {
        isExcludedFromLimits[account] = value;
        emit ExcludeFromLimits(account, value);
    }
}

File 2 of 7 : IVerifier.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity 0.8.25;

interface IVerifier {
    function verify(address from, address to) external returns (bool);
}

File 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.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);
}

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_verifier","type":"address"},{"internalType":"address[]","name":"uniswapAddresses","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsStatusUpdated","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b5060405161188038038061188083398101604081905261002e9161054c565b6040518060400160405280600a8152602001692937b7b9ba1021b7b4b760b11b815250604051806040016040528060058152602001641493d3d4d560da1b81525061008561008061013f60201b60201c565b610143565b600461009183826106b1565b50600561009e82826106b1565b5050600680546001600160a81b0319166001600160a01b03851617600160a01b179055506100cd336001610192565b6100d8836001610192565b6100e3306001610192565b5f5b81518110156101205761011882828151811061010357610103610770565b6020026020010151600161019260201b60201c565b6001016100e5565b50610137836b033b2e3c9fd0803ce80000006101f0565b5050506107cf565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b6001600160a01b03821661024b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6102565f83836102bf565b8060035f8282546102679190610784565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383165f90815260076020526040902054339060ff16156103165760405162461bcd60e51b815260206004820152601860248201525f805160206118608339815191526044820152606401610242565b836001600160a01b0316816001600160a01b0316148061034e57506001600160a01b0381165f9081526007602052604090205460ff16155b6103875760405162461bcd60e51b815260206004820152601860248201525f805160206118608339815191526044820152606401610242565b326001600160a01b03851614806103a65750326001600160a01b038216145b806103c05750325f9081526007602052604090205460ff16155b6103f95760405162461bcd60e51b815260206004820152601860248201525f805160206118608339815191526044820152606401610242565b600654600160a01b900460ff16801561044c57506001600160a01b0384165f9081526008602052604090205460ff168061044a57506001600160a01b0383165f9081526008602052604090205460ff165b155b1561051257600654604051631610a35560e11b81526001600160a01b038681166004830152858116602483015290911690632c2146aa906044016020604051808303815f875af11580156104a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c691906107a9565b6105125760405162461bcd60e51b815260206004820152601b60248201527f526f6f7374546f6b656e3a206e6f7420617574686f72697a65642e00000000006044820152606401610242565b50505050565b505050565b80516001600160a01b0381168114610533575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561055e575f80fd5b6105678461051d565b9250602061057681860161051d565b60408601519093506001600160401b0380821115610592575f80fd5b818701915087601f8301126105a5575f80fd5b8151818111156105b7576105b7610538565b8060051b604051601f19603f830116810181811085821117156105dc576105dc610538565b60405291825284820192508381018501918a8311156105f9575f80fd5b938501935b8285101561061e5761060f8561051d565b845293850193928501926105fe565b8096505050505050509250925092565b600181811c9082168061064257607f821691505b60208210810361066057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561051857805f5260205f20601f840160051c8101602085101561068b5750805b601f840160051c820191505b818110156106aa575f8155600101610697565b5050505050565b81516001600160401b038111156106ca576106ca610538565b6106de816106d8845461062e565b84610666565b602080601f831160018114610711575f84156106fa5750858301515b5f19600386901b1c1916600185901b178555610768565b5f85815260208120601f198616915b8281101561073f57888601518255948401946001909101908401610720565b508582101561075c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156107a357634e487b7160e01b5f52601160045260245ffd5b92915050565b5f602082840312156107b9575f80fd5b815180151581146107c8575f80fd5b9392505050565b611084806107dc5f395ff3fe608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b45780639adce734116100795780639adce734146102905780639c0db5f3146102a3578063a457c2d7146102b6578063a9059cbb146102c9578063dd62ed3e146102dc578063f2fde38b146102ef575f80fd5b806370a082311461022a578063715018a614610252578063860aefcf1461025a5780638da5cb5b1461026e57806395d89b4114610288575f80fd5b8063313ce567116100fa578063313ce567146101b157806339509351146101c05780633bbac579146101d357806342966c68146101f55780635cce86cd14610208575f80fd5b806306fdde0314610136578063095ea7b314610154578063106a5a8f1461017757806318160ddd1461018c57806323b872dd1461019e575b5f80fd5b61013e610302565b60405161014b9190610dd1565b60405180910390f35b610167610162366004610e21565b610392565b604051901515815260200161014b565b61018a610185366004610e56565b6103ab565b005b6003545b60405190815260200161014b565b6101676101ac366004610ed5565b6103fb565b6040516012815260200161014b565b6101676101ce366004610e21565b61041e565b6101676101e1366004610f0e565b60076020525f908152604090205460ff1681565b61018a610203366004610f2e565b61043f565b610167610216366004610f0e565b60086020525f908152604090205460ff1681565b610190610238366004610f0e565b6001600160a01b03165f9081526001602052604090205490565b61018a61044c565b60065461016790600160a01b900460ff1681565b5f546040516001600160a01b03909116815260200161014b565b61013e61045f565b61018a61029e366004610f45565b61046e565b61018a6102b1366004610e56565b6104b8565b6101676102c4366004610e21565b610524565b6101676102d7366004610e21565b6105a3565b6101906102ea366004610f60565b6105b0565b61018a6102fd366004610f0e565b6105da565b60606004805461031190610f91565b80601f016020809104026020016040519081016040528092919081815260200182805461033d90610f91565b80156103885780601f1061035f57610100808354040283529160200191610388565b820191905f5260205f20905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b5f3361039f818585610650565b60019150505b92915050565b6103b3610774565b5f5b828110156103f5576103ed8484838181106103d2576103d2610fc9565b90506020020160208101906103e79190610f0e565b836107cd565b6001016103b5565b50505050565b5f3361040885828561082b565b61041385858561089d565b506001949350505050565b5f3361039f81858561043083836105b0565b61043a9190610fdd565b610650565b6104493382610a51565b50565b610454610774565b61045d5f610b86565b565b60606005805461031190610f91565b610476610774565b6006805460ff60a01b1916600160a01b831515021790556040517f26807de4cb69229c3de82776d14efab61e1acc679b6487d2dac106b7422a2c2a905f90a150565b6104c0610774565b5f5b828110156103f5578160075f8686858181106104e0576104e0610fc9565b90506020020160208101906104f59190610f0e565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556001016104c2565b5f338161053182866105b0565b9050838110156105965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104138286868403610650565b5f3361039f81858561089d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6105e2610774565b6001600160a01b0381166106475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058d565b61044981610b86565b6001600160a01b0383166106b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058d565b6001600160a01b0382166107135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058d565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058d565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b5f61083684846105b0565b90505f1981146103f557818110156108905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058d565b6103f58484848403610650565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058d565b6001600160a01b0382166109635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058d565b61096e838383610bd5565b6001600160a01b0383165f90815260016020526040902054818110156109e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058d565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a449086815260200190565b60405180910390a36103f5565b6001600160a01b038216610ab15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161058d565b610abc825f83610bd5565b6001600160a01b0382165f9081526001602052604090205481811015610b2f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161058d565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610767565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f90815260076020526040902054339060ff1615610c0f5760405162461bcd60e51b815260040161058d90610ffc565b836001600160a01b0316816001600160a01b03161480610c4757506001600160a01b0381165f9081526007602052604090205460ff16155b610c635760405162461bcd60e51b815260040161058d90610ffc565b326001600160a01b0385161480610c825750326001600160a01b038216145b80610c9c5750325f9081526007602052604090205460ff16155b610cb85760405162461bcd60e51b815260040161058d90610ffc565b600654600160a01b900460ff168015610d0b57506001600160a01b0384165f9081526008602052604090205460ff1680610d0957506001600160a01b0383165f9081526008602052604090205460ff165b155b156103f557600654604051631610a35560e11b81526001600160a01b038681166004830152858116602483015290911690632c2146aa906044016020604051808303815f875af1158015610d61573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d859190611033565b6103f55760405162461bcd60e51b815260206004820152601b60248201527f526f6f7374546f6b656e3a206e6f7420617574686f72697a65642e0000000000604482015260640161058d565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e1c575f80fd5b919050565b5f8060408385031215610e32575f80fd5b610e3b83610e06565b946020939093013593505050565b8015158114610449575f80fd5b5f805f60408486031215610e68575f80fd5b833567ffffffffffffffff80821115610e7f575f80fd5b818601915086601f830112610e92575f80fd5b813581811115610ea0575f80fd5b8760208260051b8501011115610eb4575f80fd5b60209283019550935050840135610eca81610e49565b809150509250925092565b5f805f60608486031215610ee7575f80fd5b610ef084610e06565b9250610efe60208501610e06565b9150604084013590509250925092565b5f60208284031215610f1e575f80fd5b610f2782610e06565b9392505050565b5f60208284031215610f3e575f80fd5b5035919050565b5f60208284031215610f55575f80fd5b8135610f2781610e49565b5f8060408385031215610f71575f80fd5b610f7a83610e06565b9150610f8860208401610e06565b90509250929050565b600181811c90821680610fa557607f821691505b602082108103610fc357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156103a557634e487b7160e01b5f52601160045260245ffd5b60208082526018908201527f526f6f7374546f6b656e3a20626f742064657465637465640000000000000000604082015260600190565b5f60208284031215611043575f80fd5b8151610f2781610e4956fea2646970667358221220c4a72149865bbda175f7964ee3da35e5d1e60119c0029e59ee524f4449be059864736f6c63430008190033526f6f7374546f6b656e3a20626f7420646574656374656400000000000000000000000000000000000000008a3a67e0c7ea8f1faa92346d1ca2631de42eae9b00000000000000000000000013199b77f3b32f51d9a400fa790a1e6ee10bed04000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad240000000000000000000000002626664c2603336e57b271c5c0b26f421741e4810000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad0000000000000000000000003d4e44eb1374240ce5f1b871ab261cd16335b76a

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b45780639adce734116100795780639adce734146102905780639c0db5f3146102a3578063a457c2d7146102b6578063a9059cbb146102c9578063dd62ed3e146102dc578063f2fde38b146102ef575f80fd5b806370a082311461022a578063715018a614610252578063860aefcf1461025a5780638da5cb5b1461026e57806395d89b4114610288575f80fd5b8063313ce567116100fa578063313ce567146101b157806339509351146101c05780633bbac579146101d357806342966c68146101f55780635cce86cd14610208575f80fd5b806306fdde0314610136578063095ea7b314610154578063106a5a8f1461017757806318160ddd1461018c57806323b872dd1461019e575b5f80fd5b61013e610302565b60405161014b9190610dd1565b60405180910390f35b610167610162366004610e21565b610392565b604051901515815260200161014b565b61018a610185366004610e56565b6103ab565b005b6003545b60405190815260200161014b565b6101676101ac366004610ed5565b6103fb565b6040516012815260200161014b565b6101676101ce366004610e21565b61041e565b6101676101e1366004610f0e565b60076020525f908152604090205460ff1681565b61018a610203366004610f2e565b61043f565b610167610216366004610f0e565b60086020525f908152604090205460ff1681565b610190610238366004610f0e565b6001600160a01b03165f9081526001602052604090205490565b61018a61044c565b60065461016790600160a01b900460ff1681565b5f546040516001600160a01b03909116815260200161014b565b61013e61045f565b61018a61029e366004610f45565b61046e565b61018a6102b1366004610e56565b6104b8565b6101676102c4366004610e21565b610524565b6101676102d7366004610e21565b6105a3565b6101906102ea366004610f60565b6105b0565b61018a6102fd366004610f0e565b6105da565b60606004805461031190610f91565b80601f016020809104026020016040519081016040528092919081815260200182805461033d90610f91565b80156103885780601f1061035f57610100808354040283529160200191610388565b820191905f5260205f20905b81548152906001019060200180831161036b57829003601f168201915b5050505050905090565b5f3361039f818585610650565b60019150505b92915050565b6103b3610774565b5f5b828110156103f5576103ed8484838181106103d2576103d2610fc9565b90506020020160208101906103e79190610f0e565b836107cd565b6001016103b5565b50505050565b5f3361040885828561082b565b61041385858561089d565b506001949350505050565b5f3361039f81858561043083836105b0565b61043a9190610fdd565b610650565b6104493382610a51565b50565b610454610774565b61045d5f610b86565b565b60606005805461031190610f91565b610476610774565b6006805460ff60a01b1916600160a01b831515021790556040517f26807de4cb69229c3de82776d14efab61e1acc679b6487d2dac106b7422a2c2a905f90a150565b6104c0610774565b5f5b828110156103f5578160075f8686858181106104e0576104e0610fc9565b90506020020160208101906104f59190610f0e565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556001016104c2565b5f338161053182866105b0565b9050838110156105965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104138286868403610650565b5f3361039f81858561089d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6105e2610774565b6001600160a01b0381166106475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058d565b61044981610b86565b6001600160a01b0383166106b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058d565b6001600160a01b0382166107135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058d565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f546001600160a01b0316331461045d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058d565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b5f61083684846105b0565b90505f1981146103f557818110156108905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058d565b6103f58484848403610650565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058d565b6001600160a01b0382166109635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058d565b61096e838383610bd5565b6001600160a01b0383165f90815260016020526040902054818110156109e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058d565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a449086815260200190565b60405180910390a36103f5565b6001600160a01b038216610ab15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161058d565b610abc825f83610bd5565b6001600160a01b0382165f9081526001602052604090205481811015610b2f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161058d565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610767565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f90815260076020526040902054339060ff1615610c0f5760405162461bcd60e51b815260040161058d90610ffc565b836001600160a01b0316816001600160a01b03161480610c4757506001600160a01b0381165f9081526007602052604090205460ff16155b610c635760405162461bcd60e51b815260040161058d90610ffc565b326001600160a01b0385161480610c825750326001600160a01b038216145b80610c9c5750325f9081526007602052604090205460ff16155b610cb85760405162461bcd60e51b815260040161058d90610ffc565b600654600160a01b900460ff168015610d0b57506001600160a01b0384165f9081526008602052604090205460ff1680610d0957506001600160a01b0383165f9081526008602052604090205460ff165b155b156103f557600654604051631610a35560e11b81526001600160a01b038681166004830152858116602483015290911690632c2146aa906044016020604051808303815f875af1158015610d61573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d859190611033565b6103f55760405162461bcd60e51b815260206004820152601b60248201527f526f6f7374546f6b656e3a206e6f7420617574686f72697a65642e0000000000604482015260640161058d565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e1c575f80fd5b919050565b5f8060408385031215610e32575f80fd5b610e3b83610e06565b946020939093013593505050565b8015158114610449575f80fd5b5f805f60408486031215610e68575f80fd5b833567ffffffffffffffff80821115610e7f575f80fd5b818601915086601f830112610e92575f80fd5b813581811115610ea0575f80fd5b8760208260051b8501011115610eb4575f80fd5b60209283019550935050840135610eca81610e49565b809150509250925092565b5f805f60608486031215610ee7575f80fd5b610ef084610e06565b9250610efe60208501610e06565b9150604084013590509250925092565b5f60208284031215610f1e575f80fd5b610f2782610e06565b9392505050565b5f60208284031215610f3e575f80fd5b5035919050565b5f60208284031215610f55575f80fd5b8135610f2781610e49565b5f8060408385031215610f71575f80fd5b610f7a83610e06565b9150610f8860208401610e06565b90509250929050565b600181811c90821680610fa557607f821691505b602082108103610fc357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156103a557634e487b7160e01b5f52601160045260245ffd5b60208082526018908201527f526f6f7374546f6b656e3a20626f742064657465637465640000000000000000604082015260600190565b5f60208284031215611043575f80fd5b8151610f2781610e4956fea2646970667358221220c4a72149865bbda175f7964ee3da35e5d1e60119c0029e59ee524f4449be059864736f6c63430008190033

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

0000000000000000000000008a3a67e0c7ea8f1faa92346d1ca2631de42eae9b00000000000000000000000013199b77f3b32f51d9a400fa790a1e6ee10bed04000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad240000000000000000000000002626664c2603336e57b271c5c0b26f421741e4810000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad0000000000000000000000003d4e44eb1374240ce5f1b871ab261cd16335b76a

-----Decoded View---------------
Arg [0] : _owner (address): 0x8A3A67E0C7ea8f1FaA92346D1CA2631de42eaE9b
Arg [1] : _verifier (address): 0x13199B77f3b32F51d9A400Fa790A1E6EE10bEd04
Arg [2] : uniswapAddresses (address[]): 0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24,0x2626664c2603336E57B271c5C0b26F421741e481,0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD,0x3d4e44Eb1374240CE5F1B871ab261CD16335B76a

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000008a3a67e0c7ea8f1faa92346d1ca2631de42eae9b
Arg [1] : 00000000000000000000000013199b77f3b32f51d9a400fa790a1e6ee10bed04
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24
Arg [5] : 0000000000000000000000002626664c2603336e57b271c5c0b26f421741e481
Arg [6] : 0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad
Arg [7] : 0000000000000000000000003d4e44eb1374240ce5f1b871ab261cd16335b76a


Deployed Bytecode Sourcemap

222:2405:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:7;;1032:22;1014:41;;1002:2;987:18;4444:197:1;874:187:7;1263:232:5;;;;;;:::i;:::-;;:::i;:::-;;3255:106:1;3342:12;;3255:106;;;2090:25:7;;;2078:2;2063:18;3255:106:1;1944:177:7;5203:256:1;;;;;;:::i;:::-;;:::i;3104:91::-;;;3186:2;2601:36:7;;2589:2;2574:18;3104:91:1;2459:184:7;5854:234:1;;;;;;:::i;:::-;;:::i;315:37:5:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1053:79;;;;;;:::i;:::-;;:::i;358:52::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3419:125:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3519:18:1;3493:7;3519:18;;;:9;:18;;;;;;;3419:125;1824:101:0;;;:::i;290:18:5:-;;;;;-1:-1:-1;;;290:18:5;;;;;;1201:85:0;1247:7;1273:6;1201:85;;-1:-1:-1;;;;;1273:6:0;;;3170:51:7;;3158:2;3143:18;1201:85:0;3024:203:7;2369:102:1;;;:::i;1138:119:5:-;;;;;;:::i;:::-;;:::i;1501:210::-;;;;;;:::i;:::-;;:::i;6575:427:1:-;;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;:::i;:::-;;:::i;3987:149::-;;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;:::i;:::-;;:::i;2158:98:1:-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;734:10:4;4581:32:1;734:10:4;4597:7:1;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;1263:232:5:-;1094:13:0;:11;:13::i;:::-;1385:9:5::1;1380:109;1400:19:::0;;::::1;1380:109;;;1440:38;1459:8;;1468:1;1459:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1472:5;1440:18;:38::i;:::-;1421:3;;1380:109;;;;1263:232:::0;;;:::o;5203:256:1:-;5300:4;734:10:4;5356:38:1;5372:4;734:10:4;5387:6:1;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:1;;5203:256;-1:-1:-1;;;;5203:256:1:o;5854:234::-;5942:4;734:10:4;5996:64:1;734:10:4;6012:7:1;6049:10;6021:25;734:10:4;6012:7:1;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;1053:79:5:-;1100:25;1106:10;1118:6;1100:5;:25::i;:::-;1053:79;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;1138:119:5:-;1094:13:0;:11;:13::i;:::-;1199:6:5::1;:15:::0;;-1:-1:-1;;;;1199:15:5::1;-1:-1:-1::0;;;1199:15:5;::::1;;;;::::0;;1229:21:::1;::::0;::::1;::::0;-1:-1:-1;;1229:21:5::1;1138:119:::0;:::o;1501:210::-;1094:13:0;:11;:13::i;:::-;1613:9:5::1;1608:97;1628:19:::0;;::::1;1608:97;;;1689:5;1668;:18;1674:8;;1683:1;1674:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1668:18:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1668:18:5;:26;;-1:-1:-1;;1668:26:5::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;1649:3:5::1;1608:97;;6575:427:1::0;6668:4;734:10:4;6668:4:1;6749:25;734:10:4;6766:7:1;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:1;;4689:2:7;6784:85:1;;;4671:21:7;4728:2;4708:18;;;4701:30;4767:34;4747:18;;;4740:62;-1:-1:-1;;;4818:18:7;;;4811:35;4863:19;;6784:85:1;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;734:10:4;3873:28:1;734:10:4;3890:2:1;3894:6;3873:9;:28::i;3987:149::-;-1:-1:-1;;;;;4102:18:1;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;5095:2:7;2154:73:0::1;::::0;::::1;5077:21:7::0;5134:2;5114:18;;;5107:30;5173:34;5153:18;;;5146:62;-1:-1:-1;;;5224:18:7;;;5217:36;5270:19;;2154:73:0::1;4893:402:7::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;10457:340:1:-:0;-1:-1:-1;;;;;10558:19:1;;10550:68;;;;-1:-1:-1;;;10550:68:1;;5502:2:7;10550:68:1;;;5484:21:7;5541:2;5521:18;;;5514:30;5580:34;5560:18;;;5553:62;-1:-1:-1;;;5631:18:7;;;5624:34;5675:19;;10550:68:1;5300:400:7;10550:68:1;-1:-1:-1;;;;;10636:21:1;;10628:68;;;;-1:-1:-1;;;10628:68:1;;5907:2:7;10628:68:1;;;5889:21:7;5946:2;5926:18;;;5919:30;5985:34;5965:18;;;5958:62;-1:-1:-1;;;6036:18:7;;;6029:32;6078:19;;10628:68:1;5705:398:7;10628:68:1;-1:-1:-1;;;;;10707:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;2090:25:7;;;10758:32:1;;2063:18:7;10758:32:1;;;;;;;;10457:340;;;:::o;1359:130:0:-;1247:7;1273:6;-1:-1:-1;;;;;1273:6:0;734:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;6310:2:7;1414:68:0;;;6292:21:7;;;6329:18;;;6322:30;6388:34;6368:18;;;6361:62;6440:18;;1414:68:0;6108:356:7;2449:176:5;-1:-1:-1;;;;;2533:29:5;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;2533:37:5;;;;;;;;;;2585:33;;1014:41:7;;;2585:33:5;;987:18:7;2585:33:5;;;;;;;2449:176;;:::o;11078:411:1:-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;-1:-1:-1;;11244:16:1;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:1;;6671:2:7;11297:68:1;;;6653:21:7;6710:2;6690:18;;;6683:30;6749:31;6729:18;;;6722:59;6798:18;;11297:68:1;6469:353:7;11297:68:1;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;7456:788::-;-1:-1:-1;;;;;7552:18:1;;7544:68;;;;-1:-1:-1;;;7544:68:1;;7029:2:7;7544:68:1;;;7011:21:7;7068:2;7048:18;;;7041:30;7107:34;7087:18;;;7080:62;-1:-1:-1;;;7158:18:7;;;7151:35;7203:19;;7544:68:1;6827:401:7;7544:68:1;-1:-1:-1;;;;;7630:16:1;;7622:64;;;;-1:-1:-1;;;7622:64:1;;7435:2:7;7622:64:1;;;7417:21:7;7474:2;7454:18;;;7447:30;7513:34;7493:18;;;7486:62;-1:-1:-1;;;7564:18:7;;;7557:33;7607:19;;7622:64:1;7233:399:7;7622:64:1;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;-1:-1:-1;;;;;7768:15:1;;7746:19;7768:15;;;:9;:15;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:1;;7839:2:7;7793:72:1;;;7821:21:7;7878:2;7858:18;;;7851:30;7917:34;7897:18;;;7890:62;-1:-1:-1;;;7968:18:7;;;7961:36;8014:19;;7793:72:1;7637:402:7;7793:72:1;-1:-1:-1;;;;;7899:15:1;;;;;;;:9;:15;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;;;;;7931:6;2090:25:7;;2078:2;2063:18;;1944:177;8163:26:1;;;;;;;;8200:37;9375:659;;-1:-1:-1;;;;;9458:21:1;;9450:67;;;;-1:-1:-1;;;9450:67:1;;8246:2:7;9450:67:1;;;8228:21:7;8285:2;8265:18;;;8258:30;8324:34;8304:18;;;8297:62;-1:-1:-1;;;8375:18:7;;;8368:31;8416:19;;9450:67:1;8044:397:7;9450:67:1;9528:49;9549:7;9566:1;9570:6;9528:20;:49::i;:::-;-1:-1:-1;;;;;9613:18:1;;9588:22;9613:18;;;:9;:18;;;;;;9649:24;;;;9641:71;;;;-1:-1:-1;;;9641:71:1;;8648:2:7;9641:71:1;;;8630:21:7;8687:2;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;-1:-1:-1;;;8777:18:7;;;8770:32;8819:19;;9641:71:1;8446:398:7;9641:71:1;-1:-1:-1;;;;;9746:18:1;;;;;;:9;:18;;;;;;;;9767:23;;;9746:44;;9883:12;:22;;;;;;;9931:37;2090:25:7;;;9746:18:1;;;9931:37;;2063:18:7;9931:37:1;1944:177:7;2426:187:0;2499:16;2518:6;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;1717:726:5:-;-1:-1:-1;;;;;1961:11:5;;1915:14;1961:11;;;:5;:11;;;;;;1932:10;;1961:11;;1960:12;1952:49;;;;-1:-1:-1;;;1952:49:5;;;;;;;:::i;:::-;2029:4;-1:-1:-1;;;;;2019:14:5;:6;-1:-1:-1;;;;;2019:14:5;;:32;;;-1:-1:-1;;;;;;2038:13:5;;;;;;:5;:13;;;;;;;;2037:14;2019:32;2011:69;;;;-1:-1:-1;;;2011:69:5;;;;;;;:::i;:::-;2111:9;-1:-1:-1;;;;;2111:17:5;;;;:40;;-1:-1:-1;2132:9:5;-1:-1:-1;;;;;2132:19:5;;;2111:40;:61;;;-1:-1:-1;2162:9:5;2156:16;;;;:5;:16;;;;;;;;2155:17;2111:61;2090:132;;;;-1:-1:-1;;;2090:132:5;;;;;;;:::i;:::-;2250:6;;-1:-1:-1;;;2250:6:5;;;;:83;;;;-1:-1:-1;;;;;;2278:26:5;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;2308:24:5;;;;;;:20;:24;;;;;;;;2278:54;2276:57;2250:83;2232:205;;;2368:8;;:25;;-1:-1:-1;;;2368:25:5;;-1:-1:-1;;;;;9432:15:7;;;2368:25:5;;;9414:34:7;9484:15;;;9464:18;;;9457:43;2368:8:5;;;;:15;;9349:18:7;;2368:25:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2359:67;;;;-1:-1:-1;;;2359:67:5;;9963:2:7;2359:67:5;;;9945:21:7;10002:2;9982:18;;;9975:30;10041:29;10021:18;;;10014:57;10088:18;;2359:67:5;9761:351:7;14:418;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:7;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:254::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:7:o;1066:118::-;1152:5;1145:13;1138:21;1131:5;1128:32;1118:60;;1174:1;1171;1164:12;1189:750;1281:6;1289;1297;1350:2;1338:9;1329:7;1325:23;1321:32;1318:52;;;1366:1;1363;1356:12;1318:52;1406:9;1393:23;1435:18;1476:2;1468:6;1465:14;1462:34;;;1492:1;1489;1482:12;1462:34;1530:6;1519:9;1515:22;1505:32;;1575:7;1568:4;1564:2;1560:13;1556:27;1546:55;;1597:1;1594;1587:12;1546:55;1637:2;1624:16;1663:2;1655:6;1652:14;1649:34;;;1679:1;1676;1669:12;1649:34;1734:7;1727:4;1717:6;1714:1;1710:14;1706:2;1702:23;1698:34;1695:47;1692:67;;;1755:1;1752;1745:12;1692:67;1786:4;1778:13;;;;-1:-1:-1;1810:6:7;-1:-1:-1;;1851:20:7;;1838:34;1881:28;1838:34;1881:28;:::i;:::-;1928:5;1918:15;;;1189:750;;;;;:::o;2126:328::-;2203:6;2211;2219;2272:2;2260:9;2251:7;2247:23;2243:32;2240:52;;;2288:1;2285;2278:12;2240:52;2311:29;2330:9;2311:29;:::i;:::-;2301:39;;2359:38;2393:2;2382:9;2378:18;2359:38;:::i;:::-;2349:48;;2444:2;2433:9;2429:18;2416:32;2406:42;;2126:328;;;;;:::o;2648:186::-;2707:6;2760:2;2748:9;2739:7;2735:23;2731:32;2728:52;;;2776:1;2773;2766:12;2728:52;2799:29;2818:9;2799:29;:::i;:::-;2789:39;2648:186;-1:-1:-1;;;2648:186:7:o;2839:180::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;-1:-1:-1;2990:23:7;;2839:180;-1:-1:-1;2839:180:7:o;3232:241::-;3288:6;3341:2;3329:9;3320:7;3316:23;3312:32;3309:52;;;3357:1;3354;3347:12;3309:52;3396:9;3383:23;3415:28;3437:5;3415:28;:::i;3478:260::-;3546:6;3554;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3646:29;3665:9;3646:29;:::i;:::-;3636:39;;3694:38;3728:2;3717:9;3713:18;3694:38;:::i;:::-;3684:48;;3478:260;;;;;:::o;3743:380::-;3822:1;3818:12;;;;3865;;;3886:61;;3940:4;3932:6;3928:17;3918:27;;3886:61;3993:2;3985:6;3982:14;3962:18;3959:38;3956:161;;4039:10;4034:3;4030:20;4027:1;4020:31;4074:4;4071:1;4064:15;4102:4;4099:1;4092:15;3956:161;;3743:380;;;:::o;4128:127::-;4189:10;4184:3;4180:20;4177:1;4170:31;4220:4;4217:1;4210:15;4244:4;4241:1;4234:15;4260:222;4325:9;;;4346:10;;;4343:133;;;4398:10;4393:3;4389:20;4386:1;4379:31;4433:4;4430:1;4423:15;4461:4;4458:1;4451:15;8849:348;9051:2;9033:21;;;9090:2;9070:18;;;9063:30;9129:26;9124:2;9109:18;;9102:54;9188:2;9173:18;;8849:348::o;9511:245::-;9578:6;9631:2;9619:9;9610:7;9606:23;9602:32;9599:52;;;9647:1;9644;9637:12;9599:52;9679:9;9673:16;9698:28;9720:5;9698:28;:::i

Swarm Source

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