ETH Price: $3,381.47 (-0.77%)
Gas: 4 Gwei

Token

revoAI (revoAI)
 

Overview

Max Total Supply

100,000,000 revoAI

Holders

440 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0 revoAI

Value
$0.00
0xd92127901df1b4bd1e4512864dc306587b22c770
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

revoAI is a cryptocurrency project on Ethereum that specializes in providing and developing artificial intelligence solutions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
revoAI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

* revoAI - Artificial Intelligence Revolution

* revoAI Bot - https://t.me/revoAI_Bot

Website: https://revoai.net/
Documents: https://docs.revoai.net/
Telegram Channel: https://t.me/revoAIchannel
Telegram Group: https://t.me/revoAI
Twitter: https://twitter.com/revoAI_net
Discord: https://discord.gg/kfXJqw8XvX
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

    function allPairs(uint256) external view returns (address pair);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

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

    address public marketingWallet = 0xbD350eba15c745a7CFb9Cff16D5bAbcFA9aaE4b7;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 public _marketingReserves = 0;
    mapping(address => bool) public _isExcludedFromFee;
    uint256 public numTokensSellToAddToLiquidity = 50000 * 10**_decimals;
    uint256 public numTokensSellToAddToETH = 25000 * 10**_decimals;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= numTokensSellToAddToETH) {
                    _swapTokensForETH(numTokensSellToAddToETH);
                    _marketingReserves -= numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function excludeFromFee(address _address, bool _status) external onlyOwner {
        _isExcludedFromFee[_address] = _status;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForETH(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            marketingWallet,
            block.timestamp
        );
    }

    function setMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        require(newWallet != DEAD, "LP Pair cannot be the Dead wallet, or 0!");
        require(newWallet != address(0), "LP Pair cannot be the Dead wallet, or 0!");
        marketingWallet = newWallet;
        return true;
    }

    function setTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 10, "ERC20: total tax must not be greater than 10%");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function setNumTokensSellToAddToLiquidity(uint256 _numTokensSellToAddToLiquidity, uint256 _numTokensSellToAddToETH)
        public
        onlyOwner
        returns (bool)
    {
        require(_numTokensSellToAddToLiquidity < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        require(_numTokensSellToAddToETH < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity * 10**_decimals;
        numTokensSellToAddToETH = _numTokensSellToAddToETH * 10**_decimals;

        return true;
    }

    receive() external payable {}
}

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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToLiquidity","type":"uint256"},{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"setTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052600660a0818152657265766f414960d01b60c05262000024908262000621565b506040805180820190915260068152657265766f414960d01b602082015260079062000051908262000621565b506008805460ff191660099081179091556305f5e10081556001600a9081556002600b55600c80546001600160a01b031990811673bd350eba15c745a7cfb9cff16d5babcfa9aae4b717909155600d805490911661dead1790556000600e55620000bc919062000802565b620000ca9061c3506200081a565b601055600854620000e09060ff16600a62000802565b620000ee906161a86200081a565b601155348015620000fe57600080fd5b50600680546200010e9062000592565b80601f01602080910402602001604051908101604052809291908181526020018280546200013c9062000592565b80156200018d5780601f1062000161576101008083540402835291602001916200018d565b820191906000526020600020905b8154815290600101906020018083116200016f57829003601f168201915b505050505060078054620001a19062000592565b80601f0160208091040260200160405190810160405280929190818152602001828054620001cf9062000592565b8015620002205780601f10620001f45761010080835404028352916020019162000220565b820191906000526020600020905b8154815290600101906020018083116200020257829003601f168201915b5050505050816003908162000236919062000621565b50600462000245828262000621565b505050620002626200025c6200046060201b60201c565b62000464565b600854620002919033906200027c9060ff16600a62000802565b6009546200028b91906200081a565b620004b6565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030f91906200083c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200035d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038391906200083c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620003d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f791906200083c565b601280546001600160a01b0319166001600160a01b0392831617905590811660808190526000908152600f6020526040808220805460ff1990811660019081179092553384528284208054821683179055600c549094168352912080549092161790556200087d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000525919062000867565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005a757607f821691505b602082108103620005c857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200061c57600081815260208120601f850160051c81016020861015620005f75750805b601f850160051c820191505b81811015620006185782815560010162000603565b5050505b505050565b81516001600160401b038111156200063d576200063d6200057c565b62000655816200064e845462000592565b84620005ce565b602080601f8311600181146200068d5760008415620006745750858301515b600019600386901b1c1916600185901b17855562000618565b600085815260208120601f198616915b82811015620006be578886015182559484019460019091019084016200069d565b5085821015620006dd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000744578160001904821115620007285762000728620006ed565b808516156200073657918102915b93841c939080029062000708565b509250929050565b6000826200075d57506001620007fc565b816200076c57506000620007fc565b81600181146200078557600281146200079057620007b0565b6001915050620007fc565b60ff841115620007a457620007a4620006ed565b50506001821b620007fc565b5060208310610133831016604e8410600b8410161715620007d5575081810a620007fc565b620007e1838362000703565b8060001904821115620007f857620007f8620006ed565b0290505b92915050565b60006200081360ff8416836200074c565b9392505050565b6000816000190483118215151615620008375762000837620006ed565b500290565b6000602082840312156200084f57600080fd5b81516001600160a01b03811681146200081357600080fd5b80820180821115620007fc57620007fc620006ed565b608051611894620008bc6000396000818161026801528181610f8e015281816110470152818161108301528181611209015261127101526118946000f3fe6080604052600436106101bb5760003560e01c806375f0a874116100ec578063ad16a0cf1161008a578063dd62ed3e11610064578063dd62ed3e146104ed578063df8408fe1461050d578063f2fde38b1461052d578063f345bd851461054d57600080fd5b8063ad16a0cf146104ab578063c0fdea57146104c1578063d12a7688146104d757600080fd5b80638fcc250d116100c65780638fcc250d1461043657806395d89b4114610456578063a457c2d71461046b578063a9059cbb1461048b57600080fd5b806375f0a874146103c8578063768dc710146103e85780638da5cb5b1461041857600080fd5b806339509351116101595780635d098b38116101335780635d098b381461033b5780635f7ce6a71461035b57806370a082311461037b578063715018a6146103b157600080fd5b806339509351146102e557806349bd5a5e14610305578063527ffabd1461032557600080fd5b80631694505e116101955780631694505e1461025657806318160ddd1461028a57806323b872dd146102a9578063313ce567146102c957600080fd5b806303fd2a45146101c757806306fdde0314610204578063095ea7b31461022657600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b50600d546101e7906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021057600080fd5b50610219610563565b6040516101fb91906112f6565b34801561023257600080fd5b50610246610241366004611359565b6105f5565b60405190151581526020016101fb565b34801561026257600080fd5b506101e77f000000000000000000000000000000000000000000000000000000000000000081565b34801561029657600080fd5b506002545b6040519081526020016101fb565b3480156102b557600080fd5b506102466102c4366004611385565b61060f565b3480156102d557600080fd5b50604051600981526020016101fb565b3480156102f157600080fd5b50610246610300366004611359565b610633565b34801561031157600080fd5b506012546101e7906001600160a01b031681565b34801561033157600080fd5b5061029b600b5481565b34801561034757600080fd5b506102466103563660046113c6565b610655565b34801561036757600080fd5b506102466103763660046113ea565b6106e1565b34801561038757600080fd5b5061029b6103963660046113c6565b6001600160a01b031660009081526020819052604090205490565b3480156103bd57600080fd5b506103c661076a565b005b3480156103d457600080fd5b50600c546101e7906001600160a01b031681565b3480156103f457600080fd5b506102466104033660046113c6565b600f6020526000908152604090205460ff1681565b34801561042457600080fd5b506005546001600160a01b03166101e7565b34801561044257600080fd5b506102466104513660046113ea565b61077e565b34801561046257600080fd5b50610219610827565b34801561047757600080fd5b50610246610486366004611359565b610836565b34801561049757600080fd5b506102466104a6366004611359565b6108b1565b3480156104b757600080fd5b5061029b60115481565b3480156104cd57600080fd5b5061029b600e5481565b3480156104e357600080fd5b5061029b60105481565b3480156104f957600080fd5b5061029b61050836600461140c565b6108bf565b34801561051957600080fd5b506103c6610528366004611445565b6108ea565b34801561053957600080fd5b506103c66105483660046113c6565b61091d565b34801561055957600080fd5b5061029b600a5481565b60606003805461057290611478565b80601f016020809104026020016040519081016040528092919081815260200182805461059e90611478565b80156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b600033610603818585610996565b60019150505b92915050565b60003361061d858285610aba565b610628858585610b34565b506001949350505050565b60003361060381858561064683836108bf565b61065091906114c8565b610996565b600061065f610dd1565b600d546001600160a01b03908116908316036106965760405162461bcd60e51b815260040161068d906114db565b60405180910390fd5b6001600160a01b0382166106bc5760405162461bcd60e51b815260040161068d906114db565b50600c80546001600160a01b0383166001600160a01b03199091161790556001919050565b60006106eb610dd1565b600a6106f783856114c8565b111561075b5760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c61746572207468616e2031302560981b606482015260840161068d565b50600a91909155600b55600190565b610772610dd1565b61077c6000610e2b565b565b6000610788610dd1565b60626009546107979190611523565b83106107b55760405162461bcd60e51b815260040161068d90611545565b60626009546107c49190611523565b82106107e25760405162461bcd60e51b815260040161068d90611545565b6008546107f39060ff16600a61167d565b6107fd908461168c565b6010556008546108119060ff16600a61167d565b61081b908361168c565b60115550600192915050565b60606004805461057290611478565b6000338161084482866108bf565b9050838110156108a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161068d565b6106288286868403610996565b600033610603818585610b34565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108f2610dd1565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b610925610dd1565b6001600160a01b03811661098a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b61099381610e2b565b50565b6001600160a01b0383166109f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b6001600160a01b038216610a595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161068d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ac684846108bf565b90506000198114610b2e5781811015610b215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161068d565b610b2e8484848403610996565b50505050565b6001600160a01b038316610b5a5760405162461bcd60e51b815260040161068d906116ab565b6001600160a01b038216610b805760405162461bcd60e51b815260040161068d906116f0565b80610ba0846001600160a01b031660009081526020819052604090205490565b1015610bbe5760405162461bcd60e51b815260040161068d90611733565b6012546001600160a01b0384811691161480610be757506012546001600160a01b038381169116145b8015610bfd5750601254600160a01b900460ff16155b15610dc1576012546001600160a01b03848116911614610cea57600e54306000908152602081905260408120549091610c3591611779565b90506010548110610c4b57610c4b601054610e7d565b601154600e5410610ce857610c61601154610f24565b601154600e6000828254610c759190611779565b9091555050600c546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610ce65760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b604482015260640161068d565b505b505b6001600160a01b0383166000908152600f602052604081205460ff1680610d2957506001600160a01b0383166000908152600f602052604090205460ff165b15610d35575080610db6565b60006064600b5484610d47919061168c565b610d519190611523565b905060006064600a5485610d65919061168c565b610d6f9190611523565b9050610d7b81836114c8565b610d859085611779565b925081600e6000828254610d9991906114c8565b90915550610db390508630610dae84866114c8565b611104565b50505b610b2e848483611104565b610dcc838383611104565b505050565b6005546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6012805460ff60a01b1916600160a01b1790556000610e9d600283611523565b90506000610eab8284611779565b905047610eb783610f24565b6000610ec38247611779565b9050610ecf83826111f0565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506012805460ff60a01b19169055505050565b6012805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f6c57610f6c61178c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100e91906117a2565b816001815181106110215761102161178c565b60200260200101906001600160a01b031690816001600160a01b03168152505061106c307f000000000000000000000000000000000000000000000000000000000000000084610996565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906110c19085906000908690309042906004016117bf565b600060405180830381600087803b1580156110db57600080fd5b505af11580156110ef573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b6001600160a01b03831661112a5760405162461bcd60e51b815260040161068d906116ab565b6001600160a01b0382166111505760405162461bcd60e51b815260040161068d906116f0565b6001600160a01b038316600090815260208190526040902054818110156111895760405162461bcd60e51b815260040161068d90611733565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6012805460ff60a01b1916600160a01b17905561122e307f000000000000000000000000000000000000000000000000000000000000000084610996565b600c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156112bd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112e29190611830565b50506012805460ff60a01b19169055505050565b600060208083528351808285015260005b8181101561132357858101830151858201604001528201611307565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461099357600080fd5b6000806040838503121561136c57600080fd5b823561137781611344565b946020939093013593505050565b60008060006060848603121561139a57600080fd5b83356113a581611344565b925060208401356113b581611344565b929592945050506040919091013590565b6000602082840312156113d857600080fd5b81356113e381611344565b9392505050565b600080604083850312156113fd57600080fd5b50508035926020909101359150565b6000806040838503121561141f57600080fd5b823561142a81611344565b9150602083013561143a81611344565b809150509250929050565b6000806040838503121561145857600080fd5b823561146381611344565b91506020830135801515811461143a57600080fd5b600181811c9082168061148c57607f821691505b6020821081036114ac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610609576106096114b2565b60208082526028908201527f4c5020506169722063616e6e6f742062652074686520446561642077616c6c65604082015267742c206f7220302160c01b606082015260800190565b60008261154057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526034908201527f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f666040820152732074686520737570706c79206174206f6e63652160601b606082015260800190565b600181815b808511156115d45781600019048211156115ba576115ba6114b2565b808516156115c757918102915b93841c939080029061159e565b509250929050565b6000826115eb57506001610609565b816115f857506000610609565b816001811461160e576002811461161857611634565b6001915050610609565b60ff841115611629576116296114b2565b50506001821b610609565b5060208310610133831016604e8410600b8410161715611657575081810a610609565b6116618383611599565b8060001904821115611675576116756114b2565b029392505050565b60006113e360ff8416836115dc565b60008160001904831182151516156116a6576116a66114b2565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b81810381811115610609576106096114b2565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117b457600080fd5b81516113e381611344565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561180f5784516001600160a01b0316835293830193918301916001016117ea565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561184557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c3d30c82fab9b044692eb2c342a0f3f55d0c05a3f7a97ac45b8b07982d0e3fd264736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806375f0a874116100ec578063ad16a0cf1161008a578063dd62ed3e11610064578063dd62ed3e146104ed578063df8408fe1461050d578063f2fde38b1461052d578063f345bd851461054d57600080fd5b8063ad16a0cf146104ab578063c0fdea57146104c1578063d12a7688146104d757600080fd5b80638fcc250d116100c65780638fcc250d1461043657806395d89b4114610456578063a457c2d71461046b578063a9059cbb1461048b57600080fd5b806375f0a874146103c8578063768dc710146103e85780638da5cb5b1461041857600080fd5b806339509351116101595780635d098b38116101335780635d098b381461033b5780635f7ce6a71461035b57806370a082311461037b578063715018a6146103b157600080fd5b806339509351146102e557806349bd5a5e14610305578063527ffabd1461032557600080fd5b80631694505e116101955780631694505e1461025657806318160ddd1461028a57806323b872dd146102a9578063313ce567146102c957600080fd5b806303fd2a45146101c757806306fdde0314610204578063095ea7b31461022657600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b50600d546101e7906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021057600080fd5b50610219610563565b6040516101fb91906112f6565b34801561023257600080fd5b50610246610241366004611359565b6105f5565b60405190151581526020016101fb565b34801561026257600080fd5b506101e77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561029657600080fd5b506002545b6040519081526020016101fb565b3480156102b557600080fd5b506102466102c4366004611385565b61060f565b3480156102d557600080fd5b50604051600981526020016101fb565b3480156102f157600080fd5b50610246610300366004611359565b610633565b34801561031157600080fd5b506012546101e7906001600160a01b031681565b34801561033157600080fd5b5061029b600b5481565b34801561034757600080fd5b506102466103563660046113c6565b610655565b34801561036757600080fd5b506102466103763660046113ea565b6106e1565b34801561038757600080fd5b5061029b6103963660046113c6565b6001600160a01b031660009081526020819052604090205490565b3480156103bd57600080fd5b506103c661076a565b005b3480156103d457600080fd5b50600c546101e7906001600160a01b031681565b3480156103f457600080fd5b506102466104033660046113c6565b600f6020526000908152604090205460ff1681565b34801561042457600080fd5b506005546001600160a01b03166101e7565b34801561044257600080fd5b506102466104513660046113ea565b61077e565b34801561046257600080fd5b50610219610827565b34801561047757600080fd5b50610246610486366004611359565b610836565b34801561049757600080fd5b506102466104a6366004611359565b6108b1565b3480156104b757600080fd5b5061029b60115481565b3480156104cd57600080fd5b5061029b600e5481565b3480156104e357600080fd5b5061029b60105481565b3480156104f957600080fd5b5061029b61050836600461140c565b6108bf565b34801561051957600080fd5b506103c6610528366004611445565b6108ea565b34801561053957600080fd5b506103c66105483660046113c6565b61091d565b34801561055957600080fd5b5061029b600a5481565b60606003805461057290611478565b80601f016020809104026020016040519081016040528092919081815260200182805461059e90611478565b80156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b600033610603818585610996565b60019150505b92915050565b60003361061d858285610aba565b610628858585610b34565b506001949350505050565b60003361060381858561064683836108bf565b61065091906114c8565b610996565b600061065f610dd1565b600d546001600160a01b03908116908316036106965760405162461bcd60e51b815260040161068d906114db565b60405180910390fd5b6001600160a01b0382166106bc5760405162461bcd60e51b815260040161068d906114db565b50600c80546001600160a01b0383166001600160a01b03199091161790556001919050565b60006106eb610dd1565b600a6106f783856114c8565b111561075b5760405162461bcd60e51b815260206004820152602d60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526c61746572207468616e2031302560981b606482015260840161068d565b50600a91909155600b55600190565b610772610dd1565b61077c6000610e2b565b565b6000610788610dd1565b60626009546107979190611523565b83106107b55760405162461bcd60e51b815260040161068d90611545565b60626009546107c49190611523565b82106107e25760405162461bcd60e51b815260040161068d90611545565b6008546107f39060ff16600a61167d565b6107fd908461168c565b6010556008546108119060ff16600a61167d565b61081b908361168c565b60115550600192915050565b60606004805461057290611478565b6000338161084482866108bf565b9050838110156108a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161068d565b6106288286868403610996565b600033610603818585610b34565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108f2610dd1565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b610925610dd1565b6001600160a01b03811661098a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068d565b61099381610e2b565b50565b6001600160a01b0383166109f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161068d565b6001600160a01b038216610a595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161068d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610ac684846108bf565b90506000198114610b2e5781811015610b215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161068d565b610b2e8484848403610996565b50505050565b6001600160a01b038316610b5a5760405162461bcd60e51b815260040161068d906116ab565b6001600160a01b038216610b805760405162461bcd60e51b815260040161068d906116f0565b80610ba0846001600160a01b031660009081526020819052604090205490565b1015610bbe5760405162461bcd60e51b815260040161068d90611733565b6012546001600160a01b0384811691161480610be757506012546001600160a01b038381169116145b8015610bfd5750601254600160a01b900460ff16155b15610dc1576012546001600160a01b03848116911614610cea57600e54306000908152602081905260408120549091610c3591611779565b90506010548110610c4b57610c4b601054610e7d565b601154600e5410610ce857610c61601154610f24565b601154600e6000828254610c759190611779565b9091555050600c546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610ce65760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b604482015260640161068d565b505b505b6001600160a01b0383166000908152600f602052604081205460ff1680610d2957506001600160a01b0383166000908152600f602052604090205460ff165b15610d35575080610db6565b60006064600b5484610d47919061168c565b610d519190611523565b905060006064600a5485610d65919061168c565b610d6f9190611523565b9050610d7b81836114c8565b610d859085611779565b925081600e6000828254610d9991906114c8565b90915550610db390508630610dae84866114c8565b611104565b50505b610b2e848483611104565b610dcc838383611104565b505050565b6005546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6012805460ff60a01b1916600160a01b1790556000610e9d600283611523565b90506000610eab8284611779565b905047610eb783610f24565b6000610ec38247611779565b9050610ecf83826111f0565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506012805460ff60a01b19169055505050565b6012805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f6c57610f6c61178c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100e91906117a2565b816001815181106110215761102161178c565b60200260200101906001600160a01b031690816001600160a01b03168152505061106c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610996565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906110c19085906000908690309042906004016117bf565b600060405180830381600087803b1580156110db57600080fd5b505af11580156110ef573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b6001600160a01b03831661112a5760405162461bcd60e51b815260040161068d906116ab565b6001600160a01b0382166111505760405162461bcd60e51b815260040161068d906116f0565b6001600160a01b038316600090815260208190526040902054818110156111895760405162461bcd60e51b815260040161068d90611733565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6012805460ff60a01b1916600160a01b17905561122e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610996565b600c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156112bd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112e29190611830565b50506012805460ff60a01b19169055505050565b600060208083528351808285015260005b8181101561132357858101830151858201604001528201611307565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461099357600080fd5b6000806040838503121561136c57600080fd5b823561137781611344565b946020939093013593505050565b60008060006060848603121561139a57600080fd5b83356113a581611344565b925060208401356113b581611344565b929592945050506040919091013590565b6000602082840312156113d857600080fd5b81356113e381611344565b9392505050565b600080604083850312156113fd57600080fd5b50508035926020909101359150565b6000806040838503121561141f57600080fd5b823561142a81611344565b9150602083013561143a81611344565b809150509250929050565b6000806040838503121561145857600080fd5b823561146381611344565b91506020830135801515811461143a57600080fd5b600181811c9082168061148c57607f821691505b6020821081036114ac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610609576106096114b2565b60208082526028908201527f4c5020506169722063616e6e6f742062652074686520446561642077616c6c65604082015267742c206f7220302160c01b606082015260800190565b60008261154057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526034908201527f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f666040820152732074686520737570706c79206174206f6e63652160601b606082015260800190565b600181815b808511156115d45781600019048211156115ba576115ba6114b2565b808516156115c757918102915b93841c939080029061159e565b509250929050565b6000826115eb57506001610609565b816115f857506000610609565b816001811461160e576002811461161857611634565b6001915050610609565b60ff841115611629576116296114b2565b50506001821b610609565b5060208310610133831016604e8410600b8410161715611657575081810a610609565b6116618383611599565b8060001904821115611675576116756114b2565b029392505050565b60006113e360ff8416836115dc565b60008160001904831182151516156116a6576116a66114b2565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b81810381811115610609576106096114b2565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117b457600080fd5b81516113e381611344565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561180f5784516001600160a01b0316835293830193918301916001016117ea565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561184557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c3d30c82fab9b044692eb2c342a0f3f55d0c05a3f7a97ac45b8b07982d0e3fd264736f6c63430008100033

Deployed Bytecode Sourcemap

28479:7183:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28840:64;;;;;;;;;;-1:-1:-1;28840:64:0;;;;-1:-1:-1;;;;;28840:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;28840:64:0;;;;;;;;18197:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20471:244::-;;;;;;;;;;-1:-1:-1;20471:244:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;20471:244:0;1231:187:1;29158:51:0;;;;;;;;;;;;;;;19335:110;;;;;;;;;;-1:-1:-1;19425:12:0;;19335:110;;;1803:25:1;;;1791:2;1776:18;19335:110:0;1657:177:1;21295:297:0;;;;;;;;;;-1:-1:-1;21295:297:0;;;;;:::i;:::-;;:::i;19178:92::-;;;;;;;;;;-1:-1:-1;19178:92:0;;19261:1;2442:36:1;;2430:2;2415:18;19178:92:0;2300:184:1;23011:272:0;;;;;;;;;;-1:-1:-1;23011:272:0;;;;;:::i;:::-;;:::i;29216:28::-;;;;;;;;;;-1:-1:-1;29216:28:0;;;;-1:-1:-1;;;;;29216:28:0;;;28715:34;;;;;;;;;;;;;;;;34257:347;;;;;;;;;;-1:-1:-1;34257:347:0;;;;;:::i;:::-;;:::i;34612:388::-;;;;;;;;;;-1:-1:-1;34612:388:0;;;;;:::i;:::-;;:::i;18362:177::-;;;;;;;;;;-1:-1:-1;18362:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18513:18:0;18481:7;18513:18;;;;;;;;;;;;18362:177;15456:103;;;;;;;;;;;;;:::i;:::-;;28758:75;;;;;;;;;;-1:-1:-1;28758:75:0;;;;-1:-1:-1;;;;;28758:75:0;;;28955:50;;;;;;;;;;-1:-1:-1;28955:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14808:87;;;;;;;;;;-1:-1:-1;14881:6:0;;-1:-1:-1;;;;;14881:6:0;14808:87;;35008:614;;;;;;;;;;-1:-1:-1;35008:614:0;;;;;:::i;:::-;;:::i;18021:106::-;;;;;;;;;;;;;:::i;22095:507::-;;;;;;;;;;-1:-1:-1;22095:507:0;;;;;:::i;:::-;;:::i;19915:236::-;;;;;;;;;;-1:-1:-1;19915:236:0;;;;;:::i;:::-;;:::i;29087:62::-;;;;;;;;;;;;;;;;28911:37;;;;;;;;;;;;;;;;29012:68;;;;;;;;;;;;;;;;19508:201;;;;;;;;;;-1:-1:-1;19508:201:0;;;;;:::i;:::-;;:::i;32725:132::-;;;;;;;;;;-1:-1:-1;32725:132:0;;;;;:::i;:::-;;:::i;15714:238::-;;;;;;;;;;-1:-1:-1;15714:238:0;;;;;:::i;:::-;;:::i;28674:34::-;;;;;;;;;;;;;;;;18197:102;18253:13;18286:5;18279:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18197:102;:::o;20471:244::-;20592:4;13681:10;20653:32;13681:10;20669:7;20678:6;20653:8;:32::i;:::-;20703:4;20696:11;;;20471:244;;;;;:::o;21295:297::-;21428:4;13681:10;21486:38;21502:4;13681:10;21517:6;21486:15;:38::i;:::-;21535:27;21545:4;21551:2;21555:6;21535:9;:27::i;:::-;-1:-1:-1;21580:4:0;;21295:297;-1:-1:-1;;;;21295:297:0:o;23011:272::-;23128:4;13681:10;23189:64;13681:10;23205:7;23242:10;23214:25;13681:10;23205:7;23214:9;:25::i;:::-;:38;;;;:::i;:::-;23189:8;:64::i;34257:347::-;34357:4;14694:13;:11;:13::i;:::-;34400:4:::1;::::0;-1:-1:-1;;;;;34400:4:0;;::::1;34387:17:::0;;::::1;::::0;34379:70:::1;;;;-1:-1:-1::0;;;34379:70:0::1;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1::0;;;;;34468:23:0;::::1;34460:76;;;;-1:-1:-1::0;;;34460:76:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;34547:15:0::1;:27:::0;;-1:-1:-1;;;;;34547:27:0;::::1;-1:-1:-1::0;;;;;;34547:27:0;;::::1;;::::0;;;34257:347;;;:::o;34612:388::-;34757:4;14694:13;:11;:13::i;:::-;34826:2:::1;34788:33;34805:16:::0;34788;:33:::1;:::i;:::-;34787:41;;34779:99;;;::::0;-1:-1:-1;;;34779:99:0;;5066:2:1;34779:99:0::1;::::0;::::1;5048:21:1::0;5105:2;5085:18;;;5078:30;5144:34;5124:18;;;5117:62;-1:-1:-1;;;5195:18:1;;;5188:43;5248:19;;34779:99:0::1;4864:409:1::0;34779:99:0::1;-1:-1:-1::0;34889:15:0::1;:34:::0;;;;34934:15:::1;:34:::0;34988:4:::1;::::0;34612:388::o;15456:103::-;14694:13;:11;:13::i;:::-;15521:30:::1;15548:1;15521:18;:30::i;:::-;15456:103::o:0;35008:614::-;35177:4;14694:13;:11;:13::i;:::-;35250:2:::1;35240:7;;:12;;;;:::i;:::-;35207:30;:45;35199:110;;;;-1:-1:-1::0;;;35199:110:0::1;;;;;;;:::i;:::-;35365:2;35355:7;;:12;;;;:::i;:::-;35328:24;:39;35320:104;;;;-1:-1:-1::0;;;35320:104:0::1;;;;;;;:::i;:::-;35504:9;::::0;35500:13:::1;::::0;35504:9:::1;;35500:2;:13;:::i;:::-;35467:46;::::0;:30;:46:::1;:::i;:::-;35435:29;:78:::0;35581:9:::1;::::0;35577:13:::1;::::0;35581:9:::1;;35577:2;:13;:::i;:::-;35550:40;::::0;:24;:40:::1;:::i;:::-;35524:23;:66:::0;-1:-1:-1;35610:4:0::1;35008:614:::0;;;;:::o;18021:106::-;18079:13;18112:7;18105:14;;;;;:::i;22095:507::-;22217:4;13681:10;22217:4;22305:25;13681:10;22322:7;22305:9;:25::i;:::-;22278:52;;22383:15;22363:16;:35;;22341:122;;;;-1:-1:-1;;;22341:122:0;;7679:2:1;22341:122:0;;;7661:21:1;7718:2;7698:18;;;7691:30;7757:34;7737:18;;;7730:62;-1:-1:-1;;;7808:18:1;;;7801:35;7853:19;;22341:122:0;7477:401:1;22341:122:0;22499:60;22508:5;22515:7;22543:15;22524:16;:34;22499:8;:60::i;19915:236::-;20032:4;13681:10;20093:28;13681:10;20110:2;20114:6;20093:9;:28::i;19508:201::-;-1:-1:-1;;;;;19674:18:0;;;19642:7;19674:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19508:201::o;32725:132::-;14694:13;:11;:13::i;:::-;-1:-1:-1;;;;;32811:28:0;;;::::1;;::::0;;;:18:::1;:28;::::0;;;;:38;;-1:-1:-1;;32811:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32725:132::o;15714:238::-;14694:13;:11;:13::i;:::-;-1:-1:-1;;;;;15817:22:0;::::1;15795:110;;;::::0;-1:-1:-1;;;15795:110:0;;8085:2:1;15795:110:0::1;::::0;::::1;8067:21:1::0;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:36;8260:19;;15795:110:0::1;7883:402:1::0;15795:110:0::1;15916:28;15935:8;15916:18;:28::i;:::-;15714:238:::0;:::o;25318:380::-;-1:-1:-1;;;;;25454:19:0;;25446:68;;;;-1:-1:-1;;;25446:68:0;;8492:2:1;25446:68:0;;;8474:21:1;8531:2;8511:18;;;8504:30;8570:34;8550:18;;;8543:62;-1:-1:-1;;;8621:18:1;;;8614:34;8665:19;;25446:68:0;8290:400:1;25446:68:0;-1:-1:-1;;;;;25533:21:0;;25525:68;;;;-1:-1:-1;;;25525:68:0;;8897:2:1;25525:68:0;;;8879:21:1;8936:2;8916:18;;;8909:30;8975:34;8955:18;;;8948:62;-1:-1:-1;;;9026:18:1;;;9019:32;9068:19;;25525:68:0;8695:398:1;25525:68:0;-1:-1:-1;;;;;25606:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25658:32;;1803:25:1;;;25658:32:0;;1776:18:1;25658:32:0;;;;;;;25318:380;;;:::o;25989:502::-;26124:24;26151:25;26161:5;26168:7;26151:9;:25::i;:::-;26124:52;;-1:-1:-1;;26191:16:0;:37;26187:297;;26291:6;26271:16;:26;;26245:117;;;;-1:-1:-1;;;26245:117:0;;9300:2:1;26245:117:0;;;9282:21:1;9339:2;9319:18;;;9312:30;9378:31;9358:18;;;9351:59;9427:18;;26245:117:0;9098:353:1;26245:117:0;26406:51;26415:5;26422:7;26450:6;26431:16;:25;26406:8;:51::i;:::-;26113:378;25989:502;;;:::o;30881:1836::-;-1:-1:-1;;;;;30979:18:0;;30971:68;;;;-1:-1:-1;;;30971:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31058:16:0;;31050:64;;;;-1:-1:-1;;;31050:64:0;;;;;;;:::i;:::-;31152:6;31133:15;31143:4;-1:-1:-1;;;;;18513:18:0;18481:7;18513:18;;;;;;;;;;;;18362:177;31133:15;:25;;31125:76;;;;-1:-1:-1;;;31125:76:0;;;;;;;:::i;:::-;31227:13;;-1:-1:-1;;;;;31219:21:0;;;31227:13;;31219:21;;:44;;-1:-1:-1;31250:13:0;;-1:-1:-1;;;;;31244:19:0;;;31250:13;;31244:19;31219:44;31218:67;;;;-1:-1:-1;31269:16:0;;-1:-1:-1;;;31269:16:0;;;;31268:17;31218:67;31214:1496;;;31314:13;;-1:-1:-1;;;;;31306:21:0;;;31314:13;;31306:21;31302:681;;31410:18;;31401:4;31348:32;18513:18;;;;;;;;;;;31348:32;;31383:45;;;:::i;:::-;31348:80;;31479:29;;31451:24;:57;31447:152;;31533:46;31549:29;;31533:15;:46::i;:::-;31645:23;;31622:18;;31621:47;31617:351;;31693:42;31711:23;;31693:17;:42::i;:::-;31780:23;;31758:18;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;31846:15:0;;31838:52;;31826:9;;-1:-1:-1;;;;;31846:15:0;;31868:21;31838:52;;;;;31826:9;31838:52;31826:9;31838:52;31868:21;31846:15;31838:52;;;;;;;31826:64;;31921:4;31913:35;;;;-1:-1:-1;;;31913:35:0;;11008:2:1;31913:35:0;;;10990:21:1;11047:2;11027:18;;;11020:30;-1:-1:-1;;;11066:18:1;;;11059:48;11124:18;;31913:35:0;10806:342:1;31913:35:0;31670:298;31617:351;31329:654;31302:681;-1:-1:-1;;;;;32040:24:0;;31999:22;32040:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32068:22:0;;;;;;:18;:22;;;;;;;;32040:50;32036:531;;;-1:-1:-1;32128:6:0;32036:531;;;32189:22;32244:3;32225:15;;32216:6;:24;;;;:::i;:::-;32215:32;;;;:::i;:::-;32189:59;;32267:22;32322:3;32303:15;;32294:6;:24;;;;:::i;:::-;32293:32;;;;:::i;:::-;32267:59;-1:-1:-1;32372:31:0;32267:59;32372:14;:31;:::i;:::-;32362:42;;:6;:42;:::i;:::-;32345:59;;32445:14;32423:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32480:71:0;;-1:-1:-1;32496:4:0;32510;32518:31;32535:14;32518;:31;:::i;:::-;32480:15;:71::i;:::-;32170:397;;32036:531;32581:41;32597:4;32603:2;32607:14;32581:15;:41::i;31214:1496::-;32665:33;32681:4;32687:2;32691:6;32665:15;:33::i;:::-;30881:1836;;;:::o;14973:132::-;14881:6;;-1:-1:-1;;;;;14881:6:0;13681:10;15037:23;15029:68;;;;-1:-1:-1;;;15029:68:0;;11355:2:1;15029:68:0;;;11337:21:1;;;11374:18;;;11367:30;11433:34;11413:18;;;11406:62;11485:18;;15029:68:0;11153:356:1;16112:191:0;16205:6;;;-1:-1:-1;;;;;16222:17:0;;;-1:-1:-1;;;;;;16222:17:0;;;;;;;16255:40;;16205:6;;;16222:17;16205:6;;16255:40;;16186:16;;16255:40;16175:128;16112:191;:::o;32865:474::-;29456:16;:23;;-1:-1:-1;;;;29456:23:0;-1:-1:-1;;;29456:23:0;;;;32967:24:::1;32990:1;32967:20:::0;:24:::1;:::i;:::-;32951:41:::0;-1:-1:-1;33003:17:0::1;33024:27;32951:41:::0;33024:20;:27:::1;:::i;:::-;33003:49:::0;-1:-1:-1;33090:21:0::1;33124:23;33142:4:::0;33124:17:::1;:23::i;:::-;33160:18;33182:38;33206:14:::0;33182:21:::1;:38;:::i;:::-;33160:61;;33234:36;33248:9;33259:10;33234:13;:36::i;:::-;33288:43;::::0;;11716:25:1;;;11772:2;11757:18;;11750:34;;;11800:18;;;11793:34;;;33288:43:0::1;::::0;11704:2:1;11689:18;33288:43:0::1;;;;;;;-1:-1:-1::0;;29502:16:0;:24;;-1:-1:-1;;;;29502:24:0;;;-1:-1:-1;;;32865:474:0:o;33347:488::-;29456:16;:23;;-1:-1:-1;;;;29456:23:0;-1:-1:-1;;;29456:23:0;;;33450:16:::1;::::0;;33464:1:::1;33450:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33450:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33450:16:0::1;33426:40;;33495:4;33477;33482:1;33477:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33477:23:0::1;;;-1:-1:-1::0;;;;;33477:23:0::1;;;::::0;::::1;33521:15;-1:-1:-1::0;;;;;33521:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33511:4;33516:1;33511:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33511:32:0::1;;;-1:-1:-1::0;;;;;33511:32:0::1;;;::::0;::::1;33556:62;33573:4;33588:15;33606:11;33556:8;:62::i;:::-;33631:196;::::0;-1:-1:-1;;;33631:196:0;;-1:-1:-1;;;;;33631:15:0::1;:66;::::0;::::1;::::0;:196:::1;::::0;33712:11;;33738:1:::1;::::0;33754:4;;33781::::1;::::0;33801:15:::1;::::0;33631:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29502:16:0;:24;;-1:-1:-1;;;;29502:24:0;;;-1:-1:-1;;;;33347:488:0:o;26499:776::-;-1:-1:-1;;;;;26630:18:0;;26622:68;;;;-1:-1:-1;;;26622:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26709:16:0;;26701:64;;;;-1:-1:-1;;;26701:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26800:15:0;;26778:19;26800:15;;;;;;;;;;;26848:21;;;;26826:109;;;;-1:-1:-1;;;26826:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26971:15:0;;;:9;:15;;;;;;;;;;;26989:20;;;26971:38;;27189:13;;;;;;;;;;:23;;;;;;27241:26;;1803:25:1;;;27189:13:0;;27241:26;;1776:18:1;27241:26:0;;;;;;;26611:664;26499:776;;;:::o;33843:406::-;29456:16;:23;;-1:-1:-1;;;;29456:23:0;-1:-1:-1;;;29456:23:0;;;33960:62:::1;33977:4;33992:15;34010:11:::0;33960:8:::1;:62::i;:::-;34185:15;::::0;34035:206:::1;::::0;-1:-1:-1;;;34035:206:0;;34107:4:::1;34035:206;::::0;::::1;13684:34:1::0;13734:18;;;13727:34;;;34153:1:0::1;13777:18:1::0;;;13770:34;;;13820:18;;;13813:34;-1:-1:-1;;;;;34185:15:0;;::::1;13863:19:1::0;;;13856:44;34215:15:0::1;13916:19:1::0;;;13909:35;34035:15:0::1;:31:::0;;::::1;::::0;::::1;::::0;34074:9;;13618:19:1;;34035:206:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29502:16:0;:24;;-1:-1:-1;;;;29502:24:0;;;-1:-1:-1;;;33843:406:0:o;222:548:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2741:248::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;-1:-1:-1;;2909:23:1;;;2979:2;2964:18;;;2951:32;;-1:-1:-1;2741:248:1:o;2994:388::-;3062:6;3070;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;3178:9;3165:23;3197:31;3222:5;3197:31;:::i;:::-;3247:5;-1:-1:-1;3304:2:1;3289:18;;3276:32;3317:33;3276:32;3317:33;:::i;:::-;3369:7;3359:17;;;2994:388;;;;;:::o;3387:416::-;3452:6;3460;3513:2;3501:9;3492:7;3488:23;3484:32;3481:52;;;3529:1;3526;3519:12;3481:52;3568:9;3555:23;3587:31;3612:5;3587:31;:::i;:::-;3637:5;-1:-1:-1;3694:2:1;3679:18;;3666:32;3736:15;;3729:23;3717:36;;3707:64;;3767:1;3764;3757:12;3808:380;3887:1;3883:12;;;;3930;;;3951:61;;4005:4;3997:6;3993:17;3983:27;;3951:61;4058:2;4050:6;4047:14;4027:18;4024:38;4021:161;;4104:10;4099:3;4095:20;4092:1;4085:31;4139:4;4136:1;4129:15;4167:4;4164:1;4157:15;4021:161;;3808:380;;;:::o;4193:127::-;4254:10;4249:3;4245:20;4242:1;4235:31;4285:4;4282:1;4275:15;4309:4;4306:1;4299:15;4325:125;4390:9;;;4411:10;;;4408:36;;;4424:18;;:::i;4455:404::-;4657:2;4639:21;;;4696:2;4676:18;;;4669:30;4735:34;4730:2;4715:18;;4708:62;-1:-1:-1;;;4801:2:1;4786:18;;4779:38;4849:3;4834:19;;4455:404::o;5278:217::-;5318:1;5344;5334:132;;5388:10;5383:3;5379:20;5376:1;5369:31;5423:4;5420:1;5413:15;5451:4;5448:1;5441:15;5334:132;-1:-1:-1;5480:9:1;;5278:217::o;5500:416::-;5702:2;5684:21;;;5741:2;5721:18;;;5714:30;5780:34;5775:2;5760:18;;5753:62;-1:-1:-1;;;5846:2:1;5831:18;;5824:50;5906:3;5891:19;;5500:416::o;5921:422::-;6010:1;6053:5;6010:1;6067:270;6088:7;6078:8;6075:21;6067:270;;;6147:4;6143:1;6139:6;6135:17;6129:4;6126:27;6123:53;;;6156:18;;:::i;:::-;6206:7;6196:8;6192:22;6189:55;;;6226:16;;;;6189:55;6305:22;;;;6265:15;;;;6067:270;;;6071:3;5921:422;;;;;:::o;6348:806::-;6397:5;6427:8;6417:80;;-1:-1:-1;6468:1:1;6482:5;;6417:80;6516:4;6506:76;;-1:-1:-1;6553:1:1;6567:5;;6506:76;6598:4;6616:1;6611:59;;;;6684:1;6679:130;;;;6591:218;;6611:59;6641:1;6632:10;;6655:5;;;6679:130;6716:3;6706:8;6703:17;6700:43;;;6723:18;;:::i;:::-;-1:-1:-1;;6779:1:1;6765:16;;6794:5;;6591:218;;6893:2;6883:8;6880:16;6874:3;6868:4;6865:13;6861:36;6855:2;6845:8;6842:16;6837:2;6831:4;6828:12;6824:35;6821:77;6818:159;;;-1:-1:-1;6930:19:1;;;6962:5;;6818:159;7009:34;7034:8;7028:4;7009:34;:::i;:::-;7079:6;7075:1;7071:6;7067:19;7058:7;7055:32;7052:58;;;7090:18;;:::i;:::-;7128:20;;6348:806;-1:-1:-1;;;6348:806:1:o;7159:140::-;7217:5;7246:47;7287:4;7277:8;7273:19;7267:4;7246:47;:::i;7304:168::-;7344:7;7410:1;7406;7402:6;7398:14;7395:1;7392:21;7387:1;7380:9;7373:17;7369:45;7366:71;;;7417:18;;:::i;:::-;-1:-1:-1;7457:9:1;;7304:168::o;9456:401::-;9658:2;9640:21;;;9697:2;9677:18;;;9670:30;9736:34;9731:2;9716:18;;9709:62;-1:-1:-1;;;9802:2:1;9787:18;;9780:35;9847:3;9832:19;;9456:401::o;9862:399::-;10064:2;10046:21;;;10103:2;10083:18;;;10076:30;10142:34;10137:2;10122:18;;10115:62;-1:-1:-1;;;10208:2:1;10193:18;;10186:33;10251:3;10236:19;;9862:399::o;10266:402::-;10468:2;10450:21;;;10507:2;10487:18;;;10480:30;10546:34;10541:2;10526:18;;10519:62;-1:-1:-1;;;10612:2:1;10597:18;;10590:36;10658:3;10643:19;;10266:402::o;10673:128::-;10740:9;;;10761:11;;;10758:37;;;10775:18;;:::i;11970:127::-;12031:10;12026:3;12022:20;12019:1;12012:31;12062:4;12059:1;12052:15;12086:4;12083:1;12076:15;12102:251;12172:6;12225:2;12213:9;12204:7;12200:23;12196:32;12193:52;;;12241:1;12238;12231:12;12193:52;12273:9;12267:16;12292:31;12317:5;12292:31;:::i;12358:980::-;12620:4;12668:3;12657:9;12653:19;12699:6;12688:9;12681:25;12725:2;12763:6;12758:2;12747:9;12743:18;12736:34;12806:3;12801:2;12790:9;12786:18;12779:31;12830:6;12865;12859:13;12896:6;12888;12881:22;12934:3;12923:9;12919:19;12912:26;;12973:2;12965:6;12961:15;12947:29;;12994:1;13004:195;13018:6;13015:1;13012:13;13004:195;;;13083:13;;-1:-1:-1;;;;;13079:39:1;13067:52;;13174:15;;;;13139:12;;;;13115:1;13033:9;13004:195;;;-1:-1:-1;;;;;;;13255:32:1;;;;13250:2;13235:18;;13228:60;-1:-1:-1;;;13319:3:1;13304:19;13297:35;13216:3;12358:980;-1:-1:-1;;;12358:980:1:o;13955:306::-;14043:6;14051;14059;14112:2;14100:9;14091:7;14087:23;14083:32;14080:52;;;14128:1;14125;14118:12;14080:52;14157:9;14151:16;14141:26;;14207:2;14196:9;14192:18;14186:25;14176:35;;14251:2;14240:9;14236:18;14230:25;14220:35;;13955:306;;;;;:::o

Swarm Source

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