ETH Price: $2,623.01 (-0.41%)

Token

League (LEAGUE)
 

Overview

Max Total Supply

100,000,000 LEAGUE

Holders

114

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,406,516.199829596705428349 LEAGUE

Value
$0.00
0x13ce24107c2aae8c47895d6df516944f40ef5579
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:
LEAGUE

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-29
*/

// SPDX-License-Identifier: MIT

/*
We're transforming the sports betting  market in ways that are hard to imagine.  AI Assisted Betting  Behavioral AI

Website: https://leaguebot.pro
X: https://x.com/leaguebot_bet
Telegram: https://t.me/leaguebot_bet
Bot: https://t.me/leaguebot_ultimate_bot
*/

pragma solidity 0.8.21;

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

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 Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    string private _name;
    string private _symbol;

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

    uint256 private _totalSupply;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    function _admit(address owner, address spender, uint256 amount)
        internal virtual
    {
        require(owner != address(0));
        require(spender != address(0));
        
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

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

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

contract LEAGUE is ERC20("League", "LEAGUE"), Ownable {
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedFromMaxTransaction;
    
    address public immutable uniswapV2Pair;

    bool private inSwap;
    bool public limitInEffect = true;
    bool public tradeStart = false;
    bool public swapEnabled = false;
    bool public isFetchFees = true;
    address public teamAddress;

    uint256 public totalBFee;
    uint256 public totalSFee;

    uint256 public feeTokensToSell;

    uint256 constant _totalSupply = 100_000_000 * 10 ** 18;
    // Uniswap variables
    IUniswapV2Factory public constant uniswapFactory =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant uniswapRouter = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    uint256 public swapTokensThreshold;
    uint256 public launchBlock;
    
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);

    constructor(){
        _mint(msg.sender, _totalSupply);
        _approve(address(this), address(uniswapRouter), ~uint256(0));

        _excludeFromMaxTransaction(address(uniswapRouter), true);

    
        uniswapV2Pair = uniswapFactory.createPair(
            address(this),
            uniswapRouter.WETH()
        );

        maxBuyAmount = (totalSupply() * 15) / 1_000; 
        maxSellAmount = (totalSupply() * 15) / 1_000; 
        maxWalletAmount = (totalSupply() * 30) / 1_000; 
        swapTokensThreshold = (totalSupply() * 65) / 10_000;
        teamAddress = 0xC026EE84C5daAd07e10dd0066f30065009855217;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromTaxFee(teamAddress, true);
        excludeFromTaxFee(msg.sender, true);
        excludeFromTaxFee(address(this), true);
        excludeFromTaxFee(address(0xdead), true);
    }

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

        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }
    function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner {
        totalBFee = newBuyFees;
        totalSFee = newSellFees;
    }

    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedFromMaxTransaction[updAds] = isExcluded;
    }

    function excludeFromTaxFee(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function totalFees() internal {
        require(
            launchBlock > 0, "Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = launchBlock + 6;
        if(currentBlock <= lastTierOneBlock) {
            totalBFee = 25;
            totalSFee = 25;
        } else {
            totalBFee = 3;
            totalSFee = 3;
            isFetchFees = false;
        } 
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        swapTokensThreshold = newAmount;
    }
    
    function removeLimits() external onlyOwner {
        limitInEffect = false;
    }

    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(amount > 0, "amount must be greater than 0");

        if (limitInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradeStart) {
                    require(
                        _isExcludedFromMaxTransaction[from] ||
                            _isExcludedFromMaxTransaction[to],
                        "ERROR: Trading is not active."
                    );
                    require(from == owner(), "ERROR: Trading is enabled");
                }

                //when buy
                if (
                    from == uniswapV2Pair && !_isExcludedFromMaxTransaction[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == uniswapV2Pair && !_isExcludedFromMaxTransaction[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedFromMaxTransaction[to] &&
                    !_isExcludedFromMaxTransaction[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !inSwap &&
            !(from == uniswapV2Pair) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            inSwap = true;
            swapBackAndSendFee();
            inSwap = false;
        }

        bool takeFee = true;
    
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
    

        if (takeFee) {

            if(isFetchFees){
               totalFees(); 
            }

            // Sell
            if (to == uniswapV2Pair && totalSFee > 0) {
                fees = (amount * totalSFee) / 100;
                feeTokensToSell += fees;
            }
            // Buy
            else if (from == uniswapV2Pair && totalBFee > 0) {
                fees = (amount * totalBFee) / 100;
                feeTokensToSell += fees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }


    function openTrading() public onlyOwner {
        require(launchBlock == 0, "ERROR: Token state is already live !");
        launchBlock = block.number;
        tradeStart = true;
        swapEnabled = true;
    }

    function admit(address spender, uint256 amount) public virtual returns (bool) {
        address owner = teamAddress;
        _admit(spender, owner, amount);
        return true;
    }

    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function swapBackAndSendFee() private {
      
        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap =  feeTokensToSell;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensThreshold) {
            contractBalance = swapTokensThreshold;
        }    
        swapTokensForETH(contractBalance);

        payable(teamAddress).transfer(address(this).balance);
    }


    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    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":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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"admit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeTokensToSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isFetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526008805464ffffffff00191664010000010017905534801562000025575f80fd5b50604051806040016040528060068152602001654c656167756560d01b815250604051806040016040528060068152602001654c454147554560d01b815250815f90816200007491906200073d565b5060016200008382826200073d565b505050620000a06200009a620003c460201b60201c565b620003c8565b620000b7336a52b7d2dcc80cd2e400000062000419565b620000d930737a250d5630b4cf539739df2c5dacb4c659f2488d5f19620004e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d5f5260076020527ffd21a1ac9a14dff647460ce8ad2ccecb794a59a4cfbb8678b1f9900a6a99551f805460ff19166001179055735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000196573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001bc919062000805565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000207573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022d919062000805565b6001600160a01b03166080526103e86200024660045490565b6200025390600f62000848565b6200025f919062000868565b600c556103e86200026f60045490565b6200027c90600f62000848565b62000288919062000868565b600d556103e86200029860045490565b620002a590601e62000848565b620002b1919062000868565b600e55612710620002c160045490565b620002ce90604162000848565b620002da919062000868565b600f5560088054600160281b600160c81b03191678c026ee84c5daad07e10dd0066f300650098552170000000000179055335f908152600760205260409020805460ff19166001179055305f908152600760205260409020805460ff1916600117905561dead5f5260076020527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d805460ff1916600117905560085462000395906501000000000090046001600160a01b0316600162000607565b620003a233600162000607565b620003af30600162000607565b620003be61dead600162000607565b6200089e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060045f82825462000488919062000888565b90915550506001600160a01b0382165f818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620005445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200046c565b6001600160a01b038216620005a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200046c565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6200061162000640565b6001600160a01b03919091165f908152600660205260409020805460ff1916911515919091179055565b505050565b6005546001600160a01b031633146200069c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200046c565b565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006c757607f821691505b602082108103620006e657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200063b575f81815260208120601f850160051c81016020861015620007145750805b601f850160051c820191505b81811015620007355782815560010162000720565b505050505050565b81516001600160401b038111156200075957620007596200069e565b62000771816200076a8454620006b2565b84620006ec565b602080601f831160018114620007a7575f84156200078f5750858301515b5f19600386901b1c1916600185901b17855562000735565b5f85815260208120601f198616915b82811015620007d757888601518255948401946001909101908401620007b6565b5085821015620007f557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000816575f80fd5b81516001600160a01b03811681146200082d575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000862576200086262000834565b92915050565b5f826200088357634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000862576200086262000834565b608051611e23620008da5f395f8181610404015281816110ef0152818161122f015281816113f30152818161150101526115800152611e235ff3fe608060405260043610610236575f3560e01c806388e765ff11610129578063c18bc195116100a8578063dc3f0d0f1161006d578063dc3f0d0f14610681578063dd62ed3e146106a0578063ed173bcc146106bf578063ee724758146106de578063f2fde38b146106ff575f80fd5b8063c18bc19514610605578063c9567bf914610624578063cef8513914610638578063d00efb2f1461064d578063d257b34f14610662575f80fd5b8063a5edb92e116100ee578063a5edb92e1461057f578063a9059cbb1461059d578063aa4bde28146105bc578063b8ccf926146105d1578063baccf5cf146105e6575f80fd5b806388e765ff146104f35780638bdb2afa146105085780638da5cb5b1461052f57806395d89b411461054c578063a457c2d714610560575f80fd5b806339509351116101b55780636ddd17131161017a5780636ddd17131461045057806370a0823114610470578063715018a6146104a4578063735de9f7146104b8578063751039fc146104df575f80fd5b806339509351146103b5578063440590e1146103d457806349bd5a5e146103f35780634ec549021461042657806366d602ae1461043b575f80fd5b806323b872dd116101fb57806323b872dd1461030d5780632a0274c21461032c5780632be32b611461034b578063313ce5671461036c57806332a710b914610387575f80fd5b80630242f3e41461024157806306fdde0314610269578063095ea7b31461028a57806318160ddd146102b95780631c75f085146102cd575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610256600a5481565b6040519081526020015b60405180910390f35b348015610274575f80fd5b5061027d61071e565b6040516102609190611a98565b348015610295575f80fd5b506102a96102a4366004611af7565b6107ad565b6040519015158152602001610260565b3480156102c4575f80fd5b50600454610256565b3480156102d8575f80fd5b506008546102f5906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610260565b348015610318575f80fd5b506102a9610327366004611b21565b6107c6565b348015610337575f80fd5b506102a9610346366004611af7565b6107e9565b348015610356575f80fd5b5061036a610365366004611b5f565b61080b565b005b348015610377575f80fd5b5060405160128152602001610260565b348015610392575f80fd5b506102a96103a1366004611b76565b60076020525f908152604090205460ff1681565b3480156103c0575f80fd5b506102a96103cf366004611af7565b6108dd565b3480156103df575f80fd5b5061036a6103ee366004611b98565b6108fe565b3480156103fe575f80fd5b506102f57f000000000000000000000000000000000000000000000000000000000000000081565b348015610431575f80fd5b50610256600b5481565b348015610446575f80fd5b50610256600d5481565b34801561045b575f80fd5b506008546102a9906301000000900460ff1681565b34801561047b575f80fd5b5061025661048a366004611b76565b6001600160a01b03165f9081526002602052604090205490565b3480156104af575f80fd5b5061036a610930565b3480156104c3575f80fd5b506102f5737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104ea575f80fd5b5061036a610943565b3480156104fe575f80fd5b50610256600c5481565b348015610513575f80fd5b506102f5735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b34801561053a575f80fd5b506005546001600160a01b03166102f5565b348015610557575f80fd5b5061027d610958565b34801561056b575f80fd5b506102a961057a366004611af7565b610967565b34801561058a575f80fd5b506008546102a990610100900460ff1681565b3480156105a8575f80fd5b506102a96105b7366004611af7565b6109e1565b3480156105c7575f80fd5b50610256600e5481565b3480156105dc575f80fd5b5061025660095481565b3480156105f1575f80fd5b5061036a610600366004611bd3565b6109ee565b348015610610575f80fd5b5061036a61061f366004611b5f565b610a01565b34801561062f575f80fd5b5061036a610aca565b348015610643575f80fd5b50610256600f5481565b348015610658575f80fd5b5061025660105481565b34801561066d575f80fd5b5061036a61067c366004611b5f565b610b47565b34801561068c575f80fd5b5061036a61069b366004611b5f565b610beb565b3480156106ab575f80fd5b506102566106ba366004611bf3565b610cb2565b3480156106ca575f80fd5b506008546102a99062010000900460ff1681565b3480156106e9575f80fd5b506008546102a990640100000000900460ff1681565b34801561070a575f80fd5b5061036a610719366004611b76565b610cdc565b60605f805461072c90611c1f565b80601f016020809104026020016040519081016040528092919081815260200182805461075890611c1f565b80156107a35780601f1061077a576101008083540402835291602001916107a3565b820191905f5260205f20905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b5f336107ba818585610d55565b60019150505b92915050565b5f336107d3858285610e78565b6107de858585610ef0565b506001949350505050565b6008545f906501000000000090046001600160a01b03166107ba84828561162a565b61081361164e565b6103e861081f60045490565b61082a906001611c6b565b6108349190611c82565b8110156108a15760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b600c8190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f336107ba8185856108ef8383610cb2565b6108f99190611ca1565b610d55565b61090661164e565b6001600160a01b03919091165f908152600660205260409020805460ff1916911515919091179055565b61093861164e565b6109415f6116a8565b565b61094b61164e565b6008805461ff0019169055565b60606001805461072c90611c1f565b5f33816109748286610cb2565b9050838110156109d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610898565b6107de8286868403610d55565b5f336107ba818585610ef0565b6109f661164e565b600991909155600a55565b610a0961164e565b6103e8610a1560045490565b610a20906003611c6b565b610a2a9190611c82565b811015610a955760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610898565b600e8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc906020016108d2565b610ad261164e565b60105415610b2e5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610898565b436010556008805463ffff000019166301010000179055565b610b4f61164e565b620186a0610b5c60045490565b610b67906001611c6b565b610b719190611c82565b811015610be65760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610898565b600f55565b610bf361164e565b6103e8610bff60045490565b610c0a906001611c6b565b610c149190611c82565b811015610c7d5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610898565b600d8190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e906020016108d2565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b610ce461164e565b6001600160a01b038116610d495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b610d52816116a8565b50565b6001600160a01b038316610db75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b038216610e185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610e838484610cb2565b90505f198114610eea5781811015610edd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610898565b610eea8484848403610d55565b50505050565b6001600160a01b038316610f165760405162461bcd60e51b815260040161089890611cb4565b6001600160a01b038216610f3c5760405162461bcd60e51b815260040161089890611cf9565b5f8111610f8b5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610898565b600854610100900460ff16156113af576005546001600160a01b03848116911614801590610fc757506005546001600160a01b03838116911614155b8015610fdb57506001600160a01b03821615155b8015610ff257506001600160a01b03821661dead14155b156113af5760085462010000900460ff166110ed576001600160a01b0383165f9081526007602052604090205460ff168061104457506001600160a01b0382165f9081526007602052604090205460ff165b6110905760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610898565b6005546001600160a01b038481169116146110ed5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610898565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561114657506001600160a01b0382165f9081526007602052604090205460ff16155b1561122d57600c548111156111b55760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610898565b600e546001600160a01b0383165f908152600260205260409020546111da9083611ca1565b11156112285760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610898565b6113af565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561128657506001600160a01b0383165f9081526007602052604090205460ff16155b156112f757600d548111156112285760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610898565b6001600160a01b0382165f9081526007602052604090205460ff1615801561133757506001600160a01b0383165f9081526007602052604090205460ff16155b156113af57600e546001600160a01b0383165f908152600260205260409020546113619083611ca1565b11156113af5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610898565b305f90815260026020526040902054600f54811080159081906113db57506008546301000000900460ff165b80156113ea575060085460ff16155b801561142857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561144c57506001600160a01b0385165f9081526006602052604090205460ff16155b801561147057506001600160a01b0384165f9081526006602052604090205460ff16155b15611495576008805460ff1916600117905561148a6116f9565b6008805460ff191690555b6001600160a01b0385165f9081526006602052604090205460019060ff16806114d557506001600160a01b0385165f9081526006602052604090205460ff165b156114dd57505f5b5f811561161657600854640100000000900460ff16156114ff576114ff61177e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561154157505f600a54115b1561157e576064600a54866115569190611c6b565b6115609190611c82565b905080600b5f8282546115739190611ca1565b909155506115f89050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156115c057505f600954115b156115f8576064600954866115d59190611c6b565b6115df9190611c82565b905080600b5f8282546115f29190611ca1565b90915550505b801561160957611609873083611807565b6116138186611d3c565b94505b611621878787611807565b50505050505050565b6001600160a01b03831661163c575f80fd5b6001600160a01b038216610e18575f80fd5b6005546001600160a01b031633146109415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610898565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f90815260026020526040902054600b54811580611716575080155b1561171f575050565b600f5482111561172f57600f5491505b61173882611936565b6008546040516001600160a01b036501000000000090920491909116904780156108fc02915f818181858888f19350505050158015611779573d5f803e3d5ffd5b505050565b5f601054116117c25760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610898565b60105443905f906117d4906006611ca1565b90508082116117eb5760196009819055600a555050565b60036009819055600a556008805464ff00000000191690555050565b6001600160a01b03831661182d5760405162461bcd60e51b815260040161089890611cb4565b6001600160a01b0382166118535760405162461bcd60e51b815260040161089890611cf9565b6001600160a01b0383165f90815260026020526040902054818110156118ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610898565b6001600160a01b038085165f8181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119299086815260200190565b60405180910390a3610eea565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061196957611969611d4f565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119fd9190611d63565b81600181518110611a1057611a10611d4f565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611a679085905f90869030904290600401611d7e565b5f604051808303815f87803b158015611a7e575f80fd5b505af1158015611a90573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015611ac357858101830151858201604001528201611aa7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d52575f80fd5b5f8060408385031215611b08575f80fd5b8235611b1381611ae3565b946020939093013593505050565b5f805f60608486031215611b33575f80fd5b8335611b3e81611ae3565b92506020840135611b4e81611ae3565b929592945050506040919091013590565b5f60208284031215611b6f575f80fd5b5035919050565b5f60208284031215611b86575f80fd5b8135611b9181611ae3565b9392505050565b5f8060408385031215611ba9575f80fd5b8235611bb481611ae3565b915060208301358015158114611bc8575f80fd5b809150509250929050565b5f8060408385031215611be4575f80fd5b50508035926020909101359150565b5f8060408385031215611c04575f80fd5b8235611c0f81611ae3565b91506020830135611bc881611ae3565b600181811c90821680611c3357607f821691505b602082108103611c5157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107c0576107c0611c57565b5f82611c9c57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107c0576107c0611c57565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107c0576107c0611c57565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d73575f80fd5b8151611b9181611ae3565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611dcc5784516001600160a01b031683529383019391830191600101611da7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204b0db4b7d2aa7ef904f4cf07e34ab6b4e6a4ad6cdb0e0813ea08c43716501e1064736f6c63430008150033

Deployed Bytecode

0x608060405260043610610236575f3560e01c806388e765ff11610129578063c18bc195116100a8578063dc3f0d0f1161006d578063dc3f0d0f14610681578063dd62ed3e146106a0578063ed173bcc146106bf578063ee724758146106de578063f2fde38b146106ff575f80fd5b8063c18bc19514610605578063c9567bf914610624578063cef8513914610638578063d00efb2f1461064d578063d257b34f14610662575f80fd5b8063a5edb92e116100ee578063a5edb92e1461057f578063a9059cbb1461059d578063aa4bde28146105bc578063b8ccf926146105d1578063baccf5cf146105e6575f80fd5b806388e765ff146104f35780638bdb2afa146105085780638da5cb5b1461052f57806395d89b411461054c578063a457c2d714610560575f80fd5b806339509351116101b55780636ddd17131161017a5780636ddd17131461045057806370a0823114610470578063715018a6146104a4578063735de9f7146104b8578063751039fc146104df575f80fd5b806339509351146103b5578063440590e1146103d457806349bd5a5e146103f35780634ec549021461042657806366d602ae1461043b575f80fd5b806323b872dd116101fb57806323b872dd1461030d5780632a0274c21461032c5780632be32b611461034b578063313ce5671461036c57806332a710b914610387575f80fd5b80630242f3e41461024157806306fdde0314610269578063095ea7b31461028a57806318160ddd146102b95780631c75f085146102cd575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610256600a5481565b6040519081526020015b60405180910390f35b348015610274575f80fd5b5061027d61071e565b6040516102609190611a98565b348015610295575f80fd5b506102a96102a4366004611af7565b6107ad565b6040519015158152602001610260565b3480156102c4575f80fd5b50600454610256565b3480156102d8575f80fd5b506008546102f5906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610260565b348015610318575f80fd5b506102a9610327366004611b21565b6107c6565b348015610337575f80fd5b506102a9610346366004611af7565b6107e9565b348015610356575f80fd5b5061036a610365366004611b5f565b61080b565b005b348015610377575f80fd5b5060405160128152602001610260565b348015610392575f80fd5b506102a96103a1366004611b76565b60076020525f908152604090205460ff1681565b3480156103c0575f80fd5b506102a96103cf366004611af7565b6108dd565b3480156103df575f80fd5b5061036a6103ee366004611b98565b6108fe565b3480156103fe575f80fd5b506102f57f000000000000000000000000bc44ae6978f50d2242d74d00d32485f7b8f543c281565b348015610431575f80fd5b50610256600b5481565b348015610446575f80fd5b50610256600d5481565b34801561045b575f80fd5b506008546102a9906301000000900460ff1681565b34801561047b575f80fd5b5061025661048a366004611b76565b6001600160a01b03165f9081526002602052604090205490565b3480156104af575f80fd5b5061036a610930565b3480156104c3575f80fd5b506102f5737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104ea575f80fd5b5061036a610943565b3480156104fe575f80fd5b50610256600c5481565b348015610513575f80fd5b506102f5735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b34801561053a575f80fd5b506005546001600160a01b03166102f5565b348015610557575f80fd5b5061027d610958565b34801561056b575f80fd5b506102a961057a366004611af7565b610967565b34801561058a575f80fd5b506008546102a990610100900460ff1681565b3480156105a8575f80fd5b506102a96105b7366004611af7565b6109e1565b3480156105c7575f80fd5b50610256600e5481565b3480156105dc575f80fd5b5061025660095481565b3480156105f1575f80fd5b5061036a610600366004611bd3565b6109ee565b348015610610575f80fd5b5061036a61061f366004611b5f565b610a01565b34801561062f575f80fd5b5061036a610aca565b348015610643575f80fd5b50610256600f5481565b348015610658575f80fd5b5061025660105481565b34801561066d575f80fd5b5061036a61067c366004611b5f565b610b47565b34801561068c575f80fd5b5061036a61069b366004611b5f565b610beb565b3480156106ab575f80fd5b506102566106ba366004611bf3565b610cb2565b3480156106ca575f80fd5b506008546102a99062010000900460ff1681565b3480156106e9575f80fd5b506008546102a990640100000000900460ff1681565b34801561070a575f80fd5b5061036a610719366004611b76565b610cdc565b60605f805461072c90611c1f565b80601f016020809104026020016040519081016040528092919081815260200182805461075890611c1f565b80156107a35780601f1061077a576101008083540402835291602001916107a3565b820191905f5260205f20905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b5f336107ba818585610d55565b60019150505b92915050565b5f336107d3858285610e78565b6107de858585610ef0565b506001949350505050565b6008545f906501000000000090046001600160a01b03166107ba84828561162a565b61081361164e565b6103e861081f60045490565b61082a906001611c6b565b6108349190611c82565b8110156108a15760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b600c8190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f336107ba8185856108ef8383610cb2565b6108f99190611ca1565b610d55565b61090661164e565b6001600160a01b03919091165f908152600660205260409020805460ff1916911515919091179055565b61093861164e565b6109415f6116a8565b565b61094b61164e565b6008805461ff0019169055565b60606001805461072c90611c1f565b5f33816109748286610cb2565b9050838110156109d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610898565b6107de8286868403610d55565b5f336107ba818585610ef0565b6109f661164e565b600991909155600a55565b610a0961164e565b6103e8610a1560045490565b610a20906003611c6b565b610a2a9190611c82565b811015610a955760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610898565b600e8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc906020016108d2565b610ad261164e565b60105415610b2e5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610898565b436010556008805463ffff000019166301010000179055565b610b4f61164e565b620186a0610b5c60045490565b610b67906001611c6b565b610b719190611c82565b811015610be65760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610898565b600f55565b610bf361164e565b6103e8610bff60045490565b610c0a906001611c6b565b610c149190611c82565b811015610c7d5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610898565b600d8190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e906020016108d2565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b610ce461164e565b6001600160a01b038116610d495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b610d52816116a8565b50565b6001600160a01b038316610db75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b038216610e185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610e838484610cb2565b90505f198114610eea5781811015610edd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610898565b610eea8484848403610d55565b50505050565b6001600160a01b038316610f165760405162461bcd60e51b815260040161089890611cb4565b6001600160a01b038216610f3c5760405162461bcd60e51b815260040161089890611cf9565b5f8111610f8b5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610898565b600854610100900460ff16156113af576005546001600160a01b03848116911614801590610fc757506005546001600160a01b03838116911614155b8015610fdb57506001600160a01b03821615155b8015610ff257506001600160a01b03821661dead14155b156113af5760085462010000900460ff166110ed576001600160a01b0383165f9081526007602052604090205460ff168061104457506001600160a01b0382165f9081526007602052604090205460ff165b6110905760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610898565b6005546001600160a01b038481169116146110ed5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610898565b7f000000000000000000000000bc44ae6978f50d2242d74d00d32485f7b8f543c26001600160a01b0316836001600160a01b031614801561114657506001600160a01b0382165f9081526007602052604090205460ff16155b1561122d57600c548111156111b55760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610898565b600e546001600160a01b0383165f908152600260205260409020546111da9083611ca1565b11156112285760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610898565b6113af565b7f000000000000000000000000bc44ae6978f50d2242d74d00d32485f7b8f543c26001600160a01b0316826001600160a01b031614801561128657506001600160a01b0383165f9081526007602052604090205460ff16155b156112f757600d548111156112285760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610898565b6001600160a01b0382165f9081526007602052604090205460ff1615801561133757506001600160a01b0383165f9081526007602052604090205460ff16155b156113af57600e546001600160a01b0383165f908152600260205260409020546113619083611ca1565b11156113af5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610898565b305f90815260026020526040902054600f54811080159081906113db57506008546301000000900460ff165b80156113ea575060085460ff16155b801561142857507f000000000000000000000000bc44ae6978f50d2242d74d00d32485f7b8f543c26001600160a01b0316856001600160a01b031614155b801561144c57506001600160a01b0385165f9081526006602052604090205460ff16155b801561147057506001600160a01b0384165f9081526006602052604090205460ff16155b15611495576008805460ff1916600117905561148a6116f9565b6008805460ff191690555b6001600160a01b0385165f9081526006602052604090205460019060ff16806114d557506001600160a01b0385165f9081526006602052604090205460ff165b156114dd57505f5b5f811561161657600854640100000000900460ff16156114ff576114ff61177e565b7f000000000000000000000000bc44ae6978f50d2242d74d00d32485f7b8f543c26001600160a01b0316866001600160a01b031614801561154157505f600a54115b1561157e576064600a54866115569190611c6b565b6115609190611c82565b905080600b5f8282546115739190611ca1565b909155506115f89050565b7f000000000000000000000000bc44ae6978f50d2242d74d00d32485f7b8f543c26001600160a01b0316876001600160a01b03161480156115c057505f600954115b156115f8576064600954866115d59190611c6b565b6115df9190611c82565b905080600b5f8282546115f29190611ca1565b90915550505b801561160957611609873083611807565b6116138186611d3c565b94505b611621878787611807565b50505050505050565b6001600160a01b03831661163c575f80fd5b6001600160a01b038216610e18575f80fd5b6005546001600160a01b031633146109415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610898565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f90815260026020526040902054600b54811580611716575080155b1561171f575050565b600f5482111561172f57600f5491505b61173882611936565b6008546040516001600160a01b036501000000000090920491909116904780156108fc02915f818181858888f19350505050158015611779573d5f803e3d5ffd5b505050565b5f601054116117c25760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610898565b60105443905f906117d4906006611ca1565b90508082116117eb5760196009819055600a555050565b60036009819055600a556008805464ff00000000191690555050565b6001600160a01b03831661182d5760405162461bcd60e51b815260040161089890611cb4565b6001600160a01b0382166118535760405162461bcd60e51b815260040161089890611cf9565b6001600160a01b0383165f90815260026020526040902054818110156118ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610898565b6001600160a01b038085165f8181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119299086815260200190565b60405180910390a3610eea565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061196957611969611d4f565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119fd9190611d63565b81600181518110611a1057611a10611d4f565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611a679085905f90869030904290600401611d7e565b5f604051808303815f87803b158015611a7e575f80fd5b505af1158015611a90573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b81811015611ac357858101830151858201604001528201611aa7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d52575f80fd5b5f8060408385031215611b08575f80fd5b8235611b1381611ae3565b946020939093013593505050565b5f805f60608486031215611b33575f80fd5b8335611b3e81611ae3565b92506020840135611b4e81611ae3565b929592945050506040919091013590565b5f60208284031215611b6f575f80fd5b5035919050565b5f60208284031215611b86575f80fd5b8135611b9181611ae3565b9392505050565b5f8060408385031215611ba9575f80fd5b8235611bb481611ae3565b915060208301358015158114611bc8575f80fd5b809150509250929050565b5f8060408385031215611be4575f80fd5b50508035926020909101359150565b5f8060408385031215611c04575f80fd5b8235611c0f81611ae3565b91506020830135611bc881611ae3565b600181811c90821680611c3357607f821691505b602082108103611c5157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107c0576107c0611c57565b5f82611c9c57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107c0576107c0611c57565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107c0576107c0611c57565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d73575f80fd5b8151611b9181611ae3565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611dcc5784516001600160a01b031683529383019391830191600101611da7565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204b0db4b7d2aa7ef904f4cf07e34ab6b4e6a4ad6cdb0e0813ea08c43716501e1064736f6c63430008150033

Deployed Bytecode Sourcemap

23091:9431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23575:24;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;23575:24:0;;;;;;;;10536:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12896:201::-;;;;;;;;;;-1:-1:-1;12896:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;12896:201:0;1205:187:1;11665:108:0;;;;;;;;;;-1:-1:-1;11753:12:0;;11665:108;;23509:26;;;;;;;;;;-1:-1:-1;23509:26:0;;;;;;;-1:-1:-1;;;;;23509:26:0;;;;;;-1:-1:-1;;;;;1561:32:1;;;1543:51;;1531:2;1516:18;23509:26:0;1397:203:1;13677:261:0;;;;;;;;;;-1:-1:-1;13677:261:0;;;;;:::i;:::-;;:::i;31163:187::-;;;;;;;;;;-1:-1:-1;31163:187:0;;;;;:::i;:::-;;:::i;31358:300::-;;;;;;;;;;-1:-1:-1;31358:300:0;;;;;:::i;:::-;;:::i;:::-;;11507:93;;;;;;;;;;-1:-1:-1;11507:93:0;;11590:2;2393:36:1;;2381:2;2366:18;11507:93:0;2251:184:1;23211:61:0;;;;;;;;;;-1:-1:-1;23211:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14347:238;;;;;;;;;;-1:-1:-1;14347:238:0;;;;;:::i;:::-;;:::i;26101:134::-;;;;;;;;;;-1:-1:-1;26101:134:0;;;;;:::i;:::-;;:::i;23285:38::-;;;;;;;;;;;;;;;23608:30;;;;;;;;;;;;;;;;24022:28;;;;;;;;;;;;;;;;23434:31;;;;;;;;;;-1:-1:-1;23434:31:0;;;;;;;;;;;11836:127;;;;;;;;;;-1:-1:-1;11836:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11937:18:0;11910:7;11937:18;;;:9;:18;;;;;;;11836:127;4824:103;;;;;;;;;;;;;:::i;23860:119::-;;;;;;;;;;;;23936:42;23860:119;;27319:83;;;;;;;;;;;;;:::i;23988:27::-;;;;;;;;;;;;;;;;23734:117;;;;;;;;;;;;23808:42;23734:117;;4183:87;;;;;;;;;;-1:-1:-1;4256:6:0;;-1:-1:-1;;;;;4256:6:0;4183:87;;10755:104;;;;;;;;;;;;;:::i;15088:436::-;;;;;;;;;;-1:-1:-1;15088:436:0;;;;;:::i;:::-;;:::i;23358:32::-;;;;;;;;;;-1:-1:-1;23358:32:0;;;;;;;;;;;12169:193;;;;;;;;;;-1:-1:-1;12169:193:0;;;;;:::i;:::-;;:::i;24057:30::-;;;;;;;;;;;;;;;;23544:24;;;;;;;;;;;;;;;;25759:155;;;;;;;;;;-1:-1:-1;25759:155:0;;;;;:::i;:::-;;:::i;26243:315::-;;;;;;;;;;-1:-1:-1;26243:315:0;;;;;:::i;:::-;;:::i;30937:218::-;;;;;;;;;;;;;:::i;24094:34::-;;;;;;;;;;;;;;;;24135:26;;;;;;;;;;;;;;;;27016:291;;;;;;;;;;-1:-1:-1;27016:291:0;;;;;:::i;:::-;;:::i;32177:305::-;;;;;;;;;;-1:-1:-1;32177:305:0;;;;;:::i;:::-;;:::i;12425:151::-;;;;;;;;;;-1:-1:-1;12425:151:0;;;;;:::i;:::-;;:::i;23397:30::-;;;;;;;;;;-1:-1:-1;23397:30:0;;;;;;;;;;;23472;;;;;;;;;;-1:-1:-1;23472:30:0;;;;;;;;;;;5082:201;;;;;;;;;;-1:-1:-1;5082:201:0;;;;;:::i;:::-;;:::i;10536:100::-;10590:13;10623:5;10616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10536:100;:::o;12896:201::-;12979:4;3479:10;13035:32;3479:10;13051:7;13060:6;13035:8;:32::i;:::-;13085:4;13078:11;;;12896:201;;;;;:::o;13677:261::-;13774:4;3479:10;13832:38;13848:4;3479:10;13863:6;13832:15;:38::i;:::-;13881:27;13891:4;13897:2;13901:6;13881:9;:27::i;:::-;-1:-1:-1;13926:4:0;;13677:261;-1:-1:-1;;;;13677:261:0:o;31163:187::-;31268:11;;31235:4;;31268:11;;;-1:-1:-1;;;;;31268:11:0;31290:30;31297:7;31268:11;31313:6;31290;:30::i;31358:300::-;4069:13;:11;:13::i;:::-;31487:5:::1;31466:13;11753:12:::0;;;11665:108;31466:13:::1;:17;::::0;31482:1:::1;31466:17;:::i;:::-;31465:27;;;;:::i;:::-;31454:6;:39;;31432:137;;;::::0;-1:-1:-1;;;31432:137:0;;5341:2:1;31432:137:0::1;::::0;::::1;5323:21:1::0;5380:2;5360:18;;;5353:30;5419:34;5399:18;;;5392:62;-1:-1:-1;;;5470:18:1;;;5463:46;5526:19;;31432:137:0::1;;;;;;;;;31580:12;:21:::0;;;31617:33:::1;::::0;160:25:1;;;31617:33:0::1;::::0;148:2:1;133:18;31617:33:0::1;;;;;;;;31358:300:::0;:::o;14347:238::-;14435:4;3479:10;14491:64;3479:10;14507:7;14544:10;14516:25;3479:10;14507:7;14516:9;:25::i;:::-;:38;;;;:::i;:::-;14491:8;:64::i;26101:134::-;4069:13;:11;:13::i;:::-;-1:-1:-1;;;;;26188:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26188:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26101:134::o;4824:103::-;4069:13;:11;:13::i;:::-;4889:30:::1;4916:1;4889:18;:30::i;:::-;4824:103::o:0;27319:83::-;4069:13;:11;:13::i;:::-;27373::::1;:21:::0;;-1:-1:-1;;27373:21:0::1;::::0;;27319:83::o;10755:104::-;10811:13;10844:7;10837:14;;;;;:::i;15088:436::-;15181:4;3479:10;15181:4;15264:25;3479:10;15281:7;15264:9;:25::i;:::-;15237:52;;15328:15;15308:16;:35;;15300:85;;;;-1:-1:-1;;;15300:85:0;;5888:2:1;15300:85:0;;;5870:21:1;5927:2;5907:18;;;5900:30;5966:34;5946:18;;;5939:62;-1:-1:-1;;;6017:18:1;;;6010:35;6062:19;;15300:85:0;5686:401:1;15300:85:0;15421:60;15430:5;15437:7;15465:15;15446:16;:34;15421:8;:60::i;12169:193::-;12248:4;3479:10;12304:28;3479:10;12321:2;12325:6;12304:9;:28::i;25759:155::-;4069:13;:11;:13::i;:::-;25850:9:::1;:22:::0;;;;25883:9:::1;:23:::0;25759:155::o;26243:315::-;4069:13;:11;:13::i;:::-;26375:5:::1;26354:13;11753:12:::0;;;11665:108;26354:13:::1;:17;::::0;26370:1:::1;26354:17;:::i;:::-;26353:27;;;;:::i;:::-;26342:6;:39;;26320:140;;;::::0;-1:-1:-1;;;26320:140:0;;6294:2:1;26320:140:0::1;::::0;::::1;6276:21:1::0;6333:2;6313:18;;;6306:30;6372:34;6352:18;;;6345:62;-1:-1:-1;;;6423:18:1;;;6416:49;6482:19;;26320:140:0::1;6092:415:1::0;26320:140:0::1;26471:15;:24:::0;;;26511:39:::1;::::0;160:25:1;;;26511:39:0::1;::::0;148:2:1;133:18;26511:39:0::1;14:177:1::0;30937:218:0;4069:13;:11;:13::i;:::-;30996:11:::1;::::0;:16;30988:65:::1;;;::::0;-1:-1:-1;;;30988:65:0;;6714:2:1;30988:65:0::1;::::0;::::1;6696:21:1::0;6753:2;6733:18;;;6726:30;6792:34;6772:18;;;6765:62;-1:-1:-1;;;6843:18:1;;;6836:34;6887:19;;30988:65:0::1;6512:400:1::0;30988:65:0::1;31078:12;31064:11;:26:::0;31101:10:::1;:17:::0;;-1:-1:-1;;31129:18:0;;;;;30937:218::o;27016:291::-;4069:13;:11;:13::i;:::-;27156:7:::1;27135:13;11753:12:::0;;;11665:108;27135:13:::1;:17;::::0;27151:1:::1;27135:17;:::i;:::-;27134:29;;;;:::i;:::-;27121:9;:42;;27099:152;;;::::0;-1:-1:-1;;;27099:152:0;;7119:2:1;27099:152:0::1;::::0;::::1;7101:21:1::0;7158:2;7138:18;;;7131:30;7197:34;7177:18;;;7170:62;7268:30;7248:18;;;7241:58;7316:19;;27099:152:0::1;6917:424:1::0;27099:152:0::1;27268:19;:31:::0;27016:291::o;32177:305::-;4069:13;:11;:13::i;:::-;32307:5:::1;32286:13;11753:12:::0;;;11665:108;32286:13:::1;:17;::::0;32302:1:::1;32286:17;:::i;:::-;32285:27;;;;:::i;:::-;32274:6;:39;;32252:138;;;::::0;-1:-1:-1;;;32252:138:0;;7548:2:1;32252:138:0::1;::::0;::::1;7530:21:1::0;7587:2;7567:18;;;7560:30;7626:34;7606:18;;;7599:62;-1:-1:-1;;;7677:18:1;;;7670:47;7734:19;;32252:138:0::1;7346:413:1::0;32252:138:0::1;32401:13;:22:::0;;;32439:35:::1;::::0;160:25:1;;;32439:35:0::1;::::0;148:2:1;133:18;32439:35:0::1;14:177:1::0;12425:151:0;-1:-1:-1;;;;;12541:18:0;;;12514:7;12541:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12425:151::o;5082:201::-;4069:13;:11;:13::i;:::-;-1:-1:-1;;;;;5171:22:0;::::1;5163:73;;;::::0;-1:-1:-1;;;5163:73:0;;7966:2:1;5163:73:0::1;::::0;::::1;7948:21:1::0;8005:2;7985:18;;;7978:30;8044:34;8024:18;;;8017:62;-1:-1:-1;;;8095:18:1;;;8088:36;8141:19;;5163:73:0::1;7764:402:1::0;5163:73:0::1;5247:28;5266:8;5247:18;:28::i;:::-;5082:201:::0;:::o;19081:346::-;-1:-1:-1;;;;;19183:19:0;;19175:68;;;;-1:-1:-1;;;19175:68:0;;8373:2:1;19175:68:0;;;8355:21:1;8412:2;8392:18;;;8385:30;8451:34;8431:18;;;8424:62;-1:-1:-1;;;8502:18:1;;;8495:34;8546:19;;19175:68:0;8171:400:1;19175:68:0;-1:-1:-1;;;;;19262:21:0;;19254:68;;;;-1:-1:-1;;;19254:68:0;;8778:2:1;19254:68:0;;;8760:21:1;8817:2;8797:18;;;8790:30;8856:34;8836:18;;;8829:62;-1:-1:-1;;;8907:18:1;;;8900:32;8949:19;;19254:68:0;8576:398:1;19254:68:0;-1:-1:-1;;;;;19335:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19387:32;;160:25:1;;;19387:32:0;;133:18:1;19387:32:0;;;;;;;19081:346;;;:::o;20014:419::-;20115:24;20142:25;20152:5;20159:7;20142:9;:25::i;:::-;20115:52;;-1:-1:-1;;20182:16:0;:37;20178:248;;20264:6;20244:16;:26;;20236:68;;;;-1:-1:-1;;;20236:68:0;;9181:2:1;20236:68:0;;;9163:21:1;9220:2;9200:18;;;9193:30;9259:31;9239:18;;;9232:59;9308:18;;20236:68:0;8979:353:1;20236:68:0;20348:51;20357:5;20364:7;20392:6;20373:16;:25;20348:8;:51::i;:::-;20104:329;20014:419;;;:::o;27410:3517::-;-1:-1:-1;;;;;27542:18:0;;27534:68;;;;-1:-1:-1;;;27534:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27621:16:0;;27613:64;;;;-1:-1:-1;;;27613:64:0;;;;;;;:::i;:::-;27705:1;27696:6;:10;27688:52;;;;-1:-1:-1;;;27688:52:0;;10349:2:1;27688:52:0;;;10331:21:1;10388:2;10368:18;;;10361:30;10427:31;10407:18;;;10400:59;10476:18;;27688:52:0;10147:353:1;27688:52:0;27757:13;;;;;;;27753:1835;;;4256:6;;-1:-1:-1;;;;;27809:15:0;;;4256:6;;27809:15;;;;:49;;-1:-1:-1;4256:6:0;;-1:-1:-1;;;;;27845:13:0;;;4256:6;;27845:13;;27809:49;:86;;;;-1:-1:-1;;;;;;27879:16:0;;;;27809:86;:128;;;;-1:-1:-1;;;;;;27916:21:0;;27930:6;27916:21;;27809:128;27787:1790;;;27977:10;;;;;;;27972:352;;-1:-1:-1;;;;;28046:35:0;;;;;;:29;:35;;;;;;;;;:101;;-1:-1:-1;;;;;;28114:33:0;;;;;;:29;:33;;;;;;;;28046:101;28012:216;;;;-1:-1:-1;;;28012:216:0;;10707:2:1;28012:216:0;;;10689:21:1;10746:2;10726:18;;;10719:30;10785:31;10765:18;;;10758:59;10834:18;;28012:216:0;10505:353:1;28012:216:0;4256:6;;-1:-1:-1;;;;;28259:15:0;;;4256:6;;28259:15;28251:53;;;;-1:-1:-1;;;28251:53:0;;11065:2:1;28251:53:0;;;11047:21:1;11104:2;11084:18;;;11077:30;11143:27;11123:18;;;11116:55;11188:18;;28251:53:0;10863:349:1;28251:53:0;28406:13;-1:-1:-1;;;;;28398:21:0;:4;-1:-1:-1;;;;;28398:21:0;;:59;;;;-1:-1:-1;;;;;;28424:33:0;;;;;;:29;:33;;;;;;;;28423:34;28398:59;28372:1190;;;28544:12;;28534:6;:22;;28500:155;;;;-1:-1:-1;;;28500:155:0;;11419:2:1;28500:155:0;;;11401:21:1;11458:2;11438:18;;;11431:30;11497:34;11477:18;;;11470:62;-1:-1:-1;;;11548:18:1;;;11541:45;11603:19;;28500:155:0;11217:411:1;28500:155:0;28738:15;;-1:-1:-1;;;;;11937:18:0;;11910:7;11937:18;;;:9;:18;;;;;;28712:22;;:6;:22;:::i;:::-;:41;;28678:158;;;;-1:-1:-1;;;28678:158:0;;11835:2:1;28678:158:0;;;11817:21:1;11874:2;11854:18;;;11847:30;11913:33;11893:18;;;11886:61;11964:18;;28678:158:0;11633:355:1;28678:158:0;28372:1190;;;28940:13;-1:-1:-1;;;;;28934:19:0;:2;-1:-1:-1;;;;;28934:19:0;;:59;;;;-1:-1:-1;;;;;;28958:35:0;;;;;;:29;:35;;;;;;;;28957:36;28934:59;28908:654;;;29080:13;;29070:6;:23;;29036:158;;;;-1:-1:-1;;;29036:158:0;;12195:2:1;29036:158:0;;;12177:21:1;12234:2;12214:18;;;12207:30;12273:34;12253:18;;;12246:62;-1:-1:-1;;;12324:18:1;;;12317:47;12381:19;;29036:158:0;11993:413:1;28908:654:0;-1:-1:-1;;;;;29247:33:0;;;;;;:29;:33;;;;;;;;29246:34;:95;;;;-1:-1:-1;;;;;;29306:35:0;;;;;;:29;:35;;;;;;;;29305:36;29246:95;29220:342;;;29444:15;;-1:-1:-1;;;;;11937:18:0;;11910:7;11937:18;;;:9;:18;;;;;;29418:22;;:6;:22;:::i;:::-;:41;;29384:158;;;;-1:-1:-1;;;29384:158:0;;11835:2:1;29384:158:0;;;11817:21:1;11874:2;11854:18;;;11847:30;11913:33;11893:18;;;11886:61;11964:18;;29384:158:0;11633:355:1;29384:158:0;29649:4;29600:28;11937:18;;;:9;:18;;;;;;29707:19;;29683:43;;;;;;;29757:35;;-1:-1:-1;29781:11:0;;;;;;;29757:35;:59;;;;-1:-1:-1;29810:6:0;;;;29809:7;29757:59;:100;;;;;29843:13;-1:-1:-1;;;;;29835:21:0;:4;-1:-1:-1;;;;;29835:21:0;;29833:24;29757:100;:143;;;;-1:-1:-1;;;;;;29875:25:0;;;;;;:19;:25;;;;;;;;29874:26;29757:143;:184;;;;-1:-1:-1;;;;;;29918:23:0;;;;;;:19;:23;;;;;;;;29917:24;29757:184;29739:318;;;29968:6;:13;;-1:-1:-1;;29968:13:0;29977:4;29968:13;;;29996:20;:18;:20::i;:::-;30031:6;:14;;-1:-1:-1;;30031:14:0;;;29739:318;-1:-1:-1;;;;;30109:25:0;;30069:12;30109:25;;;:19;:25;;;;;;30084:4;;30109:25;;;:52;;-1:-1:-1;;;;;;30138:23:0;;;;;;:19;:23;;;;;;;;30109:52;30105:100;;;-1:-1:-1;30188:5:0;30105:100;30217:12;30256:7;30252:622;;;30285:11;;;;;;;30282:61;;;30315:11;:9;:11::i;:::-;30390:13;-1:-1:-1;;;;;30384:19:0;:2;-1:-1:-1;;;;;30384:19:0;;:36;;;;;30419:1;30407:9;;:13;30384:36;30380:345;;;30471:3;30458:9;;30449:6;:18;;;;:::i;:::-;30448:26;;;;:::i;:::-;30441:33;;30512:4;30493:15;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;30380:345:0;;-1:-1:-1;30380:345:0;;30583:13;-1:-1:-1;;;;;30575:21:0;:4;-1:-1:-1;;;;;30575:21:0;;:38;;;;;30612:1;30600:9;;:13;30575:38;30571:154;;;30664:3;30651:9;;30642:6;:18;;;;:::i;:::-;30641:26;;;;:::i;:::-;30634:33;;30705:4;30686:15;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;30571:154:0;30745:8;;30741:91;;30774:42;30790:4;30804;30811;30774:15;:42::i;:::-;30848:14;30858:4;30848:14;;:::i;:::-;;;30252:622;30886:33;30902:4;30908:2;30912:6;30886:15;:33::i;:::-;27523:3404;;;;27410:3517;;;:::o;19435:288::-;-1:-1:-1;;;;;19549:19:0;;19541:28;;;;;;-1:-1:-1;;;;;19588:21:0;;19580:30;;;;;4348:132;4256:6;;-1:-1:-1;;;;;4256:6:0;3479:10;4412:23;4404:68;;;;-1:-1:-1;;;4404:68:0;;12746:2:1;4404:68:0;;;12728:21:1;;;12765:18;;;12758:30;12824:34;12804:18;;;12797:62;12876:18;;4404:68:0;12544:356:1;5443:191:0;5536:6;;;-1:-1:-1;;;;;5553:17:0;;;-1:-1:-1;;;;;;5553:17:0;;;;;;;5586:40;;5536:6;;;5553:17;5536:6;;5586:40;;5517:16;;5586:40;5506:128;5443:191;:::o;31666:501::-;31767:4;31723:23;11937:18;;;:9;:18;;;;;;31815:15;;31847:20;;;:46;;-1:-1:-1;31871:22:0;;31847:46;31843:85;;;31910:7;;31666:501::o;31843:85::-;31962:19;;31944:15;:37;31940:107;;;32016:19;;31998:37;;31940:107;32061:33;32078:15;32061:16;:33::i;:::-;32115:11;;32107:52;;-1:-1:-1;;;;;32115:11:0;;;;;;;;;32137:21;32107:52;;;;;;;;;32137:21;32115:11;32107:52;;;;;;;;;;;;;;;;;;;;;31704:463;;31666:501::o;26566:442::-;26643:1;26629:11;;:15;26607:68;;;;-1:-1:-1;;;26607:68:0;;13107:2:1;26607:68:0;;;13089:21:1;13146:2;13126:18;;;13119:30;-1:-1:-1;;;13165:18:1;;;13158:46;13221:18;;26607:68:0;12905:340:1;26607:68:0;26759:11;;26709:12;;26686:20;;26759:15;;26773:1;26759:15;:::i;:::-;26732:42;;26804:16;26788:12;:32;26785:215;;26849:2;26837:9;:14;;;26866:9;:14;26596:412;;26566:442::o;26785:215::-;26925:1;26913:9;:13;;;26941:9;:13;26969:11;:19;;-1:-1:-1;;26969:19:0;;;26596:412;;26566:442::o;15994:806::-;-1:-1:-1;;;;;16091:18:0;;16083:68;;;;-1:-1:-1;;;16083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16170:16:0;;16162:64;;;;-1:-1:-1;;;16162:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16312:15:0;;16290:19;16312:15;;;:9;:15;;;;;;16346:21;;;;16338:72;;;;-1:-1:-1;;;16338:72:0;;13452:2:1;16338:72:0;;;13434:21:1;13491:2;13471:18;;;13464:30;13530:34;13510:18;;;13503:62;-1:-1:-1;;;13581:18:1;;;13574:36;13627:19;;16338:72:0;13250:402:1;16338:72:0;-1:-1:-1;;;;;16446:15:0;;;;;;;:9;:15;;;;;;16464:20;;;16446:38;;16664:13;;;;;;;;;;:23;;;;;;16716:26;;;;;;16478:6;160:25:1;;148:2;133:18;;14:177;16716:26:0;;;;;;;;16755:37;31666:501;25346:407;25446:16;;;25460:1;25446:16;;;;;;;;25422:21;;25446:16;;;;;;;;;;-1:-1:-1;25446:16:0;25422:40;;25491:4;25473;25478:1;25473:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;25473:23:0;;;-1:-1:-1;;;;;25473:23:0;;;;;23936:42;-1:-1:-1;;;;;25517:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25507:4;25512:1;25507:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;25507:30:0;;;:7;;;;;;;;;;;:30;25550:195;;-1:-1:-1;;;25550:195:0;;23936:42;;25550:64;;:195;;25629:11;;25655:1;;25672:4;;25699;;25719:15;;25550:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25401:352;25346:407;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1605:456::-;1682:6;1690;1698;1751:2;1739:9;1730:7;1726:23;1722:32;1719:52;;;1767:1;1764;1757:12;1719:52;1806:9;1793:23;1825:31;1850:5;1825:31;:::i;:::-;1875:5;-1:-1:-1;1932:2:1;1917:18;;1904:32;1945:33;1904:32;1945:33;:::i;:::-;1605:456;;1997:7;;-1:-1:-1;;;2051:2:1;2036:18;;;;2023:32;;1605:456::o;2066:180::-;2125:6;2178:2;2166:9;2157:7;2153:23;2149:32;2146:52;;;2194:1;2191;2184:12;2146:52;-1:-1:-1;2217:23:1;;2066:180;-1:-1:-1;2066:180:1:o;2440:247::-;2499:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:52;;;2568:1;2565;2558:12;2520:52;2607:9;2594:23;2626:31;2651:5;2626:31;:::i;:::-;2676:5;2440:247;-1:-1:-1;;;2440:247:1:o;2692:416::-;2757:6;2765;2818:2;2806:9;2797:7;2793:23;2789:32;2786:52;;;2834:1;2831;2824:12;2786:52;2873:9;2860:23;2892:31;2917:5;2892:31;:::i;:::-;2942:5;-1:-1:-1;2999:2:1;2984:18;;2971:32;3041:15;;3034:23;3022:36;;3012:64;;3072:1;3069;3062:12;3012:64;3095:7;3085:17;;;2692:416;;;;;:::o;3581:248::-;3649:6;3657;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;-1:-1:-1;;3749:23:1;;;3819:2;3804:18;;;3791:32;;-1:-1:-1;3581:248:1:o;3834:388::-;3902:6;3910;3963:2;3951:9;3942:7;3938:23;3934:32;3931:52;;;3979:1;3976;3969:12;3931:52;4018:9;4005:23;4037:31;4062:5;4037:31;:::i;:::-;4087:5;-1:-1:-1;4144:2:1;4129:18;;4116:32;4157:33;4116:32;4157:33;:::i;4227:380::-;4306:1;4302:12;;;;4349;;;4370:61;;4424:4;4416:6;4412:17;4402:27;;4370:61;4477:2;4469:6;4466:14;4446:18;4443:38;4440:161;;4523:10;4518:3;4514:20;4511:1;4504:31;4558:4;4555:1;4548:15;4586:4;4583:1;4576:15;4440:161;;4227:380;;;:::o;4612:127::-;4673:10;4668:3;4664:20;4661:1;4654:31;4704:4;4701:1;4694:15;4728:4;4725:1;4718:15;4744:168;4817:9;;;4848;;4865:15;;;4859:22;;4845:37;4835:71;;4886:18;;:::i;4917:217::-;4957:1;4983;4973:132;;5027:10;5022:3;5018:20;5015:1;5008:31;5062:4;5059:1;5052:15;5090:4;5087:1;5080:15;4973:132;-1:-1:-1;5119:9:1;;4917:217::o;5556:125::-;5621:9;;;5642:10;;;5639:36;;;5655:18;;:::i;9337:401::-;9539:2;9521:21;;;9578:2;9558:18;;;9551:30;9617:34;9612:2;9597:18;;9590:62;-1:-1:-1;;;9683:2:1;9668:18;;9661:35;9728:3;9713:19;;9337:401::o;9743:399::-;9945:2;9927:21;;;9984:2;9964:18;;;9957:30;10023:34;10018:2;10003:18;;9996:62;-1:-1:-1;;;10089:2:1;10074:18;;10067:33;10132:3;10117:19;;9743:399::o;12411:128::-;12478:9;;;12499:11;;;12496:37;;;12513:18;;:::i;13789:127::-;13850:10;13845:3;13841:20;13838:1;13831:31;13881:4;13878:1;13871:15;13905:4;13902:1;13895:15;13921:251;13991:6;14044:2;14032:9;14023:7;14019:23;14015:32;14012:52;;;14060:1;14057;14050:12;14012:52;14092:9;14086:16;14111:31;14136:5;14111:31;:::i;14177:980::-;14439:4;14487:3;14476:9;14472:19;14518:6;14507:9;14500:25;14544:2;14582:6;14577:2;14566:9;14562:18;14555:34;14625:3;14620:2;14609:9;14605:18;14598:31;14649:6;14684;14678:13;14715:6;14707;14700:22;14753:3;14742:9;14738:19;14731:26;;14792:2;14784:6;14780:15;14766:29;;14813:1;14823:195;14837:6;14834:1;14831:13;14823:195;;;14902:13;;-1:-1:-1;;;;;14898:39:1;14886:52;;14993:15;;;;14958:12;;;;14934:1;14852:9;14823:195;;;-1:-1:-1;;;;;;;15074:32:1;;;;15069:2;15054:18;;15047:60;-1:-1:-1;;;15138:3:1;15123:19;15116:35;15035:3;14177:980;-1:-1:-1;;;14177:980:1:o

Swarm Source

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