ETH Price: $2,692.44 (-2.33%)

Token

serAI (SERAI)
 

Overview

Max Total Supply

101,011,011,010,000,000 SERAI

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 11 Decimals)

Balance
2,210,987,903,329,844.84571630776 SERAI

Value
$0.00
0xdC7B518e4Caffc6DF85F9033a0e7d5Ae424cBb8E
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:
serAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**


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

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

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

The multifaceted everyday life of people is becoming more and more fastpaced and is always intertwined with the digital world.

The serAI is an everyday AI that combines both worlds: it uses data from your e-mails, messages from messenger applications, calendars and other apps and relieves you of the time planning so you can devote yourself to other complexities in life, such as family and career.

The serAI is also able to create nutrition plans and workouts, as well as shopping lists, based on your individual needs.

Get better, get smarter with serAI.


Twitter: https://twitter.com/serAIbot
Telegram: https://t.me/SerAItoken
Tax: 0/0

*/

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

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

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

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

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

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

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

    function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
}

contract serAI is Context, IERC20, IERC20Metadata, Ownable {

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // Anti bot
    mapping(address => uint256) public _blockNumberByAddress;
    bool public antiBotsActive = false;
    mapping(address => bool) public isContractExempt;
    uint public blockCooldownAmount = 1;


    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 11. 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() {
        _name = "serAI";
        _symbol = "SERAI";
        uint e_totalSupply = 10_101_101_101 ether;
        
        // Anti bot
        isContractExempt[address(this)] = true;

        _mint(msg.sender, e_totalSupply);
    }

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

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

        // bots don't get Gate
        if(antiBotsActive)
        {
            if(!isContractExempt[from] && !isContractExempt[to])
            {
                address human = ensureOneHuman(from, to);
                ensureMaxTxFrequency(human);
                _blockNumberByAddress[human] = block.number;
            }
        }
        // 

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

    // anti bot
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function ensureOneHuman(address _to, address _from) internal virtual returns (address) {
        require(!isContract(_to) || !isContract(_from), "No bots are allowed BULL!");
        if (isContract(_to)) return _from;
        else return _to;
    }

    function ensureMaxTxFrequency(address addr) internal virtual {
        bool isAllowed = _blockNumberByAddress[addr] == 0 ||
            ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 1));
        require(isAllowed, "Max tx frequency exceeded!");
    }

    function setAntiBotsActive(bool value) external onlyOwner {
        antiBotsActive = value;
    }

    function setBlockCooldown(uint value) external onlyOwner {
        blockCooldownAmount = value;
    }

    function setContractExempt(address account, bool value) external onlyOwner {
        isContractExempt[account] = value;
    }
    // End anti bot
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockCooldownAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"isContractExempt","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":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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"}]

60806040526007805460ff1916905560016009553480156200002057600080fd5b506200002c33620000bd565b604080518082019091526005815264736572414960d81b60208201526004906200005790826200029e565b5060408051808201909152600580825264534552414960d81b6020830152906200008290826200029e565b50306000908152600860205260409020805460ff191660011790556b20a36f5be8f5801374940000620000b633826200010d565b5062000392565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001685760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200017c91906200036a565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ab9084906200036a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022557607f821691505b6020821081036200024657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f557600081815260208120601f850160051c81016020861015620002755750805b601f850160051c820191505b81811015620002965782815560010162000281565b505050505050565b81516001600160401b03811115620002ba57620002ba620001fa565b620002d281620002cb845462000210565b846200024c565b602080601f8311600181146200030a5760008415620002f15750858301515b600019600386901b1c1916600185901b17855562000296565b600085815260208120601f198616915b828110156200033b578886015182559484019460019091019084016200031a565b50858210156200035a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200038c57634e487b7160e01b600052601160045260246000fd5b92915050565b610e3e80620003a26000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610be5565b60405180910390f35b61016d610168366004610c4f565b6103b0565b6040519015158152602001610151565b61019061018b366004610c79565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c92565b610402565b604051600b8152602001610151565b61016d6101dd366004610c4f565b610426565b60075461016d9060ff1681565b6101966101fd366004610cce565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cce565b60066020526000908152604090205481565b61019061024e366004610d00565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d1b565b6104e7565b61016d610297366004610c4f565b61053c565b61016d6102aa366004610c4f565b6105ce565b6101966102bd366004610d4e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cce565b6105dc565b61016d610309366004610cce565b60086020526000908152604090205460ff1681565b60606004805461032d90610d78565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d78565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610db2565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de7565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610db2565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610db2565b6007805460ff1916911515919091179055565b60606005805461032d90610d78565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b3f565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b2a5760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f7765642042554c4c210000000000000060448201526064016103f4565b823b15610b385750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b925750610b6a436001610de7565b6009546001600160a01b038416600090815260066020526040902054610b909190610de7565b105b905080610be15760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c1257858101830151858201604001528201610bf6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c4a57600080fd5b919050565b60008060408385031215610c6257600080fd5b610c6b83610c33565b946020939093013593505050565b600060208284031215610c8b57600080fd5b5035919050565b600080600060608486031215610ca757600080fd5b610cb084610c33565b9250610cbe60208501610c33565b9150604084013590509250925092565b600060208284031215610ce057600080fd5b610ce982610c33565b9392505050565b80358015158114610c4a57600080fd5b600060208284031215610d1257600080fd5b610ce982610cf0565b60008060408385031215610d2e57600080fd5b610d3783610c33565b9150610d4560208401610cf0565b90509250929050565b60008060408385031215610d6157600080fd5b610d6a83610c33565b9150610d4560208401610c33565b600181811c90821680610d8c57607f821691505b602082108103610dac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103c457634e487b7160e01b600052601160045260246000fdfea2646970667358221220e784e005098a1cb850ac0fcbe9eec9344ac64f4d202376fac21facaf00ce906d64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610be5565b60405180910390f35b61016d610168366004610c4f565b6103b0565b6040519015158152602001610151565b61019061018b366004610c79565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c92565b610402565b604051600b8152602001610151565b61016d6101dd366004610c4f565b610426565b60075461016d9060ff1681565b6101966101fd366004610cce565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cce565b60066020526000908152604090205481565b61019061024e366004610d00565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d1b565b6104e7565b61016d610297366004610c4f565b61053c565b61016d6102aa366004610c4f565b6105ce565b6101966102bd366004610d4e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cce565b6105dc565b61016d610309366004610cce565b60086020526000908152604090205460ff1681565b60606004805461032d90610d78565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d78565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610db2565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de7565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610db2565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610db2565b6007805460ff1916911515919091179055565b60606005805461032d90610d78565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b3f565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b2a5760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f7765642042554c4c210000000000000060448201526064016103f4565b823b15610b385750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b925750610b6a436001610de7565b6009546001600160a01b038416600090815260066020526040902054610b909190610de7565b105b905080610be15760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c1257858101830151858201604001528201610bf6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c4a57600080fd5b919050565b60008060408385031215610c6257600080fd5b610c6b83610c33565b946020939093013593505050565b600060208284031215610c8b57600080fd5b5035919050565b600080600060608486031215610ca757600080fd5b610cb084610c33565b9250610cbe60208501610c33565b9150604084013590509250925092565b600060208284031215610ce057600080fd5b610ce982610c33565b9392505050565b80358015158114610c4a57600080fd5b600060208284031215610d1257600080fd5b610ce982610cf0565b60008060408385031215610d2e57600080fd5b610d3783610c33565b9150610d4560208401610cf0565b90509250929050565b60008060408385031215610d6157600080fd5b610d6a83610c33565b9150610d4560208401610c33565b600181811c90821680610d8c57607f821691505b602082108103610dac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103c457634e487b7160e01b600052601160045260246000fdfea2646970667358221220e784e005098a1cb850ac0fcbe9eec9344ac64f4d202376fac21facaf00ce906d64736f6c63430008110033

Deployed Bytecode Sourcemap

9812:13441:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10960:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13311:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13311:201:0;1004:187:1;22991:103:0;;;;;;:::i;:::-;;:::i;:::-;;12080:108;12168:12;;12080:108;;;1527:25:1;;;1515:2;1500:18;12080:108:0;1381:177:1;10279:35:0;;;;;;14092:295;;;;;;:::i;:::-;;:::i;11922:93::-;;;12005:2;2038:36:1;;2026:2;2011:18;11922:93:0;1896:184:1;14796:240:0;;;;;;:::i;:::-;;:::i;10183:34::-;;;;;;;;;12251:127;;;;;;:::i;:::-;-1:-1:-1;;;;;12352:18:0;12325:7;12352:18;;;:9;:18;;;;;;;12251:127;8660:103;;;:::i;10120:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;22884:99;;;;;;:::i;:::-;;:::i;8009:87::-;8055:7;8082:6;8009:87;;-1:-1:-1;;;;;8082:6:0;;;2772:51:1;;2760:2;2745:18;8009:87:0;2626:203:1;11179:104:0;;;:::i;23102:127::-;;;;;;:::i;:::-;;:::i;15539:438::-;;;;;;:::i;:::-;;:::i;12584:193::-;;;;;;:::i;:::-;;:::i;12840:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12956:18:0;;;12929:7;12956:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12840:151;8918:201;;;;;;:::i;:::-;;:::i;10224:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10960:100;11014:13;11047:5;11040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10960:100;:::o;13311:201::-;13394:4;4398:10;13450:32;4398:10;13466:7;13475:6;13450:8;:32::i;:::-;13500:4;13493:11;;;13311:201;;;;;:::o;22991:103::-;8055:7;8082:6;-1:-1:-1;;;;;8082:6:0;4398:10;8229:23;8221:68;;;;-1:-1:-1;;;8221:68:0;;;;;;;:::i;:::-;;;;;;;;;23059:19:::1;:27:::0;22991:103::o;14092:295::-;14223:4;4398:10;14281:38;14297:4;4398:10;14312:6;14281:15;:38::i;:::-;14330:27;14340:4;14346:2;14350:6;14330:9;:27::i;:::-;-1:-1:-1;14375:4:0;;14092:295;-1:-1:-1;;;;14092:295:0:o;14796:240::-;4398:10;14884:4;14965:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;14965:27:0;;;;;;;;;;14884:4;;4398:10;14940:66;;4398:10;;14965:27;;:40;;14995:10;;14965:40;:::i;:::-;14940:8;:66::i;8660:103::-;8055:7;8082:6;-1:-1:-1;;;;;8082:6:0;4398:10;8229:23;8221:68;;;;-1:-1:-1;;;8221:68:0;;;;;;;:::i;:::-;8725:30:::1;8752:1;8725:18;:30::i;:::-;8660:103::o:0;22884:99::-;8055:7;8082:6;-1:-1:-1;;;;;8082:6:0;4398:10;8229:23;8221:68;;;;-1:-1:-1;;;8221:68:0;;;;;;;:::i;:::-;22953:14:::1;:22:::0;;-1:-1:-1;;22953:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22884:99::o;11179:104::-;11235:13;11268:7;11261:14;;;;;:::i;23102:127::-;8055:7;8082:6;-1:-1:-1;;;;;8082:6:0;4398:10;8229:23;8221:68;;;;-1:-1:-1;;;8221:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23188:25:0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:33;;-1:-1:-1;;23188:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23102:127::o;15539:438::-;4398:10;15632:4;15715:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;15715:27:0;;;;;;;;;;15632:4;;4398:10;15761:35;;;;15753:85;;;;-1:-1:-1;;;15753:85:0;;4533:2:1;15753:85:0;;;4515:21:1;4572:2;4552:18;;;4545:30;4611:34;4591:18;;;4584:62;-1:-1:-1;;;4662:18:1;;;4655:35;4707:19;;15753:85:0;4331:401:1;15753:85:0;15874:60;15883:5;15890:7;15918:15;15899:16;:34;15874:8;:60::i;12584:193::-;12663:4;4398:10;12719:28;4398:10;12736:2;12740:6;12719:9;:28::i;8918:201::-;8055:7;8082:6;-1:-1:-1;;;;;8082:6:0;4398:10;8229:23;8221:68;;;;-1:-1:-1;;;8221:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9007:22:0;::::1;8999:73;;;::::0;-1:-1:-1;;;8999:73:0;;4939:2:1;8999:73:0::1;::::0;::::1;4921:21:1::0;4978:2;4958:18;;;4951:30;5017:34;4997:18;;;4990:62;-1:-1:-1;;;5068:18:1;;;5061:36;5114:19;;8999:73:0::1;4737:402:1::0;8999:73:0::1;9083:28;9102:8;9083:18;:28::i;:::-;8918:201:::0;:::o;19535:380::-;-1:-1:-1;;;;;19671:19:0;;19663:68;;;;-1:-1:-1;;;19663:68:0;;5346:2:1;19663:68:0;;;5328:21:1;5385:2;5365:18;;;5358:30;5424:34;5404:18;;;5397:62;-1:-1:-1;;;5475:18:1;;;5468:34;5519:19;;19663:68:0;5144:400:1;19663:68:0;-1:-1:-1;;;;;19750:21:0;;19742:68;;;;-1:-1:-1;;;19742:68:0;;5751:2:1;19742:68:0;;;5733:21:1;5790:2;5770:18;;;5763:30;5829:34;5809:18;;;5802:62;-1:-1:-1;;;5880:18:1;;;5873:32;5922:19;;19742:68:0;5549:398:1;19742:68:0;-1:-1:-1;;;;;19823:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19875:32;;1527:25:1;;;19875:32:0;;1500:18:1;19875:32:0;;;;;;;19535:380;;;:::o;20202:453::-;-1:-1:-1;;;;;12956:18:0;;;20337:24;12956:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;20404:37:0;;20400:248;;20486:6;20466:16;:26;;20458:68;;;;-1:-1:-1;;;20458:68:0;;6154:2:1;20458:68:0;;;6136:21:1;6193:2;6173:18;;;6166:30;6232:31;6212:18;;;6205:59;6281:18;;20458:68:0;5952:353:1;20458:68:0;20570:51;20579:5;20586:7;20614:6;20595:16;:25;20570:8;:51::i;:::-;20326:329;20202:453;;;:::o;16456:1031::-;-1:-1:-1;;;;;16587:18:0;;16579:68;;;;-1:-1:-1;;;16579:68:0;;6512:2:1;16579:68:0;;;6494:21:1;6551:2;6531:18;;;6524:30;6590:34;6570:18;;;6563:62;-1:-1:-1;;;6641:18:1;;;6634:35;6686:19;;16579:68:0;6310:401:1;16579:68:0;-1:-1:-1;;;;;16666:16:0;;16658:64;;;;-1:-1:-1;;;16658:64:0;;6918:2:1;16658:64:0;;;6900:21:1;6957:2;6937:18;;;6930:30;6996:34;6976:18;;;6969:62;-1:-1:-1;;;7047:18:1;;;7040:33;7090:19;;16658:64:0;6716:399:1;16658:64:0;16821:14;;;;16818:303;;;-1:-1:-1;;;;;16865:22:0;;;;;;:16;:22;;;;;;;;16864:23;:48;;;;-1:-1:-1;;;;;;16892:20:0;;;;;;:16;:20;;;;;;;;16891:21;16864:48;16861:249;;;16946:13;16962:24;16977:4;16983:2;16962:14;:24::i;:::-;16946:40;;17005:27;17026:5;17005:20;:27::i;:::-;-1:-1:-1;;;;;17051:28:0;;;;;:21;:28;;;;;17082:12;17051:43;;16861:249;-1:-1:-1;;;;;17168:15:0;;17146:19;17168:15;;;:9;:15;;;;;;17202:21;;;;17194:72;;;;-1:-1:-1;;;17194:72:0;;7322:2:1;17194:72:0;;;7304:21:1;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:36;7497:19;;17194:72:0;7120:402:1;17194:72:0;-1:-1:-1;;;;;17302:15:0;;;;;;;:9;:15;;;;;;17320:20;;;17302:38;;17362:13;;;;;;;;:23;;17334:6;;17302:15;17362:23;;17334:6;;17362:23;:::i;:::-;;;;;;;;17418:2;-1:-1:-1;;;;;17403:26:0;17412:4;-1:-1:-1;;;;;17403:26:0;;17422:6;17403:26;;;;1527:25:1;;1515:2;1500:18;;1381:177;17403:26:0;;;;;;;;17442:37;21255:125;9279:191;9353:16;9372:6;;-1:-1:-1;;;;;9389:17:0;;;-1:-1:-1;;;;;;9389:17:0;;;;;;9422:40;;9372:6;;;;;;;9422:40;;9353:16;9422:40;9342:128;9279:191;:::o;22337:252::-;22415:7;22265:20;;22313:8;;22443:38;;-1:-1:-1;22265:20:0;;22313:8;22443:38;22435:76;;;;-1:-1:-1;;;22435:76:0;;7729:2:1;22435:76:0;;;7711:21:1;7768:2;7748:18;;;7741:30;7807:27;7787:18;;;7780:55;7852:18;;22435:76:0;7527:349:1;22435:76:0;22265:20;;22313:8;22522:59;;-1:-1:-1;22550:5:0;22543:12;;22522:59;-1:-1:-1;22578:3:0;22571:10;;22597:279;-1:-1:-1;;;;;22686:27:0;;22669:14;22686:27;;;:21;:27;;;;;;:32;;:123;;-1:-1:-1;22791:16:0;:12;22806:1;22791:16;:::i;:::-;22767:19;;-1:-1:-1;;;;;22737:27:0;;;;;;:21;:27;;;;;;:49;;22767:19;22737:49;:::i;:::-;22736:72;22686:123;22669:140;;22828:9;22820:48;;;;-1:-1:-1;;;22820:48:0;;8083:2:1;22820:48:0;;;8065:21:1;8122:2;8102:18;;;8095:30;8161:28;8141:18;;;8134:56;8207:18;;22820:48:0;7881:350:1;22820:48:0;22658:218;22597:279;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2276:160::-;2341:20;;2397:13;;2390:21;2380:32;;2370:60;;2426:1;2423;2416:12;2441:180;2497:6;2550:2;2538:9;2529:7;2525:23;2521:32;2518:52;;;2566:1;2563;2556:12;2518:52;2589:26;2605:9;2589:26;:::i;2834:254::-;2899:6;2907;2960:2;2948:9;2939:7;2935:23;2931:32;2928:52;;;2976:1;2973;2966:12;2928:52;2999:29;3018:9;2999:29;:::i;:::-;2989:39;;3047:35;3078:2;3067:9;3063:18;3047:35;:::i;:::-;3037:45;;2834:254;;;;;:::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;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;3743:356::-;3945:2;3927:21;;;3964:18;;;3957:30;4023:34;4018:2;4003:18;;3996:62;4090:2;4075:18;;3743:356::o;4104:222::-;4169:9;;;4190:10;;;4187:133;;;4242:10;4237:3;4233:20;4230:1;4223:31;4277:4;4274:1;4267:15;4305:4;4302:1;4295:15

Swarm Source

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