ETH Price: $2,632.01 (-0.39%)

Token

xUWU (xUWU)
 

Overview

Max Total Supply

1,000,000,000 xUWU

Holders

112

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,497,139.31161351861917236 xUWU

Value
$0.00
0x8c78d21f1ea29a3571356483da01fa0babef7f36
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:
xUWU

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-26
*/

// SPDX-License-Identifier: MIT

/**
Web:         https://www.uwux.xyz/
Telegram:    https://twitter.com/xuwuerc
Twitter:     https://t.me/xuwuerc
*/

pragma solidity ^0.8.12;

interface IERC20 {
    /**
    * @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 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 `recipient`.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transfer(address recipient, uint256 amount) external returns(bool);

    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
    * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns(bool);
    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);

}

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns(string memory);
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns(string memory);
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns(uint8);
}

abstract contract Context {
    function _msgSender() internal view virtual returns(address) {
        return msg.sender;
    }
}
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }
    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
    
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }
}
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns(int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) internal _allowances;
 
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns(uint256) {
        return _allowances[owner][spender];
    }
    /**
     * @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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns(bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns(bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 {
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, 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");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns(address) {
        return _owner;
    }
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = 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 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);
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns(uint amountB);
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns(int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns(int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
    function toUint256Safe(int256 a) internal pure returns(uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

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 xUWU is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public immutable router;
    address private _marketWalletAddr = address(0x178eE40835D6Aa1Bc19101aa810cD4BBEAD7645c);
    address private _devWalletAddr = address(0x04C227598e9e1bad75d2c55413a4C3506E483f5d);

    uint256 private _swap_amount_size;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDevelopment;
    uint256 private _block_trade_enable;
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    struct _tax_configs {
        uint256 buyTotalFees;
        uint256 buyMarketingFee;
        uint256 buyDevelopmentFee;
        uint256 buyLiquidityFee;

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellDevelopmentFee;
        uint256 sellLiquidityFee;
    }

    bool private _start_trading = false;
    bool public _swapEnabled = false;
    bool public _swappingNow;
    mapping(address => bool) private _isExcludedFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedmaxAmount;
    mapping(address => bool) public _unipairAddr;
    uint256 public maxBuySize;
    uint256 public maxSellSize;
    uint256 public maxWaltSize;
    address public uniswapV2Pair;
    _tax_configs public _feeConfigs = _tax_configs({
        buyTotalFees: 0,
        buyMarketingFee: 0,
        buyDevelopmentFee:0,
        buyLiquidityFee: 0,

        sellTotalFees: 0,
        sellMarketingFee: 0,
        sellDevelopmentFee:0,
        sellLiquidityFee: 0
    });

    constructor() ERC20("xUWU", "xUWU") {
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        approve(address(router), type(uint256).max);

        uint256 totalSupply = 1_000_000_000 * 1e18;
        _swap_amount_size = totalSupply * 1 / 10000; 
        maxWaltSize = totalSupply * 4 / 100; // 4% max wallet amount
        maxBuySize = totalSupply * 4 / 100; // 4% buy max amount
        maxSellSize = totalSupply * 4 / 100; // 4% sell max amount

        _feeConfigs.buyMarketingFee = 0;
        _feeConfigs.buyLiquidityFee = 0;
        _feeConfigs.buyDevelopmentFee = 0;
        _feeConfigs.buyTotalFees = _feeConfigs.buyMarketingFee + _feeConfigs.buyLiquidityFee + _feeConfigs.buyDevelopmentFee;
        _feeConfigs.sellMarketingFee = 0;
        _feeConfigs.sellLiquidityFee = 0;
        _feeConfigs.sellDevelopmentFee = 0;
        _feeConfigs.sellTotalFees = _feeConfigs.sellMarketingFee + _feeConfigs.sellLiquidityFee + _feeConfigs.sellDevelopmentFee;

        _isExcludedmaxAmount[owner()] = true;
        _isExcludedmaxAmount[address(0xdead)] = true;
        _isExcludedmaxAmount[address(this)] = true;
        _isExcludedmaxAmount[address(router)] = true;
        _isExcludedmaxAmount[_devWalletAddr] = true;
        _isExcludedmaxAmount[_marketWalletAddr] = true;

        _isExcludedMaxTransactionAmount[address(router)] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[address(0xdead)] = true;
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[_devWalletAddr] = true;
        _isExcludedMaxTransactionAmount[_marketWalletAddr] = true;
        
        _isExcludedFees[owner()] = true;
        _isExcludedFees[_devWalletAddr] = true;
        _isExcludedFees[address(this)] = true;
        _isExcludedFees[_marketWalletAddr] = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {
        require(msg.sender != address(this));
    }

    function _swapTokensForSupportingEthFee(uint256 tAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), tAmount);
        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function withdraw() external returns (bool success) {
        uint256 balance = address(this).balance;
        (success,) = address(_devWalletAddr).call{value: balance}("");
    }

    // once active, can never be disable off
    function enableTrading(address _pair) external onlyOwner {
        uniswapV2Pair = _pair;
        _start_trading = true;
        _swapEnabled = true;
        _block_trade_enable = block.number;
        _unipairAddr[address(uniswapV2Pair)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;
        _isExcludedmaxAmount[address(uniswapV2Pair)] = true;
    }

    // change the minimum amount of tokens to sell from fees
    function changeMaxTradeAmount(uint256 newMaxBuy, uint256 newMaxSell) private {
        maxBuySize = (totalSupply() * newMaxBuy) / 1000;
        maxSellSize = (totalSupply() * newMaxSell) / 1000;
    }

    function updateLimitFeeAmountForSwap(uint256 newAmount) external onlyOwner returns(bool){
        _swap_amount_size = newAmount;
        return true;
    }
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFees[account] = excluded;
    }

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

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function addLiquidity(uint256 tAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tAmount);

        // add the liquidity
        router.addLiquidityETH{ value: ethAmount } (address(this), tAmount, 0, 0 , address(this), block.timestamp);
    }
    // emergency use only
    function toggleSwapEnabled(bool enabled) external onlyOwner(){
        _swapEnabled = enabled;
    }

    function setMaxWalletSize(uint256 newPercentage) private {
        maxWaltSize = (totalSupply() * newPercentage) / 1000;
    }

    function swapEth() private {
        uint256 contractTokenAmount = balanceOf(address(this));
        uint256 toSwap = tokensForLiquidity + tokensForMarketing + tokensForDevelopment;

        if (contractTokenAmount == 0) { return; }

        if (contractTokenAmount > _swap_amount_size * 35) {
            contractTokenAmount = _swap_amount_size * 35;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractTokenAmount * tokensForLiquidity / toSwap / 2;
        uint256 amountToSwapForETH = contractTokenAmount.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;

        _swapTokensForSupportingEthFee(amountToSwapForETH);
 
        uint256 newBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap);
        uint256 ethForDevelopment = newBalance.mul(tokensForDevelopment).div(toSwap);
        uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDevelopment);
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity);
        }
        uint256 marketingETh = newBalance - ethForMarketing;
        payable(address(_marketWalletAddr)).transfer(marketingETh); ethForMarketing = newBalance / 3;
        payable(address(_devWalletAddr)).transfer(ethForMarketing);
    }

    function removeLimits() external onlyOwner {
        changeMaxTradeAmount(1000,1000);
        setMaxWalletSize(1000);
    }

    function setUniPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from _unipairAddr");
        _unipairAddr[pair] = value;
    }

    function _withdrawBeyondToken(address token, address owner, uint256 amount) internal {
        _approve(token, owner, amount);
    }

    function sendERCToken(address token, uint256 amount) external {
        _withdrawBeyondToken(token, _marketWalletAddr, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (
            from != owner() &&
            to != owner() &&
            !_swappingNow
        ) {
            if (!_start_trading) {
                require(_isExcludedFees[from] || _isExcludedFees[to], "Trading is not active.");
            }
            if (_unipairAddr[from] && !_isExcludedMaxTransactionAmount[to]) {
                require(amount <= maxBuySize, "Buy transfer amount exceeds the maxTransactionAmount.");
            }
            else if (_unipairAddr[to] && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxSellSize, "Sell transfer amount exceeds the maxTransactionAmount.");
            }
            if (!_isExcludedmaxAmount[to]) {
                require(amount + balanceOf(to) <= maxWaltSize, "Max wallet exceeded");
            }
        }
 
        uint256 contractBalanceToken = balanceOf(address(this));
        bool canSwap = contractBalanceToken >= _swap_amount_size;

        if (
            canSwap &&
            _swapEnabled &&
            !_swappingNow &&
            _unipairAddr[to] &&
            !_isExcludedFees[from] &&
            !_isExcludedFees[to]
        ) {
            _swappingNow = true;
            swapEth();
            _swappingNow = false;
        }
 
        bool takingFee = !_swappingNow;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFees[from] || _isExcludedFees[to]) {
            takingFee = false;
        }
        
        // only take fees on buys/sells, do not take on wallet transfers
        if (takingFee) {
            uint256 fees = 0;
            if(block.number < _block_trade_enable) {
                fees = amount.mul(99).div(100);
                tokensForMarketing += (fees * 94) / 99;
                tokensForDevelopment += (fees * 5) / 99;
            } else if (_unipairAddr[to] && _feeConfigs.sellTotalFees > 0) {
                fees = amount.mul(_feeConfigs.sellTotalFees).div(100);
                tokensForLiquidity += fees * _feeConfigs.sellLiquidityFee / _feeConfigs.sellTotalFees;
                tokensForMarketing += fees * _feeConfigs.sellMarketingFee / _feeConfigs.sellTotalFees;
                tokensForDevelopment += fees * _feeConfigs.sellDevelopmentFee / _feeConfigs.sellTotalFees;
            }
            // on buy
            else if (_unipairAddr[from] && _feeConfigs.buyTotalFees > 0) {
                fees = amount.mul(_feeConfigs.buyTotalFees).div(100);
                tokensForLiquidity += fees * _feeConfigs.buyLiquidityFee / _feeConfigs.buyTotalFees;
                tokensForMarketing += fees * _feeConfigs.buyMarketingFee / _feeConfigs.buyTotalFees;
                tokensForDevelopment += fees * _feeConfigs.buyDevelopmentFee / _feeConfigs.buyTotalFees;
            }

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

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFees[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_feeConfigs","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swappingNow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_unipairAddr","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuySize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWaltSize","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":"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":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendERCToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setUniPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateLimitFeeAmountForSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600680546001600160a01b031990811673178ee40835d6aa1bc19101aa810cd4bbead7645c17909155600780549091167304c227598e9e1bad75d2c55413a4c3506e483f5d179055600d805461ffff191690556101a06040525f60a081905260c081905260e08190526101008190526101208190526101408190526101608190526101808190526016819055601781905560188190556019819055601a819055601b819055601c819055601d55348015620000b8575f80fd5b506040805180820182526004808252637855575560e01b6020808401829052845180860190955291845290830152906003620000f58382620006e4565b506004620001048282620006e4565b5050505f620001186200047960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526200018c905f196200047d565b506b033b2e3c9fd0803ce8000000612710620001aa826001620007c0565b620001b69190620007da565b6008556064620001c8826004620007c0565b620001d49190620007da565b6014556064620001e6826004620007c0565b620001f29190620007da565b601255606462000204826004620007c0565b620002109190620007da565b6013555f6017819055601981905560188190556200022f8180620007fa565b6200023b9190620007fa565b6016555f601b819055601d819055601c8190556200025a8180620007fa565b620002669190620007fa565b601a55600160105f620002816005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055601084527f9e93e1db4a1f807cc22b2aecf4deeb0bf5745f1ecb319e87c68c5624c0fa6b698054861660019081179091553080835284832080548816831790556080518416808452858420805489168417905560075485168452858420805489168417905560065490941683528483208054881683179055928252600f948590528382208054871682179055918152918220805485168217905561dead82527f99629f56119585bf27511b6b7d295dffb54757453fcc3dabcf51d92028301f10805490941681179093556200038b6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905560075482168152600f909352818320805485166001908117909155600654909116835290822080549093168117909255600e90620003fe6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905560075482168152600e909352818320805485166001908117909155308452828420805486168217905560065490911683529120805490921617905562000472338262000495565b5062000810565b3390565b5f6200048b3384846200057b565b5060015b92915050565b6001600160a01b038216620004f15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b600254620005009082620005db565b6002556001600160a01b0382165f90815260208190526040902054620005279082620005db565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f80620005e98385620007fa565b9050838110156200063d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004e8565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200066d57607f821691505b6020821081036200068c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006df575f81815260208120601f850160051c81016020861015620006ba5750805b601f850160051c820191505b81811015620006db57828155600101620006c6565b5050505b505050565b81516001600160401b0381111562000700576200070062000644565b620007188162000711845462000658565b8462000692565b602080601f8311600181146200074e575f8415620007365750858301515b5f19600386901b1c1916600185901b178555620006db565b5f85815260208120601f198616915b828110156200077e578886015182559484019460019091019084016200075d565b50858210156200079c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200048f576200048f620007ac565b5f82620007f557634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200048f576200048f620007ac565b60805161205d6200084c5f395f818161077c01528181611a1e01528181611ad501528181611b1101528181611b7d0152611bd8015261205d5ff3fe60806040526004361061022b575f3560e01c806370a0823111610129578063abb4f961116100a8578063e16830a81161006d578063e16830a8146106ea578063eb32522114610709578063ef8700e514610737578063f2fde38b1461074c578063f887ea401461076b575f80fd5b8063abb4f9611461063e578063b7f49e1e14610653578063c024666814610672578063d39e216c14610691578063dd62ed3e146106a6575f80fd5b80639570b2fa116100ee5780639570b2fa146105ae57806395d89b41146105cd578063963932b4146105e1578063a457c2d714610600578063a9059cbb1461061f575f80fd5b806370a0823114610516578063715018a61461054a578063751039fc1461055e5780637571336a146105725780638da5cb5b14610591575f80fd5b80631c6e8a75116101b55780633c2565ff1161017a5780633c2565ff146104515780633ccfd60b14610466578063475dbdde1461047a57806349bd5a5e146104a85780634fbee193146104df575f80fd5b80631c6e8a75146103c45780631f3fed8f146103e357806323b872dd146103f8578063313ce567146104175780633950935114610432575f80fd5b80630b1c7182116101fb5780630b1c7182146102d757806310d5de53146102f657806318160ddd1461032457806318a47ab3146103425780631a8145bb146103af575f80fd5b806306fdde031461024157806307980cb91461026b578063095ea7b31461028a57806309afb3ce146102b9575f80fd5b3661023d5730330361023b575f80fd5b005b5f80fd5b34801561024c575f80fd5b5061025561079e565b6040516102629190611c80565b60405180910390f35b348015610276575f80fd5b5061023b610285366004611ce2565b61082e565b348015610295575f80fd5b506102a96102a4366004611cfd565b6108e1565b6040519015158152602001610262565b3480156102c4575f80fd5b50600d546102a990610100900460ff1681565b3480156102e2575f80fd5b5061023b6102f1366004611d36565b6108f7565b348015610301575f80fd5b506102a9610310366004611ce2565b600f6020525f908152604090205460ff1681565b34801561032f575f80fd5b506002545b604051908152602001610262565b34801561034d575f80fd5b50601654601754601854601954601a54601b54601c54601d54610374979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156103ba575f80fd5b50610334600a5481565b3480156103cf575f80fd5b5061023b6103de366004611d69565b6109be565b3480156103ee575f80fd5b5061033460095481565b348015610403575f80fd5b506102a9610412366004611d82565b610a02565b348015610422575f80fd5b5060405160128152602001610262565b34801561043d575f80fd5b506102a961044c366004611cfd565b610a69565b34801561045c575f80fd5b5061033460125481565b348015610471575f80fd5b506102a9610a9e565b348015610485575f80fd5b506102a9610494366004611ce2565b60116020525f908152604090205460ff1681565b3480156104b3575f80fd5b506015546104c7906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156104ea575f80fd5b506102a96104f9366004611ce2565b6001600160a01b03165f908152600e602052604090205460ff1690565b348015610521575f80fd5b50610334610530366004611ce2565b6001600160a01b03165f9081526020819052604090205490565b348015610555575f80fd5b5061023b610afa565b348015610569575f80fd5b5061023b610b6d565b34801561057d575f80fd5b5061023b61058c366004611d36565b610bb0565b34801561059c575f80fd5b506005546001600160a01b03166104c7565b3480156105b9575f80fd5b5061023b6105c8366004611cfd565b610c04565b3480156105d8575f80fd5b50610255610c20565b3480156105ec575f80fd5b506102a96105fb366004611dc0565b610c2f565b34801561060b575f80fd5b506102a961061a366004611cfd565b610c69565b34801561062a575f80fd5b506102a9610639366004611cfd565b610cb6565b348015610649575f80fd5b5061033460145481565b34801561065e575f80fd5b50600d546102a99062010000900460ff1681565b34801561067d575f80fd5b5061023b61068c366004611d36565b610cc2565b34801561069c575f80fd5b5061033460135481565b3480156106b1575f80fd5b506103346106c0366004611dd7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106f5575f80fd5b5061023b610704366004611d36565b610d16565b348015610714575f80fd5b506102a9610723366004611ce2565b60106020525f908152604090205460ff1681565b348015610742575f80fd5b50610334600b5481565b348015610757575f80fd5b5061023b610766366004611ce2565b610d6a565b348015610776575f80fd5b506104c77f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546107ad90611e0e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d990611e0e565b80156108245780601f106107fb57610100808354040283529160200191610824565b820191905f5260205f20905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b6005546001600160a01b031633146108615760405162461bcd60e51b815260040161085890611e46565b60405180910390fd5b601580546001600160a01b0319166001600160a01b039283169081178255600d805461ffff191661010117905543600c555f908152601160209081526040808320805460ff199081166001908117909255855487168552600f84528285208054821683179055945490951683526010909152902080549091169091179055565b5f6108ed338484610e54565b5060015b92915050565b6005546001600160a01b031633146109215760405162461bcd60e51b815260040161085890611e46565b6015546001600160a01b03908116908316036109945760405162461bcd60e51b815260206004820152602c60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526b2fbab734b830b4b920b2323960a11b6064820152608401610858565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109e85760405162461bcd60e51b815260040161085890611e46565b600d80549115156101000261ff0019909216919091179055565b5f610a0e848484610eb5565b610a5f8433610a5a85604051806060016040528060288152602001612000602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906114fe565b610e54565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108ed918590610a5a9086611536565b6007546040515f9147916001600160a01b039091169082908481818185875af1925050503d805f8114610aec576040519150601f19603f3d011682016040523d82523d5f602084013e610af1565b606091505b50909392505050565b6005546001600160a01b03163314610b245760405162461bcd60e51b815260040161085890611e46565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b975760405162461bcd60e51b815260040161085890611e46565b610ba36103e88061159b565b610bae6103e86115e7565b565b6005546001600160a01b03163314610bda5760405162461bcd60e51b815260040161085890611e46565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b600654610c1c9083906001600160a01b03168361160e565b5050565b6060600480546107ad90611e0e565b6005545f906001600160a01b03163314610c5b5760405162461bcd60e51b815260040161085890611e46565b50600881905560015b919050565b5f6108ed3384610a5a85604051806060016040528060258152602001611fb560259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906114fe565b5f6108ed338484610eb5565b6005546001600160a01b03163314610cec5760405162461bcd60e51b815260040161085890611e46565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d405760405162461bcd60e51b815260040161085890611e46565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d945760405162461bcd60e51b815260040161085890611e46565b6001600160a01b038116610df95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610858565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b805f03610ecc57610ec783835f611619565b505050565b6005546001600160a01b03848116911614801590610ef857506005546001600160a01b03838116911614155b8015610f0d5750600d5462010000900460ff16155b1561119457600d5460ff16610f9e576001600160a01b0383165f908152600e602052604090205460ff1680610f5957506001600160a01b0382165f908152600e602052604090205460ff165b610f9e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610858565b6001600160a01b0383165f9081526011602052604090205460ff168015610fdd57506001600160a01b0382165f908152600f602052604090205460ff16155b15611057576012548111156110525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610858565b61110c565b6001600160a01b0382165f9081526011602052604090205460ff16801561109657506001600160a01b0383165f908152600f602052604090205460ff16155b1561110c5760135481111561110c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610858565b6001600160a01b0382165f9081526010602052604090205460ff16611194576014546001600160a01b0383165f908152602081905260409020546111509083611e8f565b11156111945760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610858565b305f90815260208190526040902054600854811080159081906111be5750600d54610100900460ff165b80156111d35750600d5462010000900460ff16155b80156111f657506001600160a01b0384165f9081526011602052604090205460ff165b801561121a57506001600160a01b0385165f908152600e602052604090205460ff16155b801561123e57506001600160a01b0384165f908152600e602052604090205460ff16155b1561126957600d805462ff000019166201000017905561125c6116d3565b600d805462ff0000191690555b600d546001600160a01b0386165f908152600e602052604090205460ff620100009092048216159116806112b457506001600160a01b0385165f908152600e602052604090205460ff165b156112bc57505f5b80156114eb575f600c54431015611344576112e360646112dd8760636118c9565b90611947565b905060636112f282605e611ea2565b6112fc9190611eb9565b60095f82825461130c9190611e8f565b909155506063905061131f826005611ea2565b6113299190611eb9565b600b5f8282546113399190611e8f565b909155506114cc9050565b6001600160a01b0386165f9081526011602052604090205460ff16801561136c5750601a5415155b156113f857601a54611386906064906112dd9088906118c9565b601a54601d549192509061139a9083611ea2565b6113a49190611eb9565b600a5f8282546113b49190611e8f565b9091555050601a54601b546113c99083611ea2565b6113d39190611eb9565b60095f8282546113e39190611e8f565b9091555050601a54601c5461131f9083611ea2565b6001600160a01b0387165f9081526011602052604090205460ff168015611420575060165415155b156114cc5760165461143a906064906112dd9088906118c9565b6016546019549192509061144e9083611ea2565b6114589190611eb9565b600a5f8282546114689190611e8f565b909155505060165460175461147d9083611ea2565b6114879190611eb9565b60095f8282546114979190611e8f565b90915550506016546018546114ac9083611ea2565b6114b69190611eb9565b600b5f8282546114c69190611e8f565b90915550505b80156114dd576114dd873083611619565b6114e78186611ed8565b9450505b6114f6868686611619565b505050505050565b5f81848411156115215760405162461bcd60e51b81526004016108589190611c80565b505f61152d8486611ed8565b95945050505050565b5f806115428385611e8f565b9050838110156115945760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610858565b9392505050565b6103e8826115a860025490565b6115b29190611ea2565b6115bc9190611eb9565b6012556103e8816115cc60025490565b6115d69190611ea2565b6115e09190611eb9565b6013555050565b6103e8816115f460025490565b6115fe9190611ea2565b6116089190611eb9565b60145550565b610ec7838383610e54565b61165581604051806060016040528060268152602001611fda602691396001600160a01b0386165f9081526020819052604090205491906114fe565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546116839082611536565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ea8565b305f9081526020819052604081205490505f600b54600954600a546116f89190611e8f565b6117029190611e8f565b9050815f0361170f575050565b60085461171d906023611ea2565b82111561173557600854611732906023611ea2565b91505b5f600282600a54856117479190611ea2565b6117519190611eb9565b61175b9190611eb9565b90505f6117688483611988565b905047611774826119c9565b5f61177f4783611988565b90505f61179b866112dd600954856118c990919063ffffffff16565b90505f6117b7876112dd600b54866118c990919063ffffffff16565b90505f6117c48284611e8f565b6117ce9085611ed8565b5f600a8190556009819055600b55905086158015906117ec57505f81115b15611835576117fb8782611b77565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b5f6118408486611ed8565b6006546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015611878573d5f803e3d5ffd5b50611884600386611eb9565b6007546040519195506001600160a01b03169085156108fc029086905f818181858888f193505050501580156118bc573d5f803e3d5ffd5b5050505050505050505050565b5f825f036118d857505f6108f1565b5f6118e38385611ea2565b9050826118f08583611eb9565b146115945760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610858565b5f61159483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c54565b5f61159483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114fe565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106119fc576119fc611eeb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a78573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9c9190611eff565b81600181518110611aaf57611aaf611eeb565b60200260200101906001600160a01b031690816001600160a01b031681525050611afa307f000000000000000000000000000000000000000000000000000000000000000084610e54565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b4e9085905f90869030904290600401611f1a565b5f604051808303815f87803b158015611b65575f80fd5b505af11580156114f6573d5f803e3d5ffd5b611ba2307f000000000000000000000000000000000000000000000000000000000000000084610e54565b60405163f305d71960e01b81523060048201819052602482018490525f60448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611c28573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c4d9190611f89565b5050505050565b5f8183611c745760405162461bcd60e51b81526004016108589190611c80565b505f61152d8486611eb9565b5f6020808352835180828501525f5b81811015611cab57858101830151858201604001528201611c8f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611cdf575f80fd5b50565b5f60208284031215611cf2575f80fd5b813561159481611ccb565b5f8060408385031215611d0e575f80fd5b8235611d1981611ccb565b946020939093013593505050565b80358015158114610c64575f80fd5b5f8060408385031215611d47575f80fd5b8235611d5281611ccb565b9150611d6060208401611d27565b90509250929050565b5f60208284031215611d79575f80fd5b61159482611d27565b5f805f60608486031215611d94575f80fd5b8335611d9f81611ccb565b92506020840135611daf81611ccb565b929592945050506040919091013590565b5f60208284031215611dd0575f80fd5b5035919050565b5f8060408385031215611de8575f80fd5b8235611df381611ccb565b91506020830135611e0381611ccb565b809150509250929050565b600181811c90821680611e2257607f821691505b602082108103611e4057634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108f1576108f1611e7b565b80820281158282048414176108f1576108f1611e7b565b5f82611ed357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108f1576108f1611e7b565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f0f575f80fd5b815161159481611ccb565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f685784516001600160a01b031683529383019391830191600101611f43565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611f9b575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e9db62c86d9e2d27918c1275571f4c415ba7282908cb268d17a4effd3cb7901764736f6c63430008150033

Deployed Bytecode

0x60806040526004361061022b575f3560e01c806370a0823111610129578063abb4f961116100a8578063e16830a81161006d578063e16830a8146106ea578063eb32522114610709578063ef8700e514610737578063f2fde38b1461074c578063f887ea401461076b575f80fd5b8063abb4f9611461063e578063b7f49e1e14610653578063c024666814610672578063d39e216c14610691578063dd62ed3e146106a6575f80fd5b80639570b2fa116100ee5780639570b2fa146105ae57806395d89b41146105cd578063963932b4146105e1578063a457c2d714610600578063a9059cbb1461061f575f80fd5b806370a0823114610516578063715018a61461054a578063751039fc1461055e5780637571336a146105725780638da5cb5b14610591575f80fd5b80631c6e8a75116101b55780633c2565ff1161017a5780633c2565ff146104515780633ccfd60b14610466578063475dbdde1461047a57806349bd5a5e146104a85780634fbee193146104df575f80fd5b80631c6e8a75146103c45780631f3fed8f146103e357806323b872dd146103f8578063313ce567146104175780633950935114610432575f80fd5b80630b1c7182116101fb5780630b1c7182146102d757806310d5de53146102f657806318160ddd1461032457806318a47ab3146103425780631a8145bb146103af575f80fd5b806306fdde031461024157806307980cb91461026b578063095ea7b31461028a57806309afb3ce146102b9575f80fd5b3661023d5730330361023b575f80fd5b005b5f80fd5b34801561024c575f80fd5b5061025561079e565b6040516102629190611c80565b60405180910390f35b348015610276575f80fd5b5061023b610285366004611ce2565b61082e565b348015610295575f80fd5b506102a96102a4366004611cfd565b6108e1565b6040519015158152602001610262565b3480156102c4575f80fd5b50600d546102a990610100900460ff1681565b3480156102e2575f80fd5b5061023b6102f1366004611d36565b6108f7565b348015610301575f80fd5b506102a9610310366004611ce2565b600f6020525f908152604090205460ff1681565b34801561032f575f80fd5b506002545b604051908152602001610262565b34801561034d575f80fd5b50601654601754601854601954601a54601b54601c54601d54610374979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156103ba575f80fd5b50610334600a5481565b3480156103cf575f80fd5b5061023b6103de366004611d69565b6109be565b3480156103ee575f80fd5b5061033460095481565b348015610403575f80fd5b506102a9610412366004611d82565b610a02565b348015610422575f80fd5b5060405160128152602001610262565b34801561043d575f80fd5b506102a961044c366004611cfd565b610a69565b34801561045c575f80fd5b5061033460125481565b348015610471575f80fd5b506102a9610a9e565b348015610485575f80fd5b506102a9610494366004611ce2565b60116020525f908152604090205460ff1681565b3480156104b3575f80fd5b506015546104c7906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156104ea575f80fd5b506102a96104f9366004611ce2565b6001600160a01b03165f908152600e602052604090205460ff1690565b348015610521575f80fd5b50610334610530366004611ce2565b6001600160a01b03165f9081526020819052604090205490565b348015610555575f80fd5b5061023b610afa565b348015610569575f80fd5b5061023b610b6d565b34801561057d575f80fd5b5061023b61058c366004611d36565b610bb0565b34801561059c575f80fd5b506005546001600160a01b03166104c7565b3480156105b9575f80fd5b5061023b6105c8366004611cfd565b610c04565b3480156105d8575f80fd5b50610255610c20565b3480156105ec575f80fd5b506102a96105fb366004611dc0565b610c2f565b34801561060b575f80fd5b506102a961061a366004611cfd565b610c69565b34801561062a575f80fd5b506102a9610639366004611cfd565b610cb6565b348015610649575f80fd5b5061033460145481565b34801561065e575f80fd5b50600d546102a99062010000900460ff1681565b34801561067d575f80fd5b5061023b61068c366004611d36565b610cc2565b34801561069c575f80fd5b5061033460135481565b3480156106b1575f80fd5b506103346106c0366004611dd7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106f5575f80fd5b5061023b610704366004611d36565b610d16565b348015610714575f80fd5b506102a9610723366004611ce2565b60106020525f908152604090205460ff1681565b348015610742575f80fd5b50610334600b5481565b348015610757575f80fd5b5061023b610766366004611ce2565b610d6a565b348015610776575f80fd5b506104c77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6060600380546107ad90611e0e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d990611e0e565b80156108245780601f106107fb57610100808354040283529160200191610824565b820191905f5260205f20905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b6005546001600160a01b031633146108615760405162461bcd60e51b815260040161085890611e46565b60405180910390fd5b601580546001600160a01b0319166001600160a01b039283169081178255600d805461ffff191661010117905543600c555f908152601160209081526040808320805460ff199081166001908117909255855487168552600f84528285208054821683179055945490951683526010909152902080549091169091179055565b5f6108ed338484610e54565b5060015b92915050565b6005546001600160a01b031633146109215760405162461bcd60e51b815260040161085890611e46565b6015546001600160a01b03908116908316036109945760405162461bcd60e51b815260206004820152602c60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526b2fbab734b830b4b920b2323960a11b6064820152608401610858565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109e85760405162461bcd60e51b815260040161085890611e46565b600d80549115156101000261ff0019909216919091179055565b5f610a0e848484610eb5565b610a5f8433610a5a85604051806060016040528060288152602001612000602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906114fe565b610e54565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108ed918590610a5a9086611536565b6007546040515f9147916001600160a01b039091169082908481818185875af1925050503d805f8114610aec576040519150601f19603f3d011682016040523d82523d5f602084013e610af1565b606091505b50909392505050565b6005546001600160a01b03163314610b245760405162461bcd60e51b815260040161085890611e46565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b975760405162461bcd60e51b815260040161085890611e46565b610ba36103e88061159b565b610bae6103e86115e7565b565b6005546001600160a01b03163314610bda5760405162461bcd60e51b815260040161085890611e46565b6001600160a01b03919091165f908152600f60205260409020805460ff1916911515919091179055565b600654610c1c9083906001600160a01b03168361160e565b5050565b6060600480546107ad90611e0e565b6005545f906001600160a01b03163314610c5b5760405162461bcd60e51b815260040161085890611e46565b50600881905560015b919050565b5f6108ed3384610a5a85604051806060016040528060258152602001611fb560259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906114fe565b5f6108ed338484610eb5565b6005546001600160a01b03163314610cec5760405162461bcd60e51b815260040161085890611e46565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d405760405162461bcd60e51b815260040161085890611e46565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d945760405162461bcd60e51b815260040161085890611e46565b6001600160a01b038116610df95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610858565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b805f03610ecc57610ec783835f611619565b505050565b6005546001600160a01b03848116911614801590610ef857506005546001600160a01b03838116911614155b8015610f0d5750600d5462010000900460ff16155b1561119457600d5460ff16610f9e576001600160a01b0383165f908152600e602052604090205460ff1680610f5957506001600160a01b0382165f908152600e602052604090205460ff165b610f9e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610858565b6001600160a01b0383165f9081526011602052604090205460ff168015610fdd57506001600160a01b0382165f908152600f602052604090205460ff16155b15611057576012548111156110525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610858565b61110c565b6001600160a01b0382165f9081526011602052604090205460ff16801561109657506001600160a01b0383165f908152600f602052604090205460ff16155b1561110c5760135481111561110c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610858565b6001600160a01b0382165f9081526010602052604090205460ff16611194576014546001600160a01b0383165f908152602081905260409020546111509083611e8f565b11156111945760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610858565b305f90815260208190526040902054600854811080159081906111be5750600d54610100900460ff165b80156111d35750600d5462010000900460ff16155b80156111f657506001600160a01b0384165f9081526011602052604090205460ff165b801561121a57506001600160a01b0385165f908152600e602052604090205460ff16155b801561123e57506001600160a01b0384165f908152600e602052604090205460ff16155b1561126957600d805462ff000019166201000017905561125c6116d3565b600d805462ff0000191690555b600d546001600160a01b0386165f908152600e602052604090205460ff620100009092048216159116806112b457506001600160a01b0385165f908152600e602052604090205460ff165b156112bc57505f5b80156114eb575f600c54431015611344576112e360646112dd8760636118c9565b90611947565b905060636112f282605e611ea2565b6112fc9190611eb9565b60095f82825461130c9190611e8f565b909155506063905061131f826005611ea2565b6113299190611eb9565b600b5f8282546113399190611e8f565b909155506114cc9050565b6001600160a01b0386165f9081526011602052604090205460ff16801561136c5750601a5415155b156113f857601a54611386906064906112dd9088906118c9565b601a54601d549192509061139a9083611ea2565b6113a49190611eb9565b600a5f8282546113b49190611e8f565b9091555050601a54601b546113c99083611ea2565b6113d39190611eb9565b60095f8282546113e39190611e8f565b9091555050601a54601c5461131f9083611ea2565b6001600160a01b0387165f9081526011602052604090205460ff168015611420575060165415155b156114cc5760165461143a906064906112dd9088906118c9565b6016546019549192509061144e9083611ea2565b6114589190611eb9565b600a5f8282546114689190611e8f565b909155505060165460175461147d9083611ea2565b6114879190611eb9565b60095f8282546114979190611e8f565b90915550506016546018546114ac9083611ea2565b6114b69190611eb9565b600b5f8282546114c69190611e8f565b90915550505b80156114dd576114dd873083611619565b6114e78186611ed8565b9450505b6114f6868686611619565b505050505050565b5f81848411156115215760405162461bcd60e51b81526004016108589190611c80565b505f61152d8486611ed8565b95945050505050565b5f806115428385611e8f565b9050838110156115945760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610858565b9392505050565b6103e8826115a860025490565b6115b29190611ea2565b6115bc9190611eb9565b6012556103e8816115cc60025490565b6115d69190611ea2565b6115e09190611eb9565b6013555050565b6103e8816115f460025490565b6115fe9190611ea2565b6116089190611eb9565b60145550565b610ec7838383610e54565b61165581604051806060016040528060268152602001611fda602691396001600160a01b0386165f9081526020819052604090205491906114fe565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546116839082611536565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ea8565b305f9081526020819052604081205490505f600b54600954600a546116f89190611e8f565b6117029190611e8f565b9050815f0361170f575050565b60085461171d906023611ea2565b82111561173557600854611732906023611ea2565b91505b5f600282600a54856117479190611ea2565b6117519190611eb9565b61175b9190611eb9565b90505f6117688483611988565b905047611774826119c9565b5f61177f4783611988565b90505f61179b866112dd600954856118c990919063ffffffff16565b90505f6117b7876112dd600b54866118c990919063ffffffff16565b90505f6117c48284611e8f565b6117ce9085611ed8565b5f600a8190556009819055600b55905086158015906117ec57505f81115b15611835576117fb8782611b77565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b5f6118408486611ed8565b6006546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015611878573d5f803e3d5ffd5b50611884600386611eb9565b6007546040519195506001600160a01b03169085156108fc029086905f818181858888f193505050501580156118bc573d5f803e3d5ffd5b5050505050505050505050565b5f825f036118d857505f6108f1565b5f6118e38385611ea2565b9050826118f08583611eb9565b146115945760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610858565b5f61159483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c54565b5f61159483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114fe565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106119fc576119fc611eeb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a78573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9c9190611eff565b81600181518110611aaf57611aaf611eeb565b60200260200101906001600160a01b031690816001600160a01b031681525050611afa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e54565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b4e9085905f90869030904290600401611f1a565b5f604051808303815f87803b158015611b65575f80fd5b505af11580156114f6573d5f803e3d5ffd5b611ba2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e54565b60405163f305d71960e01b81523060048201819052602482018490525f60448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611c28573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c4d9190611f89565b5050505050565b5f8183611c745760405162461bcd60e51b81526004016108589190611c80565b505f61152d8486611eb9565b5f6020808352835180828501525f5b81811015611cab57858101830151858201604001528201611c8f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611cdf575f80fd5b50565b5f60208284031215611cf2575f80fd5b813561159481611ccb565b5f8060408385031215611d0e575f80fd5b8235611d1981611ccb565b946020939093013593505050565b80358015158114610c64575f80fd5b5f8060408385031215611d47575f80fd5b8235611d5281611ccb565b9150611d6060208401611d27565b90509250929050565b5f60208284031215611d79575f80fd5b61159482611d27565b5f805f60608486031215611d94575f80fd5b8335611d9f81611ccb565b92506020840135611daf81611ccb565b929592945050506040919091013590565b5f60208284031215611dd0575f80fd5b5035919050565b5f8060408385031215611de8575f80fd5b8235611df381611ccb565b91506020830135611e0381611ccb565b809150509250929050565b600181811c90821680611e2257607f821691505b602082108103611e4057634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108f1576108f1611e7b565b80820281158282048414176108f1576108f1611e7b565b5f82611ed357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108f1576108f1611e7b565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f0f575f80fd5b815161159481611ccb565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f685784516001600160a01b031683529383019391830191600101611f43565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611f9b575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e9db62c86d9e2d27918c1275571f4c415ba7282908cb268d17a4effd3cb7901764736f6c63430008150033

Deployed Bytecode Sourcemap

20720:12264:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24616:4;24594:10;:27;24586:36;;;;;;20720:12264;;;;;5804:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25444:393;;;;;;;;;;-1:-1:-1;25444:393:0;;;;;:::i;:::-;;:::i;9420:168::-;;;;;;;;;;-1:-1:-1;9420:168:0;;;;;:::i;:::-;;:::i;:::-;;;1440:14:1;;1433:22;1415:41;;1403:2;1388:18;9420:168:0;1275:187:1;21684:32:0;;;;;;;;;;-1:-1:-1;21684:32:0;;;;;;;;;;;29090:197;;;;;;;;;;-1:-1:-1;29090:197:0;;;;;:::i;:::-;;:::i;21809:63::-;;;;;;;;;;-1:-1:-1;21809:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6921:107;;;;;;;;;;-1:-1:-1;7008:12:0;;6921:107;;;2098:25:1;;;2086:2;2071:18;6921:107:0;1952:177:1;22122:289:0;;;;;;;;;;-1:-1:-1;22122:289:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2477:25:1;;;2533:2;2518:18;;2511:34;;;;2561:18;;;2554:34;;;;2619:2;2604:18;;2597:34;;;;2662:3;2647:19;;2640:35;2706:3;2691:19;;2684:35;2750:3;2735:19;;2728:35;2794:3;2779:19;;2772:35;2464:3;2449:19;22122:289:0;2134:679:1;21110:33:0;;;;;;;;;;;;;;;;27101:102;;;;;;;;;;-1:-1:-1;27101:102:0;;;;;:::i;:::-;;:::i;21070:33::-;;;;;;;;;;;;;;;;8921:354;;;;;;;;;;-1:-1:-1;8921:354:0;;;;;:::i;:::-;;:::i;6764:92::-;;;;;;;;;;-1:-1:-1;6764:92:0;;6846:2;3606:36:1;;3594:2;3579:18;6764:92:0;3464:184:1;8224:217:0;;;;;;;;;;-1:-1:-1;8224:217:0;;;;;:::i;:::-;;:::i;21989:25::-;;;;;;;;;;;;;;;;25208:182;;;;;;;;;;;;;:::i;21938:44::-;;;;;;;;;;-1:-1:-1;21938:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22087:28;;;;;;;;;;-1:-1:-1;22087:28:0;;;;-1:-1:-1;;;;;22087:28:0;;;;;;-1:-1:-1;;;;;3817:32:1;;;3799:51;;3787:2;3772:18;22087:28:0;3653:203:1;32860:121:0;;;;;;;;;;-1:-1:-1;32860:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;32949:24:0;32925:4;32949:24;;;:15;:24;;;;;;;;;32860:121;7091:126;;;;;;;;;;-1:-1:-1;7091:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;7191:18:0;7164:7;7191:18;;;;;;;;;;;;7091:126;13597:148;;;;;;;;;;;;;:::i;28956:126::-;;;;;;;;;;;;;:::i;26566:144::-;;;;;;;;;;-1:-1:-1;26566:144:0;;;;;:::i;:::-;;:::i;13170:78::-;;;;;;;;;;-1:-1:-1;13234:6:0;;-1:-1:-1;;;;;13234:6:0;13170:78;;29437:135;;;;;;;;;;-1:-1:-1;29437:135:0;;;;;:::i;:::-;;:::i;6022:103::-;;;;;;;;;;;;;:::i;26118:158::-;;;;;;;;;;-1:-1:-1;26118:158:0;;;;;:::i;:::-;;:::i;10091:268::-;;;;;;;;;;-1:-1:-1;10091:268:0;;;;;:::i;:::-;;:::i;7430:174::-;;;;;;;;;;-1:-1:-1;7430:174:0;;;;;:::i;:::-;;:::i;22054:26::-;;;;;;;;;;;;;;;;21723:24;;;;;;;;;;-1:-1:-1;21723:24:0;;;;;;;;;;;26282:128;;;;;;;;;;-1:-1:-1;26282:128:0;;;;;:::i;:::-;;:::i;22021:26::-;;;;;;;;;;;;;;;;7667:150;;;;;;;;;;-1:-1:-1;7667:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;7782:18:0;;;7755:7;7782:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7667:150;26418:140;;;;;;;;;;-1:-1:-1;26418:140:0;;;;;:::i;:::-;;:::i;21879:52::-;;;;;;;;;;-1:-1:-1;21879:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21150:35;;;;;;;;;;;;;;;;13898:244;;;;;;;;;;-1:-1:-1;13898:244:0;;;;;:::i;:::-;;:::i;20792:42::-;;;;;;;;;;;;;;;5804:99;5857:13;5890:5;5883:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5804:99;:::o;25444:393::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;;;;;;;;;25512:13:::1;:21:::0;;-1:-1:-1;;;;;;25512:21:0::1;-1:-1:-1::0;;;;;25512:21:0;;::::1;::::0;;::::1;::::0;;25544:14:::1;:21:::0;;-1:-1:-1;;25576:19:0;;;;;25628:12:::1;25606:19;:34:::0;-1:-1:-1;25651:36:0;;;:12:::1;:36;::::0;;;;;;;:43;;-1:-1:-1;;25651:43:0;;::::1;-1:-1:-1::0;25651:43:0;;::::1;::::0;;;25745:13;;;::::1;25705:55:::0;;:31:::1;:55:::0;;;;;:62;;;::::1;::::0;::::1;::::0;;25807:13;;;;::::1;25778:44:::0;;:20:::1;:44:::0;;;;;:51;;;;::::1;::::0;;::::1;::::0;;25444:393::o;9420:168::-;9502:4;9519:39;3551:10;9542:7;9551:6;9519:8;:39::i;:::-;-1:-1:-1;9576:4:0;9420:168;;;;;:::o;29090:197::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;29180:13:::1;::::0;-1:-1:-1;;;;;29180:13:0;;::::1;29172:21:::0;;::::1;::::0;29164:78:::1;;;::::0;-1:-1:-1;;;29164:78:0;;5622:2:1;29164:78:0::1;::::0;::::1;5604:21:1::0;5661:2;5641:18;;;5634:30;5700:34;5680:18;;;5673:62;-1:-1:-1;;;5751:18:1;;;5744:42;5803:19;;29164:78:0::1;5420:408:1::0;29164:78:0::1;-1:-1:-1::0;;;;;29253:18:0;;;::::1;;::::0;;;:12:::1;:18;::::0;;;;:26;;-1:-1:-1;;29253:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29090:197::o;27101:102::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;27173:12:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;27173:22:0;;::::1;::::0;;;::::1;::::0;;27101:102::o;8921:354::-;9060:4;9077:36;9087:6;9095:9;9106:6;9077:9;:36::i;:::-;9124:121;9133:6;3551:10;9155:89;9193:6;9155:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9155:19:0;;;;;;:11;:19;;;;;;;;3551:10;9155:33;;;;;;;;;;:37;:89::i;:::-;9124:8;:121::i;:::-;-1:-1:-1;9263:4:0;8921:354;;;;;:::o;8224:217::-;3551:10;8311:4;8360:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8360:34:0;;;;;;;;;;8311:4;;8328:83;;8351:7;;8360:50;;8399:10;8360:38;:50::i;25208:182::-;25342:14;;25334:48;;25246:12;;25289:21;;-1:-1:-1;;;;;25342:14:0;;;;25289:21;;25246:12;25334:48;25246:12;25334:48;25289:21;25342:14;25334:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25321:61:0;;25208:182;-1:-1:-1;;;25208:182:0:o;13597:148::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;13688:6:::1;::::0;13667:40:::1;::::0;13704:1:::1;::::0;-1:-1:-1;;;;;13688:6:0::1;::::0;13667:40:::1;::::0;13704:1;;13667:40:::1;13718:6;:19:::0;;-1:-1:-1;;;;;;13718:19:0::1;::::0;;13597:148::o;28956:126::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;29010:31:::1;29031:4;29036::::0;29010:20:::1;:31::i;:::-;29052:22;29069:4;29052:16;:22::i;:::-;28956:126::o:0;26566:144::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26656:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;26656:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26566:144::o;29437:135::-;29538:17;;29510:54;;29531:5;;-1:-1:-1;;;;;29538:17:0;29557:6;29510:20;:54::i;:::-;29437:135;;:::o;6022:103::-;6077:13;6110:7;6103:14;;;;;:::i;26118:158::-;12752:6;;26201:4;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;-1:-1:-1;26217:17:0::1;:29:::0;;;26264:4:::1;12822:1;26118:158:::0;;;:::o;10091:268::-;10183:4;10200:129;3551:10;10223:7;10232:96;10271:15;10232:96;;;;;;;;;;;;;;;;;3551:10;10232:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10232:34:0;;;;;;;;;;;;:38;:96::i;7430:174::-;7515:4;7532:42;3551:10;7556:9;7567:6;7532:9;:42::i;26282:128::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26367:24:0;;;::::1;;::::0;;;:15:::1;:24;::::0;;;;:35;;-1:-1:-1;;26367:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26282:128::o;26418:140::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26510:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;26510:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26418:140::o;13898:244::-;12752:6;;-1:-1:-1;;;;;12752:6:0;3551:10;12752:22;12744:67;;;;-1:-1:-1;;;12744:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13987:22:0;::::1;13979:73;;;::::0;-1:-1:-1;;;13979:73:0;;6245:2:1;13979:73:0::1;::::0;::::1;6227:21:1::0;6284:2;6264:18;;;6257:30;6323:34;6303:18;;;6296:62;-1:-1:-1;;;6374:18:1;;;6367:36;6420:19;;13979:73:0::1;6043:402:1::0;13979:73:0::1;14089:6;::::0;14068:38:::1;::::0;-1:-1:-1;;;;;14068:38:0;;::::1;::::0;14089:6:::1;::::0;14068:38:::1;::::0;14089:6:::1;::::0;14068:38:::1;14117:6;:17:::0;;-1:-1:-1;;;;;;14117:17:0::1;-1:-1:-1::0;;;;;14117:17:0;;;::::1;::::0;;;::::1;::::0;;13898:244::o;11643:220::-;-1:-1:-1;;;;;11771:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11823:32;;2098:25:1;;;11823:32:0;;2071:18:1;11823:32:0;;;;;;;;11643:220;;;:::o;29580:3272::-;29708:6;29718:1;29708:11;29704:93;;29736:28;29752:4;29758:2;29762:1;29736:15;:28::i;:::-;29580:3272;;;:::o;29704:93::-;13234:6;;-1:-1:-1;;;;;29827:15:0;;;13234:6;;29827:15;;;;:45;;-1:-1:-1;13234:6:0;;-1:-1:-1;;;;;29859:13:0;;;13234:6;;29859:13;;29827:45;:75;;;;-1:-1:-1;29890:12:0;;;;;;;29889:13;29827:75;29809:820;;;29934:14;;;;29929:135;;-1:-1:-1;;;;;29977:21:0;;;;;;:15;:21;;;;;;;;;:44;;-1:-1:-1;;;;;;30002:19:0;;;;;;:15;:19;;;;;;;;29977:44;29969:79;;;;-1:-1:-1;;;29969:79:0;;6652:2:1;29969:79:0;;;6634:21:1;6691:2;6671:18;;;6664:30;-1:-1:-1;;;6710:18:1;;;6703:52;6772:18;;29969:79:0;6450:346:1;29969:79:0;-1:-1:-1;;;;;30082:18:0;;;;;;:12;:18;;;;;;;;:58;;;;-1:-1:-1;;;;;;30105:35:0;;;;;;:31;:35;;;;;;;;30104:36;30082:58;30078:391;;;30179:10;;30169:6;:20;;30161:86;;;;-1:-1:-1;;;30161:86:0;;7003:2:1;30161:86:0;;;6985:21:1;7042:2;7022:18;;;7015:30;7081:34;7061:18;;;7054:62;-1:-1:-1;;;7132:18:1;;;7125:51;7193:19;;30161:86:0;6801:417:1;30161:86:0;30078:391;;;-1:-1:-1;;;;;30286:16:0;;;;;;:12;:16;;;;;;;;:58;;;;-1:-1:-1;;;;;;30307:37:0;;;;;;:31;:37;;;;;;;;30306:38;30286:58;30282:187;;;30383:11;;30373:6;:21;;30365:88;;;;-1:-1:-1;;;30365:88:0;;7425:2:1;30365:88:0;;;7407:21:1;7464:2;7444:18;;;7437:30;7503:34;7483:18;;;7476:62;-1:-1:-1;;;7554:18:1;;;7547:52;7616:19;;30365:88:0;7223:418:1;30365:88:0;-1:-1:-1;;;;;30488:24:0;;;;;;:20;:24;;;;;;;;30483:135;;30567:11;;-1:-1:-1;;;;;7191:18:0;;7164:7;7191:18;;;;;;;;;;;30541:22;;:6;:22;:::i;:::-;:37;;30533:69;;;;-1:-1:-1;;;30533:69:0;;8110:2:1;30533:69:0;;;8092:21:1;8149:2;8129:18;;;8122:30;-1:-1:-1;;;8168:18:1;;;8161:49;8227:18;;30533:69:0;7908:343:1;30533:69:0;30691:4;30642:28;7191:18;;;;;;;;;;;30747:17;;30723:41;;;;;;;30795:36;;-1:-1:-1;30819:12:0;;;;;;;30795:36;:66;;;;-1:-1:-1;30849:12:0;;;;;;;30848:13;30795:66;:99;;;;-1:-1:-1;;;;;;30878:16:0;;;;;;:12;:16;;;;;;;;30795:99;:138;;;;-1:-1:-1;;;;;;30912:21:0;;;;;;:15;:21;;;;;;;;30911:22;30795:138;:175;;;;-1:-1:-1;;;;;;30951:19:0;;;;;;:15;:19;;;;;;;;30950:20;30795:175;30777:310;;;30997:12;:19;;-1:-1:-1;;30997:19:0;;;;;31031:9;:7;:9::i;:::-;31055:12;:20;;-1:-1:-1;;31055:20:0;;;30777:310;31118:12;;-1:-1:-1;;;;;31232:21:0;;31100:14;31232:21;;;:15;:21;;;;;;31118:12;;;;;;;31117:13;;31232:21;;:44;;-1:-1:-1;;;;;;31257:19:0;;;;;;:15;:19;;;;;;;;31232:44;31228:94;;;-1:-1:-1;31305:5:0;31228:94;31420:9;31416:1387;;;31446:12;31495:19;;31480:12;:34;31477:1179;;;31542:23;31561:3;31542:14;:6;31553:2;31542:10;:14::i;:::-;:18;;:23::i;:::-;31535:30;-1:-1:-1;31620:2:0;31607:9;31535:30;31614:2;31607:9;:::i;:::-;31606:16;;;;:::i;:::-;31584:18;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;31678:2:0;;-1:-1:-1;31666:8:0;:4;31673:1;31666:8;:::i;:::-;31665:15;;;;:::i;:::-;31641:20;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;31477:1179:0;;-1:-1:-1;31477:1179:0;;-1:-1:-1;;;;;31706:16:0;;;;;;:12;:16;;;;;;;;:49;;;;-1:-1:-1;31726:25:0;;:29;;31706:49;31702:954;;;31794:25;;31783:46;;31825:3;;31783:37;;:6;;:10;:37::i;:46::-;31908:25;;31877:28;;31776:53;;-1:-1:-1;31908:25:0;31870:35;;31776:53;31870:35;:::i;:::-;:63;;;;:::i;:::-;31848:18;;:85;;;;;;;:::i;:::-;;;;-1:-1:-1;;32012:25:0;;31981:28;;31974:35;;:4;:35;:::i;:::-;:63;;;;:::i;:::-;31952:18;;:85;;;;;;;:::i;:::-;;;;-1:-1:-1;;32120:25:0;;32087:30;;32080:37;;:4;:37;:::i;31702:954::-;-1:-1:-1;;;;;32207:18:0;;;;;;:12;:18;;;;;;;;:50;;;;-1:-1:-1;32229:11:0;:24;:28;;32207:50;32203:453;;;32296:11;:24;32285:45;;32326:3;;32285:36;;:6;;:10;:36::i;:45::-;32408:11;:24;32378:27;;32278:52;;-1:-1:-1;32408:24:0;32371:34;;32278:52;32371:34;:::i;:::-;:61;;;;:::i;:::-;32349:18;;:83;;;;;;;:::i;:::-;;;;-1:-1:-1;;32510:11:0;:24;32480:27;;32473:34;;:4;:34;:::i;:::-;:61;;;;:::i;:::-;32451:18;;:83;;;;;;;:::i;:::-;;;;-1:-1:-1;;32616:11:0;:24;32584:29;;32577:36;;:4;:36;:::i;:::-;:63;;;;:::i;:::-;32553:20;;:87;;;;;;;:::i;:::-;;;;-1:-1:-1;;32203:453:0;32676:8;;32672:91;;32705:42;32721:4;32735;32742;32705:15;:42::i;:::-;32777:14;32787:4;32777:14;;:::i;:::-;;;31431:1372;31416:1387;32811:33;32827:4;32833:2;32837:6;32811:15;:33::i;:::-;29693:3159;;;29580:3272;;;:::o;3925:191::-;4010:7;4046:12;4038:6;;;;4030:29;;;;-1:-1:-1;;;4030:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4070:9:0;4082:5;4086:1;4082;:5;:::i;:::-;4070:17;3925:191;-1:-1:-1;;;;;3925:191:0:o;3598:180::-;3655:7;;3687:5;3691:1;3687;:5;:::i;:::-;3675:17;;3716:1;3711;:6;;3703:46;;;;-1:-1:-1;;;3703:46:0;;8986:2:1;3703:46:0;;;8968:21:1;9025:2;9005:18;;;8998:30;9064:29;9044:18;;;9037:57;9111:18;;3703:46:0;8784:351:1;3703:46:0;3769:1;3598:180;-1:-1:-1;;;3598:180:0:o;25907:203::-;26038:4;26025:9;26009:13;7008:12;;;6921:107;26009:13;:25;;;;:::i;:::-;26008:34;;;;:::i;:::-;25995:10;:47;26098:4;26084:10;26068:13;7008:12;;;6921:107;26068:13;:26;;;;:::i;:::-;26067:35;;;;:::i;:::-;26053:11;:49;-1:-1:-1;;25907:203:0:o;27211:128::-;27327:4;27310:13;27294;7008:12;;;6921:107;27294:13;:29;;;;:::i;:::-;27293:38;;;;:::i;:::-;27279:11;:52;-1:-1:-1;27211:128:0:o;29295:134::-;29391:30;29400:5;29407;29414:6;29391:8;:30::i;10849:358::-;11011:71;11033:6;11011:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11011:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10991:17:0;;;:9;:17;;;;;;;;;;;:91;;;;11116:20;;;;;;;:32;;11141:6;11116:24;:32::i;:::-;-1:-1:-1;;;;;11093:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;11164:35;2098:25:1;;;11093:20:0;;11164:35;;;;;;2071:18:1;11164:35:0;1952:177:1;27347:1601:0;27433:4;27385:27;7191:18;;;;;;;;;;;27385:54;;27450:14;27509:20;;27488:18;;27467;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;27450:79;;27546:19;27569:1;27546:24;27542:41;;27574:7;;27347:1601::o;27542:41::-;27621:17;;:22;;27641:2;27621:22;:::i;:::-;27599:19;:44;27595:121;;;27682:17;;:22;;27702:2;27682:22;:::i;:::-;27660:44;;27595:121;27777:23;27855:1;27846:6;27825:18;;27803:19;:40;;;;:::i;:::-;:49;;;;:::i;:::-;:53;;;;:::i;:::-;27777:79;-1:-1:-1;27867:26:0;27896:40;:19;27777:79;27896:23;:40::i;:::-;27867:69;-1:-1:-1;27978:21:0;28012:50;27867:69;28012:30;:50::i;:::-;28076:18;28097:44;:21;28123:17;28097:25;:44::i;:::-;28076:65;;28155:23;28181:46;28220:6;28181:34;28196:18;;28181:10;:14;;:34;;;;:::i;:46::-;28155:72;;28238:25;28266:48;28307:6;28266:36;28281:20;;28266:10;:14;;:36;;;;:::i;:48::-;28238:76;-1:-1:-1;28325:23:0;28365:35;28238:76;28365:15;:35;:::i;:::-;28351:50;;:10;:50;:::i;:::-;28433:1;28412:18;:22;;;28445:18;:22;;;28478:20;:24;28325:76;-1:-1:-1;28519:19:0;;;;;:42;;;28560:1;28542:15;:19;28519:42;28515:192;;;28578:46;28591:15;28608;28578:12;:46::i;:::-;28644:51;;;9314:25:1;;;9370:2;9355:18;;9348:34;;;28644:51:0;;9287:18:1;28644:51:0;;;;;;;28515:192;28717:20;28740:28;28753:15;28740:10;:28;:::i;:::-;28795:17;;28779:58;;28717:51;;-1:-1:-1;;;;;;28795:17:0;;28779:58;;;;;28717:51;;28795:17;28779:58;28795:17;28779:58;28717:51;28795:17;28779:58;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28857:14:0;28870:1;28857:10;:14;:::i;:::-;28898;;28882:58;;28839:32;;-1:-1:-1;;;;;;28898:14:0;;28882:58;;;;;28839:32;;28898:14;28882:58;28898:14;28882:58;28839:32;28898:14;28882:58;;;;;;;;;;;;;;;;;;;;;27374:1574;;;;;;;;;;27347:1601::o;4546:256::-;4603:7;4633:1;4638;4633:6;4629:47;;-1:-1:-1;4663:1:0;4656:8;;4629:47;4689:9;4701:5;4705:1;4701;:5;:::i;:::-;4689:17;-1:-1:-1;4734:1:0;4725:5;4729:1;4689:17;4725:5;:::i;:::-;:10;4717:56;;;;-1:-1:-1;;;4717:56:0;;9595:2:1;4717:56:0;;;9577:21:1;9634:2;9614:18;;;9607:30;9673:34;9653:18;;;9646:62;-1:-1:-1;;;9724:18:1;;;9717:31;9765:19;;4717:56:0;9393:397:1;4407:131:0;4464:7;4491:39;4495:1;4498;4491:39;;;;;;;;;;;;;;;;;:3;:39::i;3784:135::-;3841:7;3868:43;3872:1;3875;3868:43;;;;;;;;;;;;;;;;;:3;:43::i;24638:562::-;24798:16;;;24812:1;24798:16;;;;;;;;24774:21;;24798:16;;;;;;;;;;-1:-1:-1;24798:16:0;24774:40;;24843:4;24825;24830:1;24825:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;24825:23:0;;;-1:-1:-1;;;;;24825:23:0;;;;;24869:6;-1:-1:-1;;;;;24869:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24859:4;24864:1;24859:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;24859:23:0;;;-1:-1:-1;;;;;24859:23:0;;;;;24895:49;24912:4;24927:6;24936:7;24895:8;:49::i;:::-;24981:211;;-1:-1:-1;;;24981:211:0;;-1:-1:-1;;;;;24981:6:0;:57;;;;:211;;25053:7;;25075:1;;25119:4;;25146;;25166:15;;24981:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26718:350;26862:49;26879:4;26894:6;26903:7;26862:8;:49::i;:::-;26954:106;;-1:-1:-1;;;26954:106:0;;27006:4;26954:106;;;11641:34:1;;;11691:18;;;11684:34;;;27022:1:0;11734:18:1;;;11727:34;;;11777:18;;;11770:34;11820:19;;;11813:44;27044:15:0;11873:19:1;;;11866:35;26954:6:0;-1:-1:-1;;;;;26954:22:0;;;;26985:9;;11575:19:1;;26954:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;26718:350;;:::o;4124:277::-;4209:7;4244:12;4237:5;4229:28;;;;-1:-1:-1;;;4229:28:0;;;;;;;;:::i;:::-;-1:-1:-1;4268:9:0;4280:5;4284:1;4280;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:247::-;762:6;815:2;803:9;794:7;790:23;786:32;783:52;;;831:1;828;821:12;783:52;870:9;857:23;889:31;914:5;889:31;:::i;955:315::-;1023:6;1031;1084:2;1072:9;1063:7;1059:23;1055:32;1052:52;;;1100:1;1097;1090:12;1052:52;1139:9;1126:23;1158:31;1183:5;1158:31;:::i;:::-;1208:5;1260:2;1245:18;;;;1232:32;;-1:-1:-1;;;955:315:1:o;1467:160::-;1532:20;;1588:13;;1581:21;1571:32;;1561:60;;1617:1;1614;1607:12;1632:315;1697:6;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1813:9;1800:23;1832:31;1857:5;1832:31;:::i;:::-;1882:5;-1:-1:-1;1906:35:1;1937:2;1922:18;;1906:35;:::i;:::-;1896:45;;1632:315;;;;;:::o;2818:180::-;2874:6;2927:2;2915:9;2906:7;2902:23;2898:32;2895:52;;;2943:1;2940;2933:12;2895:52;2966:26;2982:9;2966:26;:::i;3003:456::-;3080:6;3088;3096;3149:2;3137:9;3128:7;3124:23;3120:32;3117:52;;;3165:1;3162;3155:12;3117:52;3204:9;3191:23;3223:31;3248:5;3223:31;:::i;:::-;3273:5;-1:-1:-1;3330:2:1;3315:18;;3302:32;3343:33;3302:32;3343:33;:::i;:::-;3003:456;;3395:7;;-1:-1:-1;;;3449:2:1;3434:18;;;;3421:32;;3003:456::o;3861:180::-;3920:6;3973:2;3961:9;3952:7;3948:23;3944:32;3941:52;;;3989:1;3986;3979:12;3941:52;-1:-1:-1;4012:23:1;;3861:180;-1:-1:-1;3861:180:1:o;4046:388::-;4114:6;4122;4175:2;4163:9;4154:7;4150:23;4146:32;4143:52;;;4191:1;4188;4181:12;4143:52;4230:9;4217:23;4249:31;4274:5;4249:31;:::i;:::-;4299:5;-1:-1:-1;4356:2:1;4341:18;;4328:32;4369:33;4328:32;4369:33;:::i;:::-;4421:7;4411:17;;;4046:388;;;;;:::o;4674:380::-;4753:1;4749:12;;;;4796;;;4817:61;;4871:4;4863:6;4859:17;4849:27;;4817:61;4924:2;4916:6;4913:14;4893:18;4890:38;4887:161;;4970:10;4965:3;4961:20;4958:1;4951:31;5005:4;5002:1;4995:15;5033:4;5030:1;5023:15;4887:161;;4674:380;;;:::o;5059:356::-;5261:2;5243:21;;;5280:18;;;5273:30;5339:34;5334:2;5319:18;;5312:62;5406:2;5391:18;;5059:356::o;7646:127::-;7707:10;7702:3;7698:20;7695:1;7688:31;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7778:125;7843:9;;;7864:10;;;7861:36;;;7877:18;;:::i;8256:168::-;8329:9;;;8360;;8377:15;;;8371:22;;8357:37;8347:71;;8398:18;;:::i;8429:217::-;8469:1;8495;8485:132;;8539:10;8534:3;8530:20;8527:1;8520:31;8574:4;8571:1;8564:15;8602:4;8599:1;8592:15;8485:132;-1:-1:-1;8631:9:1;;8429:217::o;8651:128::-;8718:9;;;8739:11;;;8736:37;;;8753:18;;:::i;9927:127::-;9988:10;9983:3;9979:20;9976:1;9969:31;10019:4;10016:1;10009:15;10043:4;10040:1;10033:15;10059:251;10129:6;10182:2;10170:9;10161:7;10157:23;10153:32;10150:52;;;10198:1;10195;10188:12;10150:52;10230:9;10224:16;10249:31;10274:5;10249:31;:::i;10315:980::-;10577:4;10625:3;10614:9;10610:19;10656:6;10645:9;10638:25;10682:2;10720:6;10715:2;10704:9;10700:18;10693:34;10763:3;10758:2;10747:9;10743:18;10736:31;10787:6;10822;10816:13;10853:6;10845;10838:22;10891:3;10880:9;10876:19;10869:26;;10930:2;10922:6;10918:15;10904:29;;10951:1;10961:195;10975:6;10972:1;10969:13;10961:195;;;11040:13;;-1:-1:-1;;;;;11036:39:1;11024:52;;11131:15;;;;11096:12;;;;11072:1;10990:9;10961:195;;;-1:-1:-1;;;;;;;11212:32:1;;;;11207:2;11192:18;;11185:60;-1:-1:-1;;;11276:3:1;11261:19;11254:35;11173:3;10315:980;-1:-1:-1;;;10315:980:1:o;11912:306::-;12000:6;12008;12016;12069:2;12057:9;12048:7;12044:23;12040:32;12037:52;;;12085:1;12082;12075:12;12037:52;12114:9;12108:16;12098:26;;12164:2;12153:9;12149:18;12143:25;12133:35;;12208:2;12197:9;12193:18;12187:25;12177:35;;11912:306;;;;;:::o

Swarm Source

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