ETH Price: $2,295.72 (+1.39%)

Token

X BURN (X)
 

Overview

Max Total Supply

973,672,846.054895042799209294 X

Holders

144

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.403351948599663028 X

Value
$0.00
0xf4730bff01b297e47bf79ef9901b9cf529b691b5
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:
X

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-21
*/

// SPDX-License-Identifier: Unlicensed

/*

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

*/

pragma solidity 0.8.17;

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

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


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `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 `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 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 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 _createSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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


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

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

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

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


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

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

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

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

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

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

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

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

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

contract X is ERC20, Ownable {
    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 public swapTokensAtAmount = 10000000 * (10**18); // 1%
    uint256 public maxTransactionAmount = 10000000 * (10**18); // 1%
    uint256 public maxWalletToken = 10000000 * (10**18); // 1%

    uint256 public liquidityBuyFee = 1;
    uint256 public marketingBuyFee = 10;
    uint256 public teamBuyFee = 8;
    uint256 public burnBuyFee = 1;
    uint256 private totalBuyFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee;

    uint256 public liquiditySellFee = 1;
    uint256 public marketingSellFee = 10;
    uint256 public teamSellFee = 8;
    uint256 public burnSellFee = 1;
    uint256 private totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee;

    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    address payable public marketingWallet = payable(0x856E52CF72FB7aA98C6D5fFb1Bef31f5678732BE);
    address payable public teamWallet = payable(0x710a22842049Fa8FC8fF0265A8b1635c85403476);
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    // Blacklist bots
    mapping(address => bool) public _isBlacklisted;

    // exlcude from fees and max wallet
    mapping (address => bool) private _isExcludedFromFees;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived);
    event ExcludeFromFees(address indexed account, bool isExcluded);
   
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() ERC20("X BURN", "X") {
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        // exclude from paying fees or having max wallet limit
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(teamWallet, true);
        excludeFromFees(address(this), true);
        
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createSupply(owner(), 1000000000 * (10**18));
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address');

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(amount <= maxTransactionAmount, "amount must be less than or equal to maxTx limit");
        }

        if(from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount.");
        }

    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            to==uniswapV2Pair && 
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);
        }

         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 fees;
            uint256 burnShare;
            
            if(from==uniswapV2Pair) {
                fees = amount*(totalBuyFees-burnBuyFee)/100;
                burnShare = amount*(burnBuyFee)/100;
            }

            if(to==uniswapV2Pair) {
                fees = amount*(totalSellFees-burnSellFee)/100;
                burnShare = amount*(burnSellFee)/100;
            }

            amount = amount-(fees+burnShare);

            if(burnShare > 0) {
                super._burn(from, burnShare); 
            }

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

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance*liquiditySellFee/(totalSellFees-burnSellFee);
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity/2;
        uint256 otherHalf = tokensForLiquidity-half;

        // capture the contract's current ETH balance.
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); 

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance-initialBalance;

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance);

        // swap and Send ether to wallets
        swapTokensForEth(contractTokenBalance-tokensForLiquidity);
        uint256 teamShare = address(this).balance*teamSellFee/(totalSellFees-burnSellFee-liquiditySellFee);
        
        teamWallet.transfer(teamShare);
        marketingWallet.transfer(address(this).balance);
        

    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
        
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
   
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

    function updateBuyFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner {
        liquidityBuyFee = _liqFee;
        marketingBuyFee = _markFee;
        teamBuyFee = _teamFee;
        burnBuyFee = _burnFee;
        totalSellFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee;
    }

    function updateSellFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner {
        liquiditySellFee = _liqFee;
        marketingSellFee = _markFee;
        teamSellFee = _teamFee;
        burnSellFee = _burnFee;
        totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee;
    }

    function setWallets(address payable _marketing, address payable _team) public onlyOwner {
        marketingWallet = _marketing;
        teamWallet = _team;
    }

    function setMaxTxAmount(uint256 _percent) public onlyOwner {
        require(_percent > 0 && _percent <= 100);
        maxTransactionAmount = _percent*totalSupply()/100;
    }

    function setMaxWalletLimit(uint256 _percent) public onlyOwner {
        require(_percent > 0 && _percent <= 100);
        maxWalletToken = _percent*totalSupply()/100;
    }

    function blacklistBots(address account, bool value) external onlyOwner{
        _isBlacklisted[account] = value;
    }

    receive() external payable {

  	}
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketing","type":"address"},{"internalType":"address payable","name":"_team","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526a084595161401484a0000006007556a084595161401484a0000006008556a084595161401484a0000006009556001600a55600a600b556008600c556001600d55600d54600c54600b54600a546200005d91906200064d565b6200006991906200064d565b6200007591906200064d565b600e556001600f55600a60105560086011556001601255601254601154601054600f54620000a491906200064d565b620000b091906200064d565b620000bc91906200064d565b6013556014805475856e52cf72fb7aa98c6d5ffb1bef31f5678732be0100610100600160b01b0319909116179055601580546001600160a01b031990811673710a22842049fa8fc8ff0265a8b1635c85403476179091556016805490911661dead1790553480156200012d57600080fd5b50604051806040016040528060068152602001652c10212aa92760d11b815250604051806040016040528060018152602001600b60fb1b815250816003908162000178919062000719565b50600462000187828262000719565b505050620001a46200019e620003c960201b60201c565b620003cd565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002249190620007e5565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000272573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002989190620007e5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030c9190620007e5565b600680546001600160a01b0319166001600160a01b038581169190911790915581166080529050620003526200034a6005546001600160a01b031690565b60016200041f565b60145462000371906201000090046001600160a01b031660016200041f565b6015546200038a906001600160a01b031660016200041f565b620003973060016200041f565b620003c1620003ae6005546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000563565b505062000817565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200047f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526018602052604090205481151560ff909116151503620005045760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840162000476565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005bb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000476565b8060026000828254620005cf91906200064d565b90915550506001600160a01b03821660009081526020819052604081208054839290620005fe9084906200064d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b808201808211156200066f57634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006a057607f821691505b602082108103620006c157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064857600081815260208120601f850160051c81016020861015620006f05750805b601f850160051c820191505b818110156200071157828155600101620006fc565b505050505050565b81516001600160401b0381111562000735576200073562000675565b6200074d816200074684546200068b565b84620006c7565b602080601f8311600181146200078557600084156200076c5750858301515b600019600386901b1c1916600185901b17855562000711565b600085815260208120601f198616915b82811015620007b65788860151825594840194600190910190840162000795565b5085821015620007d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007f857600080fd5b81516001600160a01b03811681146200081057600080fd5b9392505050565b608051611fb16200084f600039600081816104190152818161119d015281816112d10152818161137701526113f50152611fb16000f3fe6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b60565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611bc3565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611bef565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c13565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611bc3565b610925565b3480156103f157600080fd5b50610405610400366004611c54565b610961565b005b34801561041357600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000000081565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611bef565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611bef565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c54565b6109fe565b34801561054057600080fd5b5061040561054f366004611c86565b610a48565b34801561056057600080fd5b5061040561056f366004611c86565b610ab1565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610ae0565b34801561062557600080fd5b506102ac610634366004611bc3565b610aef565b34801561064557600080fd5b506102ac610654366004611bc3565b610b88565b34801561066557600080fd5b50610405610674366004611cb4565b610b95565b34801561068557600080fd5b50610405610694366004611cb4565b610bea565b3480156106a557600080fd5b506104056106b4366004611ce9565b610cf6565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d04565b610d74565b34801561071157600080fd5b506102d2610720366004611d04565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611c86565b610dd8565b3480156107b957600080fd5b506104056107c8366004611bef565b610e41565b6060600380546107dc90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d3d565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610edc565b5060015b92915050565b6000610883848484611000565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610edc565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611d8d565b610edc565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611da0565b600a849055600b839055600c829055600d81905580826109ab8587611d8d565b6109b59190611d8d565b6109bf9190611d8d565b60135550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611da0565b6109fc60006114bd565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611da0565b600f84905560108390556011829055601281905580826109ab8587611d8d565b6005546001600160a01b03163314610a725760405162461bcd60e51b815260040161090490611da0565b600081118015610a83575060648111155b610a8c57600080fd5b6064610a9760025490565b610aa19083611dd5565b610aab9190611dec565b60095550565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161090490611da0565b600755565b6060600480546107dc90611d3d565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b7e3385858403610edc565b5060019392505050565b600061086c338484611000565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610c975760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d205760405162461bcd60e51b815260040161090490611da0565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d6990831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161090490611da0565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e025760405162461bcd60e51b815260040161090490611da0565b600081118015610e13575060648111155b610e1c57600080fd5b6064610e2760025490565b610e319083611dd5565b610e3b9190611dec565b60085550565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b038116610ed05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ed9816114bd565b50565b6001600160a01b038316610f3e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110265760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661104c5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b03831660009081526017602052604090205460ff1615801561108e57506001600160a01b03821660009081526017602052604090205460ff16155b6110d05760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b806000036110e9576110e48383600061150f565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561112b57506001600160a01b03821660009081526018602052604090205460ff16155b1561119b5760085481111561119b5760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156111f557506001600160a01b03831660009081526018602052604090205460ff16155b801561121a57506001600160a01b03821660009081526018602052604090205460ff16155b156112a1576001600160a01b0382166000908152602081905260409020546009546112458383611d8d565b111561129f5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112c8575060145460ff16155b801561130557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156113185750601454610100900460ff165b1561132b57600754915061132b82611664565b6001600160a01b03851660009081526018602052604090205460ff1615801561136d57506001600160a01b03841660009081526018602052604090205460ff16155b156114ab576000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316036113f3576064600d54600e546113c09190611e96565b6113ca9087611dd5565b6113d49190611dec565b91506064600d54866113e69190611dd5565b6113f09190611dec565b90505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03160361147157606460125460135461143e9190611e96565b6114489087611dd5565b6114529190611dec565b91506064601254866114649190611dd5565b61146e9190611dec565b90505b61147b8183611d8d565b6114859086611e96565b945080156114975761149787826117ed565b81156114a8576114a887308461150f565b50505b6114b685858561150f565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115355760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661155b5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b038316600090815260208190526040902054818110156115d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061160a908490611d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165691815260200190565b60405180910390a350505050565b6014805460ff1916600117905560125460135460009161168391611e96565b600f546116909084611dd5565b61169a9190611dec565b905060006116a9600283611dec565b905060006116b78284611e96565b9050476116c38361191f565b60006116cf8247611e96565b90506116db8382611aaa565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a16117266117218688611e96565b61191f565b6000600f5460125460135461173b9190611e96565b6117459190611e96565b6011546117529047611dd5565b61175c9190611dec565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611797573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117d9573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661184d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118c15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195457611954611ea9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190611ebf565b816001815181106119e4576119e4611ea9565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a3b57600654611a3b9030906001600160a01b0316600019610edc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a74908590600090869030904290600401611edc565b600060405180830381600087803b158015611a8e57600080fd5b505af1158015611aa2573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611ad36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b3b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114b69190611f4d565b600060208083528351808285015260005b81811015611b8d57858101830151858201604001528201611b71565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ed957600080fd5b60008060408385031215611bd657600080fd5b8235611be181611bae565b946020939093013593505050565b600060208284031215611c0157600080fd5b8135611c0c81611bae565b9392505050565b600080600060608486031215611c2857600080fd5b8335611c3381611bae565b92506020840135611c4381611bae565b929592945050506040919091013590565b60008060008060808587031215611c6a57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611c9857600080fd5b5035919050565b80358015158114611caf57600080fd5b919050565b60008060408385031215611cc757600080fd5b8235611cd281611bae565b9150611ce060208401611c9f565b90509250929050565b600060208284031215611cfb57600080fd5b611c0c82611c9f565b60008060408385031215611d1757600080fd5b8235611d2281611bae565b91506020830135611d3281611bae565b809150509250929050565b600181811c90821680611d5157607f821691505b602082108103611d7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d77565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d77565b600082611e0957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d77565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ed157600080fd5b8151611c0c81611bae565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f2c5784516001600160a01b031683529383019391830191600101611f07565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f6257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122052b1ee91d1cd5479e96374c7d72c66778482988e79b275325c85f317f00f3e4764736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b60565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611bc3565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611bef565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c13565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611bc3565b610925565b3480156103f157600080fd5b50610405610400366004611c54565b610961565b005b34801561041357600080fd5b506103007f0000000000000000000000006ff950349660048ad115d238cc9028b707ccafe581565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611bef565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611bef565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c54565b6109fe565b34801561054057600080fd5b5061040561054f366004611c86565b610a48565b34801561056057600080fd5b5061040561056f366004611c86565b610ab1565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610ae0565b34801561062557600080fd5b506102ac610634366004611bc3565b610aef565b34801561064557600080fd5b506102ac610654366004611bc3565b610b88565b34801561066557600080fd5b50610405610674366004611cb4565b610b95565b34801561068557600080fd5b50610405610694366004611cb4565b610bea565b3480156106a557600080fd5b506104056106b4366004611ce9565b610cf6565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d04565b610d74565b34801561071157600080fd5b506102d2610720366004611d04565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611c86565b610dd8565b3480156107b957600080fd5b506104056107c8366004611bef565b610e41565b6060600380546107dc90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d3d565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610edc565b5060015b92915050565b6000610883848484611000565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610edc565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611d8d565b610edc565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611da0565b600a849055600b839055600c829055600d81905580826109ab8587611d8d565b6109b59190611d8d565b6109bf9190611d8d565b60135550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611da0565b6109fc60006114bd565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611da0565b600f84905560108390556011829055601281905580826109ab8587611d8d565b6005546001600160a01b03163314610a725760405162461bcd60e51b815260040161090490611da0565b600081118015610a83575060648111155b610a8c57600080fd5b6064610a9760025490565b610aa19083611dd5565b610aab9190611dec565b60095550565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161090490611da0565b600755565b6060600480546107dc90611d3d565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b7e3385858403610edc565b5060019392505050565b600061086c338484611000565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161090490611da0565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610c975760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d205760405162461bcd60e51b815260040161090490611da0565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d6990831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161090490611da0565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e025760405162461bcd60e51b815260040161090490611da0565b600081118015610e13575060648111155b610e1c57600080fd5b6064610e2760025490565b610e319083611dd5565b610e3b9190611dec565b60085550565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161090490611da0565b6001600160a01b038116610ed05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ed9816114bd565b50565b6001600160a01b038316610f3e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610f9f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110265760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661104c5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b03831660009081526017602052604090205460ff1615801561108e57506001600160a01b03821660009081526017602052604090205460ff16155b6110d05760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b806000036110e9576110e48383600061150f565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561112b57506001600160a01b03821660009081526018602052604090205460ff16155b1561119b5760085481111561119b5760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f0000000000000000000000006ff950349660048ad115d238cc9028b707ccafe56001600160a01b0316836001600160a01b03161480156111f557506001600160a01b03831660009081526018602052604090205460ff16155b801561121a57506001600160a01b03821660009081526018602052604090205460ff16155b156112a1576001600160a01b0382166000908152602081905260409020546009546112458383611d8d565b111561129f5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112c8575060145460ff16155b801561130557507f0000000000000000000000006ff950349660048ad115d238cc9028b707ccafe56001600160a01b0316846001600160a01b0316145b80156113185750601454610100900460ff165b1561132b57600754915061132b82611664565b6001600160a01b03851660009081526018602052604090205460ff1615801561136d57506001600160a01b03841660009081526018602052604090205460ff16155b156114ab576000807f0000000000000000000000006ff950349660048ad115d238cc9028b707ccafe56001600160a01b0316876001600160a01b0316036113f3576064600d54600e546113c09190611e96565b6113ca9087611dd5565b6113d49190611dec565b91506064600d54866113e69190611dd5565b6113f09190611dec565b90505b7f0000000000000000000000006ff950349660048ad115d238cc9028b707ccafe56001600160a01b0316866001600160a01b03160361147157606460125460135461143e9190611e96565b6114489087611dd5565b6114529190611dec565b91506064601254866114649190611dd5565b61146e9190611dec565b90505b61147b8183611d8d565b6114859086611e96565b945080156114975761149787826117ed565b81156114a8576114a887308461150f565b50505b6114b685858561150f565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115355760405162461bcd60e51b815260040161090490611e0e565b6001600160a01b03821661155b5760405162461bcd60e51b815260040161090490611e53565b6001600160a01b038316600090815260208190526040902054818110156115d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061160a908490611d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165691815260200190565b60405180910390a350505050565b6014805460ff1916600117905560125460135460009161168391611e96565b600f546116909084611dd5565b61169a9190611dec565b905060006116a9600283611dec565b905060006116b78284611e96565b9050476116c38361191f565b60006116cf8247611e96565b90506116db8382611aaa565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a16117266117218688611e96565b61191f565b6000600f5460125460135461173b9190611e96565b6117459190611e96565b6011546117529047611dd5565b61175c9190611dec565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611797573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117d9573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661184d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118c15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195457611954611ea9565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190611ebf565b816001815181106119e4576119e4611ea9565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a3b57600654611a3b9030906001600160a01b0316600019610edc565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a74908590600090869030904290600401611edc565b600060405180830381600087803b158015611a8e57600080fd5b505af1158015611aa2573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611ad36005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b3b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114b69190611f4d565b600060208083528351808285015260005b81811015611b8d57858101830151858201604001528201611b71565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ed957600080fd5b60008060408385031215611bd657600080fd5b8235611be181611bae565b946020939093013593505050565b600060208284031215611c0157600080fd5b8135611c0c81611bae565b9392505050565b600080600060608486031215611c2857600080fd5b8335611c3381611bae565b92506020840135611c4381611bae565b929592945050506040919091013590565b60008060008060808587031215611c6a57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611c9857600080fd5b5035919050565b80358015158114611caf57600080fd5b919050565b60008060408385031215611cc757600080fd5b8235611cd281611bae565b9150611ce060208401611c9f565b90509250929050565b600060208284031215611cfb57600080fd5b611c0c82611c9f565b60008060408385031215611d1757600080fd5b8235611d2281611bae565b91506020830135611d3281611bae565b809150509250929050565b600181811c90821680611d5157607f821691505b602082108103611d7157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d77565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d77565b600082611e0957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d77565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ed157600080fd5b8151611c0c81611bae565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f2c5784516001600160a01b031683529383019391830191600101611f07565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f6257600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122052b1ee91d1cd5479e96374c7d72c66778482988e79b275325c85f317f00f3e4764736f6c63430008110033

Deployed Bytecode Sourcemap

23534:9260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7963:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10130:169;;;;;;;;;;-1:-1:-1;10130:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10130:169:0;1023:187:1;24117:35:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;24117:35:0;1215:177:1;23570:41:0;;;;;;;;;;-1:-1:-1;23570:41:0;;;;-1:-1:-1;;;;;23570:41:0;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;23570:41:0;1397:230:1;9083:108:0;;;;;;;;;;-1:-1:-1;9171:12:0;;9083:108;;24202:30;;;;;;;;;;;;;;;;24754:46;;;;;;;;;;-1:-1:-1;24754:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23952:29;;;;;;;;;;;;;;;;10781:492;;;;;;;;;;-1:-1:-1;10781:492:0;;;;;:::i;:::-;;:::i;8925:93::-;;;;;;;;;;-1:-1:-1;8925:93:0;;9008:2;2487:36:1;;2475:2;2460:18;8925:93:0;2345:184:1;11682:215:0;;;;;;;;;;-1:-1:-1;11682:215:0;;;;;:::i;:::-;;:::i;31387:335::-;;;;;;;;;;-1:-1:-1;31387:335:0;;;;;:::i;:::-;;:::i;:::-;;23618:38;;;;;;;;;;;;;;;24410:40;;;;;;;;;;-1:-1:-1;24410:40:0;;;;;;;;;;;30945:125;;;;;;;;;;-1:-1:-1;30945:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;31034:28:0;31010:4;31034:28;;;:19;:28;;;;;;;;;30945:125;24558:87;;;;;;;;;;-1:-1:-1;24558:87:0;;;;-1:-1:-1;;;;;24558:87:0;;;23910:35;;;;;;;;;;;;;;;;9254:127;;;;;;;;;;-1:-1:-1;9254:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9355:18:0;9328:7;9355:18;;;;;;;;;;;;9254:127;2067:94;;;;;;;;;;;;;:::i;31730:344::-;;;;;;;;;;-1:-1:-1;31730:344:0;;;;;:::i;:::-;;:::i;32440:175::-;;;;;;;;;;-1:-1:-1;32440:175:0;;;;;:::i;:::-;;:::i;31260:119::-;;;;;;;;;;-1:-1:-1;31260:119:0;;;;;:::i;:::-;;:::i;24459:92::-;;;;;;;;;;-1:-1:-1;24459:92:0;;;;;;;-1:-1:-1;;;;;24459:92:0;;;23988:29;;;;;;;;;;;;;;;;24239:30;;;;;;;;;;;;;;;;24652:70;;;;;;;;;;-1:-1:-1;24652:70:0;;;;-1:-1:-1;;;;;24652:70:0;;;1416:87;;;;;;;;;;-1:-1:-1;1489:6:0;;-1:-1:-1;;;;;1489:6:0;1416:87;;8182:104;;;;;;;;;;;;;:::i;12400:413::-;;;;;;;;;;-1:-1:-1;12400:413:0;;;;;:::i;:::-;;:::i;9594:175::-;;;;;;;;;;-1:-1:-1;9594:175:0;;;;;:::i;:::-;;:::i;32623:120::-;;;;;;;;;;-1:-1:-1;32623:120:0;;;;;:::i;:::-;;:::i;30643:290::-;;;;;;;;;;-1:-1:-1;30643:290:0;;;;;:::i;:::-;;:::i;31081:171::-;;;;;;;;;;-1:-1:-1;31081:171:0;;;;;:::i;:::-;;:::i;23733:57::-;;;;;;;;;;;;;;;;23869:34;;;;;;;;;;;;;;;;32082:164;;;;;;;;;;-1:-1:-1;32082:164:0;;;;;:::i;:::-;;:::i;9832:151::-;;;;;;;;;;-1:-1:-1;9832:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9948:18:0;;;9921:7;9948:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9832:151;23665:55;;;;;;;;;;;;;;;;23803:51;;;;;;;;;;;;;;;;24159:36;;;;;;;;;;;;;;;;32254:178;;;;;;;;;;-1:-1:-1;32254:178:0;;;;;:::i;:::-;;:::i;2316:192::-;;;;;;;;;;-1:-1:-1;2316:192:0;;;;;:::i;:::-;;:::i;7963:100::-;8017:13;8050:5;8043:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7963:100;:::o;10130:169::-;10213:4;10230:39;370:10;10253:7;10262:6;10230:8;:39::i;:::-;-1:-1:-1;10287:4:0;10130:169;;;;;:::o;10781:492::-;10921:4;10938:36;10948:6;10956:9;10967:6;10938:9;:36::i;:::-;-1:-1:-1;;;;;11014:19:0;;10987:24;11014:19;;;:11;:19;;;;;;;;370:10;11014:33;;;;;;;;11066:26;;;;11058:79;;;;-1:-1:-1;;;11058:79:0;;5600:2:1;11058:79:0;;;5582:21:1;5639:2;5619:18;;;5612:30;5678:34;5658:18;;;5651:62;-1:-1:-1;;;5729:18:1;;;5722:38;5777:19;;11058:79:0;;;;;;;;;11173:57;11182:6;370:10;11223:6;11204:16;:25;11173:8;:57::i;:::-;-1:-1:-1;11261:4:0;;10781:492;-1:-1:-1;;;;10781:492:0:o;11682:215::-;370:10;11770:4;11819:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11819:34:0;;;;;;;;;;11770:4;;11787:80;;11810:7;;11819:47;;11856:10;;11819:47;:::i;:::-;11787:8;:80::i;31387:335::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;31508:15:::1;:25:::0;;;31544:15:::1;:26:::0;;;31581:10:::1;:21:::0;;;31613:10:::1;:21:::0;;;31626:8;31594;31661:31:::1;31562:8:::0;31526:7;31661:31:::1;:::i;:::-;:42;;;;:::i;:::-;:53;;;;:::i;:::-;31645:13;:69:::0;-1:-1:-1;;;;31387:335:0:o;2067:94::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;2132:21:::1;2150:1;2132:9;:21::i;:::-;2067:94::o:0;31730:344::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;31852:16:::1;:26:::0;;;31889:16:::1;:27:::0;;;31927:11:::1;:22:::0;;;31960:11:::1;:22:::0;;;31974:8;31941;32009:33:::1;31908:8:::0;31871:7;32009:33:::1;:::i;32440:175::-:0;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;32532:1:::1;32521:8;:12;:31;;;;;32549:3;32537:8;:15;;32521:31;32513:40;;;::::0;::::1;;32604:3;32590:13;9171:12:::0;;;9083:108;32590:13:::1;32581:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;32564:14;:43:::0;-1:-1:-1;32440:175:0:o;31260:119::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;31340:18:::1;:31:::0;31260:119::o;8182:104::-;8238:13;8271:7;8264:14;;;;;:::i;12400:413::-;370:10;12493:4;12537:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12537:34:0;;;;;;;;;;12590:35;;;;12582:85;;;;-1:-1:-1;;;12582:85:0;;7027:2:1;12582:85:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;-1:-1:-1;;;7156:18:1;;;7149:35;7201:19;;12582:85:0;6825:401:1;12582:85:0;12703:67;370:10;12726:7;12754:15;12735:16;:34;12703:8;:67::i;:::-;-1:-1:-1;12801:4:0;;12400:413;-1:-1:-1;;;12400:413:0:o;9594:175::-;9680:4;9697:42;370:10;9721:9;9732:6;9697:9;:42::i;32623:120::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32704:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;32704:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32623:120::o;30643:290::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30736:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;30728:95:::1;;;::::0;-1:-1:-1;;;30728:95:0;;7433:2:1;30728:95:0::1;::::0;::::1;7415:21:1::0;7472:2;7452:18;;;7445:30;7511:34;7491:18;;;7484:62;-1:-1:-1;;;7562:18:1;;;7555:40;7612:19;;30728:95:0::1;7231:406:1::0;30728:95:0::1;-1:-1:-1::0;;;;;30834:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30834:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30891:34;;1163:41:1;;;30891:34:0::1;::::0;1136:18:1;30891:34:0::1;;;;;;;30643:290:::0;;:::o;31081:171::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;31158:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;31158:32:0;;::::1;;::::0;;31206:38:::1;::::0;::::1;::::0;::::1;::::0;31182:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;31206:38:0::1;;;;;;;;31081:171:::0;:::o;32082:164::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;32181:15:::1;:28:::0;;-1:-1:-1;;;;;;32181:28:0::1;::::0;-1:-1:-1;;;;;32181:28:0;;::::1;;;::::0;;32220:10:::1;:18:::0;;-1:-1:-1;;;;;;32220:18:0::1;::::0;;;::::1;;::::0;;32082:164::o;32254:178::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;32343:1:::1;32332:8;:12;:31;;;;;32360:3;32348:8;:15;;32332:31;32324:40;;;::::0;::::1;;32421:3;32407:13;9171:12:::0;;;9083:108;32407:13:::1;32398:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;32375:20;:49:::0;-1:-1:-1;32254:178:0:o;2316:192::-;1489:6;;-1:-1:-1;;;;;1489:6:0;370:10;1636:23;1628:68;;;;-1:-1:-1;;;1628:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2405:22:0;::::1;2397:73;;;::::0;-1:-1:-1;;;2397:73:0;;7844:2:1;2397:73:0::1;::::0;::::1;7826:21:1::0;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;-1:-1:-1;;;7973:18:1;;;7966:36;8019:19;;2397:73:0::1;7642:402:1::0;2397:73:0::1;2481:19;2491:8;2481:9;:19::i;:::-;2316:192:::0;:::o;16179:380::-;-1:-1:-1;;;;;16315:19:0;;16307:68;;;;-1:-1:-1;;;16307:68:0;;8251:2:1;16307:68:0;;;8233:21:1;8290:2;8270:18;;;8263:30;8329:34;8309:18;;;8302:62;-1:-1:-1;;;8380:18:1;;;8373:34;8424:19;;16307:68:0;8049:400:1;16307:68:0;-1:-1:-1;;;;;16394:21:0;;16386:68;;;;-1:-1:-1;;;16386:68:0;;8656:2:1;16386:68:0;;;8638:21:1;8695:2;8675:18;;;8668:30;8734:34;8714:18;;;8707:62;-1:-1:-1;;;8785:18:1;;;8778:32;8827:19;;16386:68:0;8454:398:1;16386:68:0;-1:-1:-1;;;;;16467:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16519:32;;1361:25:1;;;16519:32:0;;1334:18:1;16519:32:0;;;;;;;16179:380;;;:::o;26125:2288::-;-1:-1:-1;;;;;26257:18:0;;26249:68;;;;-1:-1:-1;;;26249:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26336:16:0;;26328:64;;;;-1:-1:-1;;;26328:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26412:20:0;;;;;;:14;:20;;;;;;;;26411:21;:44;;;;-1:-1:-1;;;;;;26437:18:0;;;;;;:14;:18;;;;;;;;26436:19;26411:44;26403:76;;;;-1:-1:-1;;;26403:76:0;;9869:2:1;26403:76:0;;;9851:21:1;9908:2;9888:18;;;9881:30;-1:-1:-1;;;9927:18:1;;;9920:49;9986:18;;26403:76:0;9667:343:1;26403:76:0;26495:6;26505:1;26495:11;26492:92;;26523:28;26539:4;26545:2;26549:1;26523:15;:28::i;:::-;26125:2288;;;:::o;26492:92::-;-1:-1:-1;;;;;26600:25:0;;;;;;:19;:25;;;;;;;;26599:26;:54;;;;-1:-1:-1;;;;;;26630:23:0;;;;;;:19;:23;;;;;;;;26629:24;26599:54;26596:177;;;26688:20;;26678:6;:30;;26670:91;;;;-1:-1:-1;;;26670:91:0;;10217:2:1;26670:91:0;;;10199:21:1;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;-1:-1:-1;;;10346:18:1;;;10339:46;10402:19;;26670:91:0;10015:412:1;26670:91:0;26794:13;-1:-1:-1;;;;;26788:19:0;:4;-1:-1:-1;;;;;26788:19:0;;:49;;;;-1:-1:-1;;;;;;26812:25:0;;;;;;:19;:25;;;;;;;;26811:26;26788:49;:77;;;;-1:-1:-1;;;;;;26842:23:0;;;;;;:19;:23;;;;;;;;26841:24;26788:77;26785:271;;;-1:-1:-1;;;;;9355:18:0;;26881:32;9355:18;;;;;;;;;;;26989:14;;26952:33;26979:6;9355:18;26952:33;:::i;:::-;:51;;26944:100;;;;-1:-1:-1;;;26944:100:0;;10634:2:1;26944:100:0;;;10616:21:1;10673:2;10653:18;;;10646:30;10712:34;10692:18;;;10685:62;-1:-1:-1;;;10763:18:1;;;10756:34;10807:19;;26944:100:0;10432:400:1;26944:100:0;26866:190;26785:271;27114:4;27065:28;9355:18;;;;;;;;;;;27192;;27168:42;;;;;;;27247:53;;-1:-1:-1;27284:16:0;;;;27283:17;27247:53;:87;;;;;27321:13;-1:-1:-1;;;;;27317:17:0;:2;-1:-1:-1;;;;;27317:17:0;;27247:87;:126;;;;-1:-1:-1;27352:21:0;;;;;;;27247:126;27230:274;;;27423:18;;27400:41;;27456:36;27471:20;27456:14;:36::i;:::-;-1:-1:-1;;;;;27606:25:0;;;;;;:19;:25;;;;;;;;27605:26;:54;;;;-1:-1:-1;;;;;;27636:23:0;;;;;;:19;:23;;;;;;;;27635:24;27605:54;27602:756;;;27676:12;27703:17;27758:13;-1:-1:-1;;;;;27752:19:0;:4;-1:-1:-1;;;;;27752:19:0;;27749:156;;27832:3;27820:10;;27807:12;;:23;;;;:::i;:::-;27799:32;;:6;:32;:::i;:::-;:36;;;;:::i;:::-;27792:43;;27886:3;27874:10;;27866:6;:19;;;;:::i;:::-;:23;;;;:::i;:::-;27854:35;;27749:156;27928:13;-1:-1:-1;;;;;27924:17:0;:2;-1:-1:-1;;;;;27924:17:0;;27921:157;;28004:3;27991:11;;27977:13;;:25;;;;:::i;:::-;27969:34;;:6;:34;:::i;:::-;:38;;;;:::i;:::-;27962:45;;28059:3;28046:11;;28038:6;:20;;;;:::i;:::-;:24;;;;:::i;:::-;28026:36;;27921:157;28111:14;28116:9;28111:4;:14;:::i;:::-;28103:23;;:6;:23;:::i;:::-;28094:32;-1:-1:-1;28146:13:0;;28143:82;;28180:28;28192:4;28198:9;28180:11;:28::i;:::-;28244:8;;28241:91;;28273:42;28289:4;28303;28310;28273:15;:42::i;:::-;27661:697;;27602:756;28370:33;28386:4;28392:2;28396:6;28370:15;:33::i;:::-;26238:2175;;26125:2288;;;:::o;2516:173::-;2591:6;;;-1:-1:-1;;;;;2608:17:0;;;-1:-1:-1;;;;;;2608:17:0;;;;;;;2641:40;;2591:6;;;2608:17;2591:6;;2641:40;;2572:16;;2641:40;2561:128;2516:173;:::o;13303:733::-;-1:-1:-1;;;;;13443:20:0;;13435:70;;;;-1:-1:-1;;;13435:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13524:23:0;;13516:71;;;;-1:-1:-1;;;13516:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13684:17:0;;13660:21;13684:17;;;;;;;;;;;13720:23;;;;13712:74;;;;-1:-1:-1;;;13712:74:0;;11172:2:1;13712:74:0;;;11154:21:1;11211:2;11191:18;;;11184:30;11250:34;11230:18;;;11223:62;-1:-1:-1;;;11301:18:1;;;11294:36;11347:19;;13712:74:0;10970:402:1;13712:74:0;-1:-1:-1;;;;;13822:17:0;;;:9;:17;;;;;;;;;;;13842:22;;;13822:42;;13886:20;;;;;;;;:30;;13858:6;;13822:9;13886:30;;13858:6;;13886:30;:::i;:::-;;;;;;;;13951:9;-1:-1:-1;;;;;13934:35:0;13943:6;-1:-1:-1;;;;;13934:35:0;;13962:6;13934:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;13934:35:0;;;;;;;;13424:612;13303:733;;;:::o;28422:1124::-;25150:16;:23;;-1:-1:-1;;25150:23:0;25169:4;25150:23;;;28589:11:::1;::::0;28575:13:::1;::::0;25150:16;;28575:25:::1;::::0;::::1;:::i;:::-;28557:16;::::0;28536:37:::1;::::0;:20;:37:::1;:::i;:::-;:65;;;;:::i;:::-;28507:94:::0;-1:-1:-1;28670:12:0::1;28685:20;28704:1;28507:94:::0;28685:20:::1;:::i;:::-;28670:35:::0;-1:-1:-1;28716:17:0::1;28736:23;28670:35:::0;28736:18;:23:::1;:::i;:::-;28716:43:::0;-1:-1:-1;28853:21:0::1;28919:22;28936:4:::0;28919:16:::1;:22::i;:::-;29003:18;29024:36;29046:14:::0;29024:21:::1;:36;:::i;:::-;29003:57;;29110:35;29123:9;29134:10;29110:12;:35::i;:::-;29163:32;::::0;;11551:25:1;;;11607:2;11592:18;;11585:34;;;29163:32:0::1;::::0;11524:18:1;29163:32:0::1;;;;;;;29251:57;29268:39;29289:18:::0;29268:20;:39:::1;:::i;:::-;29251:16;:57::i;:::-;29319:17;29400:16;;29388:11;;29374:13;;:25;;;;:::i;:::-;:42;;;;:::i;:::-;29361:11;::::0;29339:33:::1;::::0;:21:::1;:33;:::i;:::-;:78;;;;:::i;:::-;29438:10;::::0;:30:::1;::::0;29319:98;;-1:-1:-1;;;;;;29438:10:0::1;::::0;:30;::::1;;;::::0;29319:98;;29438:10:::1;:30:::0;:10;:30;29319:98;29438:10;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;29479:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;29479:15:0;;;::::1;::::0;;;::::1;::::0;29504:21:::1;29479:47:::0;::::1;;;::::0;::::1;::::0;;;29504:21;29479:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;25196:16:0;:24;;-1:-1:-1;;25196:24:0;;;-1:-1:-1;;;;;;28422:1124:0:o;15064:675::-;-1:-1:-1;;;;;15148:21:0;;15140:67;;;;-1:-1:-1;;;15140:67:0;;11832:2:1;15140:67:0;;;11814:21:1;11871:2;11851:18;;;11844:30;11910:34;11890:18;;;11883:62;-1:-1:-1;;;11961:18:1;;;11954:31;12002:19;;15140:67:0;11630:397:1;15140:67:0;-1:-1:-1;;;;;15307:18:0;;15282:22;15307:18;;;;;;;;;;;15344:24;;;;15336:71;;;;-1:-1:-1;;;15336:71:0;;12234:2:1;15336:71:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:34;12292:18;;;12285:62;-1:-1:-1;;;12363:18:1;;;12356:32;12405:19;;15336:71:0;12032:398:1;15336:71:0;-1:-1:-1;;;;;15443:18:0;;:9;:18;;;;;;;;;;;15464:23;;;15443:44;;15582:12;:22;;;;;;;15633:37;1361:25:1;;;15443:9:0;;:18;15633:37;;1334:18:1;15633:37:0;;;;;;;26125:2288;;;:::o;29554:692::-;29704:16;;;29718:1;29704:16;;;;;;;;29680:21;;29704:16;;;;;;;;;;-1:-1:-1;29704:16:0;29680:40;;29749:4;29731;29736:1;29731:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29731:23:0;;;:7;;;;;;;;;;:23;;;;29775:15;;:22;;;-1:-1:-1;;;29775:22:0;;;;:15;;;;;:20;;:22;;;;;29731:7;;29775:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29765:4;29770:1;29765:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;29765:32:0;;;:7;;;;;;;;;;:32;;;;29846:15;;29831:4;9921:7;9948:18;;;:11;:18;;;;;;29846:15;;;;9948:27;;;;;;29866:11;-1:-1:-1;29810:156:0;;;29924:15;;29892:62;;29909:4;;-1:-1:-1;;;;;29924:15:0;-1:-1:-1;;29892:8:0;:62::i;:::-;30004:15;;:224;;-1:-1:-1;;;30004:224:0;;-1:-1:-1;;;;;30004:15:0;;;;:66;;:224;;30085:11;;30004:15;;30155:4;;30182;;30202:15;;30004:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29609:637;29554:692;:::o;30254:381::-;30365:15;;-1:-1:-1;;;;;30365:15:0;:31;30404:9;30437:4;30457:11;30365:15;;30569:7;1489:6;;-1:-1:-1;;;;;1489:6:0;;1416:87;30569:7;30365:252;;;;;;-1:-1:-1;;;;;;30365:252:0;;;-1:-1:-1;;;;;14299:15:1;;;30365:252:0;;;14281:34:1;14331:18;;;14324:34;;;;14374:18;;;14367:34;;;;14417:18;;;14410:34;14481:15;;;14460:19;;;14453:44;30591:15:0;14513:19:1;;;14506:35;14215:19;;30365:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:247::-;1691:6;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;1799:9;1786:23;1818:31;1843:5;1818:31;:::i;:::-;1868:5;1632:247;-1:-1:-1;;;1632:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2534:385::-;2620:6;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:53;;;2714:1;2711;2704:12;2665:53;-1:-1:-1;;2737:23:1;;;2807:2;2792:18;;2779:32;;-1:-1:-1;2858:2:1;2843:18;;2830:32;;2909:2;2894:18;2881:32;;-1:-1:-1;2534:385:1;-1:-1:-1;2534:385:1:o;3356:180::-;3415:6;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;-1:-1:-1;3507:23:1;;3356:180;-1:-1:-1;3356:180:1:o;3541:160::-;3606:20;;3662:13;;3655:21;3645:32;;3635:60;;3691:1;3688;3681:12;3635:60;3541:160;;;:::o;3706:315::-;3771:6;3779;3832:2;3820:9;3811:7;3807:23;3803:32;3800:52;;;3848:1;3845;3838:12;3800:52;3887:9;3874:23;3906:31;3931:5;3906:31;:::i;:::-;3956:5;-1:-1:-1;3980:35:1;4011:2;3996:18;;3980:35;:::i;:::-;3970:45;;3706:315;;;;;:::o;4026:180::-;4082:6;4135:2;4123:9;4114:7;4110:23;4106:32;4103:52;;;4151:1;4148;4141:12;4103:52;4174:26;4190:9;4174:26;:::i;4211:404::-;4295:6;4303;4356:2;4344:9;4335:7;4331:23;4327:32;4324:52;;;4372:1;4369;4362:12;4324:52;4411:9;4398:23;4430:31;4455:5;4430:31;:::i;:::-;4480:5;-1:-1:-1;4537:2:1;4522:18;;4509:32;4550:33;4509:32;4550:33;:::i;:::-;4602:7;4592:17;;;4211:404;;;;;:::o;5013:380::-;5092:1;5088:12;;;;5135;;;5156:61;;5210:4;5202:6;5198:17;5188:27;;5156:61;5263:2;5255:6;5252:14;5232:18;5229:38;5226:161;;5309:10;5304:3;5300:20;5297:1;5290:31;5344:4;5341:1;5334:15;5372:4;5369:1;5362:15;5226:161;;5013:380;;;:::o;5807:127::-;5868:10;5863:3;5859:20;5856:1;5849:31;5899:4;5896:1;5889:15;5923:4;5920:1;5913:15;5939:125;6004:9;;;6025:10;;;6022:36;;;6038:18;;:::i;6069:356::-;6271:2;6253:21;;;6290:18;;;6283:30;6349:34;6344:2;6329:18;;6322:62;6416:2;6401:18;;6069:356::o;6430:168::-;6503:9;;;6534;;6551:15;;;6545:22;;6531:37;6521:71;;6572:18;;:::i;6603:217::-;6643:1;6669;6659:132;;6713:10;6708:3;6704:20;6701:1;6694:31;6748:4;6745:1;6738:15;6776:4;6773:1;6766:15;6659:132;-1:-1:-1;6805:9:1;;6603:217::o;8857:401::-;9059:2;9041:21;;;9098:2;9078:18;;;9071:30;9137:34;9132:2;9117:18;;9110:62;-1:-1:-1;;;9203:2:1;9188:18;;9181:35;9248:3;9233:19;;8857:401::o;9263:399::-;9465:2;9447:21;;;9504:2;9484:18;;;9477:30;9543:34;9538:2;9523:18;;9516:62;-1:-1:-1;;;9609:2:1;9594:18;;9587:33;9652:3;9637:19;;9263:399::o;10837:128::-;10904:9;;;10925:11;;;10922:37;;;10939:18;;:::i;12567:127::-;12628:10;12623:3;12619:20;12616:1;12609:31;12659:4;12656:1;12649:15;12683:4;12680:1;12673:15;12699:251;12769:6;12822:2;12810:9;12801:7;12797:23;12793:32;12790:52;;;12838:1;12835;12828:12;12790:52;12870:9;12864:16;12889:31;12914:5;12889:31;:::i;12955:980::-;13217:4;13265:3;13254:9;13250:19;13296:6;13285:9;13278:25;13322:2;13360:6;13355:2;13344:9;13340:18;13333:34;13403:3;13398:2;13387:9;13383:18;13376:31;13427:6;13462;13456:13;13493:6;13485;13478:22;13531:3;13520:9;13516:19;13509:26;;13570:2;13562:6;13558:15;13544:29;;13591:1;13601:195;13615:6;13612:1;13609:13;13601:195;;;13680:13;;-1:-1:-1;;;;;13676:39:1;13664:52;;13771:15;;;;13736:12;;;;13712:1;13630:9;13601:195;;;-1:-1:-1;;;;;;;13852:32:1;;;;13847:2;13832:18;;13825:60;-1:-1:-1;;;13916:3:1;13901:19;13894:35;13813:3;12955:980;-1:-1:-1;;;12955:980:1:o;14552:306::-;14640:6;14648;14656;14709:2;14697:9;14688:7;14684:23;14680:32;14677:52;;;14725:1;14722;14715:12;14677:52;14754:9;14748:16;14738:26;;14804:2;14793:9;14789:18;14783:25;14773:35;;14848:2;14837:9;14833:18;14827:25;14817:35;;14552:306;;;;;:::o

Swarm Source

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