ETH Price: $3,252.11 (-2.31%)
 

Overview

Max Total Supply

100,000,000 SVBI

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,520,000 SVBI

Value
$0.00
0x184ABE182ffAbfdEc46BEefe48C125433697f5E8
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:
SVBI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

SVB INU (SVBI)

Telegram
https://t.me/SVBIPortal

Twitter
https://twitter.com/SVBInu

*/

// SPDX-License-Identifier: MIT                                                                               
pragma solidity =0.8.18;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {

    mapping(address => uint256) _balances;

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

    uint256 _totalSupply;
    string _name;
    string _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) {
        require(_allowances[sender][msg.sender] >= amount, "ERC20: transfer amount exceeds allowance");
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
        return true;
    }

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }
        emit Transfer(account, address(0), amount);
    }

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

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


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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

contract SVBI is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    address public deployer;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public swapEnabled = true;
    
    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    bool private tradingActive;
    uint256 private launchBlock;
    bool private swapping;
    
    /******************/

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    // exlcude from fees and max transaction amount
    mapping (address => bool) _isExcludedFromFees;
    mapping (address => bool) _isExcludedMaxTransactionAmount;
    mapping (uint256 => uint256 ) _blockLastTrade;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
    
    constructor() ERC20("SVB INU", "SVBI") {

        _totalSupply = 100_000_000 * 1e18;
        maxTransactionAmount = _totalSupply * 2 / 100; // 2% maxTransactionAmountTxn
        maxWallet = _totalSupply * 2 / 100; // 2% maxWallet
        swapTokensAtAmount = _totalSupply * 1 / 1000; // 0.1% swap wallet

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 20;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 40;

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;
        
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;
        
        deployer = address(_msgSender()); // set as deployer
        devWallet = address(0x90b50dB5b4ED648435C9C3B5D36E757d214ab912);

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

        // exclude from paying fees or having max transaction amount
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(devWallet, true);
        excludeFromFees(owner(), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _balances[deployer] = _totalSupply;
        emit Transfer(address(0), deployer, _totalSupply);
    }

    receive() external payable {}

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 1 / 100, "Swap amount cannot be higher than 0.5% total supply.");
  	    swapTokensAtAmount = newAmount;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 100)/1e18, "Cannot set maxTransactionAmount lower than 1%");
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 2 / 100)/1e18, "Cannot set maxWallet lower than 2%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner{
        swapEnabled = enabled;
    }

    function initialize() external onlyOwner {
        require(!tradingActive);
        launchBlock = 1;
    }

    function openTrading(bool _status, uint b) external onlyOwner {
        tradingActive = _status;
        if(launchBlock <= 1) {
            launchBlock+=block.number+b;
        }
    }

    function getLaunchedBlockNumber() public view returns (uint256) {
        return launchBlock;
    }
    
    function updateBuyFees(uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    event BoughtEarly(address indexed sniper);

    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");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != deployer &&
                to != deployer && 
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
           
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = swappable(contractTokenBalance);

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }
        
        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            if(0 < launchBlock && launchBlock < block.number){
                // on buy
                if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                    fees = amount * sellTotalFees / 100;
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                    tokensForDev += fees * sellDevFee / sellTotalFees;
                }
                // on sell
                else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount * buyTotalFees / 100;
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                    tokensForDev += fees * buyDevFee / buyTotalFees;
                }
            }
            else{
                fees = getFees(from, to, amount);
            }

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

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

    function swappable(uint256 contractTokenBalance) private view returns (bool) {
        return contractTokenBalance >= swapTokensAtAmount && 
            block.number > launchBlock && _blockLastTrade[block.number] < 3;
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        _blockLastTrade[block.number]++;
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function getFees(address from, address to, uint256 amount) private returns (uint256 fees) {
        if(automatedMarketMakerPairs[from]){
            fees = amount * 49 / 100;
            tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
            tokensForDev += fees * buyDevFee / buyTotalFees;
            emit BoughtEarly(to); //sniper
        }
        else{
            fees = amount * (launchBlock == 0 ? 30 : 70) / 100;   
            tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
            tokensForDev += fees * sellDevFee / sellTotalFees;
        }
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 22){
          contractBalance = swapTokensAtAmount * 22;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance - initialETHBalance;
        
        uint256 ethForDev = ethBalance * tokensForDev / totalTokensToSwap;
        
        uint256 ethForLiquidity = ethBalance - ethForDev;
        
        tokensForLiquidity = 0;
        tokensForDev = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
    }
}

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":"sniper","type":"address"}],"name":"BoughtEarly","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLaunchedBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805461ffff19166101011790553480156200002057600080fd5b506040518060400160405280600781526020016653564220494e5560c81b815250604051806040016040528060048152602001635356424960e01b81525081600390816200006f919062000678565b5060046200007e828262000678565b5050506000620000936200045760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506a52b7d2dcc80cd2e4000000600281815560649162000100916200075a565b6200010c91906200077a565b600855600280546064916200012291906200075a565b6200012e91906200077a565b600a556002546103e890620001459060016200075a565b6200015191906200077a565b6009556000600d8190556014600e8190558160286200017183836200079d565b600c55601082905560118190556200018a81836200079d565b600f5560068054336001600160a01b031991821617909155600780549091167390b50db5b4ed648435c9c3b5d36e757d214ab912179055737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620001e88160016200045b565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000227573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024d9190620007b3565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c19190620007b3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200030f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003359190620007b3565b6001600160a01b031660a081905262000350906001620004d5565b60a051620003609060016200045b565b6200036d30600162000529565b6200037c61dead600162000529565b60075462000395906001600160a01b0316600162000529565b620003b4620003ac6005546001600160a01b031690565b600162000529565b620003d3620003cb6005546001600160a01b031690565b60016200045b565b620003e03060016200045b565b620003ef61dead60016200045b565b600254600680546001600160a01b0390811660009081526020818152604080832086905593549351948552929091169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050620007e5565b3390565b6005546001600160a01b03163314620004aa5760405162461bcd60e51b8152602060048201819052602482015260008051602062002f1783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005745760405162461bcd60e51b8152602060048201819052602482015260008051602062002f178339815191526044820152606401620004a1565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005fe57607f821691505b6020821081036200061f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067357600081815260208120601f850160051c810160208610156200064e5750805b601f850160051c820191505b818110156200066f578281556001016200065a565b5050505b505050565b81516001600160401b03811115620006945762000694620005d3565b620006ac81620006a58454620005e9565b8462000625565b602080601f831160018114620006e45760008415620006cb5750858301515b600019600386901b1c1916600185901b1785556200066f565b600085815260208120601f198616915b828110156200071557888601518255948401946001909101908401620006f4565b5085821015620007345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000774576200077462000744565b92915050565b6000826200079857634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000774576200077462000744565b600060208284031215620007c657600080fd5b81516001600160a01b0381168114620007de57600080fd5b9392505050565b60805160a0516126e2620008356000396000818161046f0152610e2b0152600081816103460152818161200a015281816120c3015281816120ff0152818161219a01526121f701526126e26000f3fe60806040526004361061028c5760003560e01c80638129fc1c1161015a578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e146107bf578063e2f45605146107df578063f11a24d3146107f5578063f2fde38b1461080b578063f63743421461082b578063f8b45b051461084157600080fd5b8063c024666814610713578063c18bc19514610733578063c8c8ebe414610753578063d257b34f14610769578063d5f3948814610789578063d85ba063146107a957600080fd5b80639c3b4fdc116101135780639c3b4fdc146106615780639fccce3214610677578063a0d82dc51461068d578063a457c2d7146106a3578063a9059cbb146106c3578063b62496f5146106e357600080fd5b80638129fc1c146105b95780638da5cb5b146105ce5780638ea5220f146105ec578063924de9b71461060c57806395d89b411461062c5780639a7a23d61461064157600080fd5b8063313ce567116101fe5780636a486a8e116101b75780636a486a8e146105045780636ddd17131461051a57806370a0823114610539578063715018a61461056f578063751039fc146105845780637571336a1461059957600080fd5b8063313ce56714610421578063395093511461043d57806349bd5a5e1461045d5780634a62bb65146104915780634fbee193146104ab57806366ca9b83146104e457600080fd5b806318160ddd1161025057806318160ddd146103805780631a8145bb14610395578063203e727e146103ab57806323b872dd146103cb57806327c8f835146103eb5780632d4103d61461040157600080fd5b806302dbd8f81461029857806306fdde03146102ba578063095ea7b3146102e55780630dbd397c146103155780631694505e1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612275565b610857565b005b3480156102c657600080fd5b506102cf6108f7565b6040516102dc9190612297565b60405180910390f35b3480156102f157600080fd5b506103056103003660046122fd565b610989565b60405190151581526020016102dc565b34801561032157600080fd5b506015545b6040519081526020016102dc565b34801561034057600080fd5b506103687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102dc565b34801561038c57600080fd5b50600254610326565b3480156103a157600080fd5b5061032660125481565b3480156103b757600080fd5b506102b86103c6366004612329565b6109a0565b3480156103d757600080fd5b506103056103e6366004612342565b610a7a565b3480156103f757600080fd5b5061036861dead81565b34801561040d57600080fd5b506102b861041c366004612393565b610b4f565b34801561042d57600080fd5b50604051601281526020016102dc565b34801561044957600080fd5b506103056104583660046122fd565b610bb5565b34801561046957600080fd5b506103687f000000000000000000000000000000000000000000000000000000000000000081565b34801561049d57600080fd5b50600b546103059060ff1681565b3480156104b757600080fd5b506103056104c63660046123af565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104f057600080fd5b506102b86104ff366004612275565b610bd2565b34801561051057600080fd5b50610326600f5481565b34801561052657600080fd5b50600b5461030590610100900460ff1681565b34801561054557600080fd5b506103266105543660046123af565b6001600160a01b031660009081526020819052604090205490565b34801561057b57600080fd5b506102b8610c65565b34801561059057600080fd5b50610305610cd9565b3480156105a557600080fd5b506102b86105b43660046123cc565b610d16565b3480156105c557600080fd5b506102b8610d6b565b3480156105da57600080fd5b506005546001600160a01b0316610368565b3480156105f857600080fd5b50600754610368906001600160a01b031681565b34801561061857600080fd5b506102b8610627366004612401565b610dac565b34801561063857600080fd5b506102cf610df0565b34801561064d57600080fd5b506102b861065c3660046123cc565b610dff565b34801561066d57600080fd5b50610326600e5481565b34801561068357600080fd5b5061032660135481565b34801561069957600080fd5b5061032660115481565b3480156106af57600080fd5b506103056106be3660046122fd565b610eda565b3480156106cf57600080fd5b506103056106de3660046122fd565b610f60565b3480156106ef57600080fd5b506103056106fe3660046123af565b60176020526000908152604090205460ff1681565b34801561071f57600080fd5b506102b861072e3660046123cc565b610f6d565b34801561073f57600080fd5b506102b861074e366004612329565b610ff6565b34801561075f57600080fd5b5061032660085481565b34801561077557600080fd5b50610305610784366004612329565b6110c5565b34801561079557600080fd5b50600654610368906001600160a01b031681565b3480156107b557600080fd5b50610326600c5481565b3480156107cb57600080fd5b506103266107da36600461241c565b61121b565b3480156107eb57600080fd5b5061032660095481565b34801561080157600080fd5b50610326600d5481565b34801561081757600080fd5b506102b86108263660046123af565b611246565b34801561083757600080fd5b5061032660105481565b34801561084d57600080fd5b50610326600a5481565b6005546001600160a01b0316331461088a5760405162461bcd60e51b815260040161088190612455565b60405180910390fd5b6010829055601181905561089e81836124a0565b600f819055601910156108f35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610881565b5050565b606060038054610906906124b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906124b3565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b6000610996338484611331565b5060015b92915050565b6005546001600160a01b031633146109ca5760405162461bcd60e51b815260040161088190612455565b670de0b6b3a764000060646109de60025490565b6109e99060016124ed565b6109f39190612504565b6109fd9190612504565b811015610a625760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610881565b610a7481670de0b6b3a76400006124ed565b60085550565b6001600160a01b0383166000908152600160209081526040808320338452909152812054821115610afe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610881565b610b09848484611455565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610b44918691610b3f908690612526565b611331565b5060015b9392505050565b6005546001600160a01b03163314610b795760405162461bcd60e51b815260040161088190612455565b6014805460ff19168315151790556015546001106108f357610b9b81436124a0565b60156000828254610bac91906124a0565b90915550505050565b600033610b44818585610bc8838361121b565b610b3f91906124a0565b6005546001600160a01b03163314610bfc5760405162461bcd60e51b815260040161088190612455565b600d829055600e819055610c1081836124a0565b600c819055601410156108f35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610881565b6005546001600160a01b03163314610c8f5760405162461bcd60e51b815260040161088190612455565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610d065760405162461bcd60e51b815260040161088190612455565b50600b805460ff19169055600190565b6005546001600160a01b03163314610d405760405162461bcd60e51b815260040161088190612455565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d955760405162461bcd60e51b815260040161088190612455565b60145460ff1615610da557600080fd5b6001601555565b6005546001600160a01b03163314610dd65760405162461bcd60e51b815260040161088190612455565b600b80549115156101000261ff0019909216919091179055565b606060048054610906906124b3565b6005546001600160a01b03163314610e295760405162461bcd60e51b815260040161088190612455565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ed05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610881565b6108f38282611aea565b60003381610ee8828661121b565b905083811015610f485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610881565b610f558286868403611331565b506001949350505050565b6000610996338484611455565b6005546001600160a01b03163314610f975760405162461bcd60e51b815260040161088190612455565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110205760405162461bcd60e51b815260040161088190612455565b670de0b6b3a7640000606461103460025490565b61103f9060026124ed565b6110499190612504565b6110539190612504565b8110156110ad5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610881565b6110bf81670de0b6b3a76400006124ed565b600a5550565b6005546000906001600160a01b031633146110f25760405162461bcd60e51b815260040161088190612455565b620186a06110ff60025490565b61110a9060016124ed565b6111149190612504565b8210156111815760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610881565b606461118c60025490565b6111979060016124ed565b6111a19190612504565b82111561120d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610881565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146112705760405162461bcd60e51b815260040161088190612455565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166113935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610881565b6001600160a01b0382166113f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610881565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661147b5760405162461bcd60e51b815260040161088190612539565b6001600160a01b0382166114a15760405162461bcd60e51b81526004016108819061257e565b806000036114ba576114b583836000611b3e565b505050565b600b5460ff1615611824576006546001600160a01b038481169116148015906114f157506006546001600160a01b03838116911614155b801561150557506001600160a01b03821615155b801561151c57506001600160a01b03821661dead14155b801561152b575060165460ff16155b156118245760145460ff166115be576001600160a01b03831660009081526018602052604090205460ff168061157957506001600160a01b03821660009081526018602052604090205460ff165b6115be5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610881565b6001600160a01b03831660009081526017602052604090205460ff1680156115ff57506001600160a01b03821660009081526019602052604090205460ff16155b156116e3576008548111156116745760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610881565b600a546001600160a01b03831660009081526020819052604090205461169a90836124a0565b11156116de5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610881565b611824565b6001600160a01b03821660009081526017602052604090205460ff16801561172457506001600160a01b03831660009081526019602052604090205460ff16155b1561179a576008548111156116de5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610881565b6001600160a01b03821660009081526019602052604090205460ff1661182457600a546001600160a01b0383166000908152602081905260409020546117e090836124a0565b11156118245760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610881565b306000908152602081905260408120549061183e82611c69565b90508080156118545750600b54610100900460ff165b8015611863575060165460ff16155b801561188857506001600160a01b03851660009081526017602052604090205460ff16155b80156118ad57506001600160a01b03851660009081526018602052604090205460ff16155b80156118d257506001600160a01b03841660009081526018602052604090205460ff16155b156118f7576016805460ff191660011790556118ec611c9e565b6016805460ff191690555b6016546001600160a01b03861660009081526018602052604090205460ff9182161591168061193e57506001600160a01b03851660009081526018602052604090205460ff165b15611947575060005b60008115611ad6576015546000108015611962575043601554105b15611aaa576001600160a01b03861660009081526017602052604090205460ff16801561199157506000600f54115b15611a19576064600f54866119a691906124ed565b6119b09190612504565b9050600f54601054826119c391906124ed565b6119cd9190612504565b601260008282546119de91906124a0565b9091555050600f546011546119f390836124ed565b6119fd9190612504565b60136000828254611a0e91906124a0565b90915550611ab89050565b6001600160a01b03871660009081526017602052604090205460ff168015611a4357506000600c54115b15611aa5576064600c5486611a5891906124ed565b611a629190612504565b9050600c54600d5482611a7591906124ed565b611a7f9190612504565b60126000828254611a9091906124a0565b9091555050600c54600e546119f390836124ed565b611ab8565b611ab5878787611e48565b90505b8015611ac957611ac9873083611b3e565b611ad38186612526565b94505b611ae1878787611b3e565b50505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b645760405162461bcd60e51b815260040161088190612539565b6001600160a01b038216611b8a5760405162461bcd60e51b81526004016108819061257e565b6001600160a01b03831660009081526020819052604090205481811015611c025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610881565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b60006009548210158015611c7e575060155443115b801561099a5750436000908152601a602052604090205460031192915050565b3060009081526020819052604081205490506000601354601254611cc291906124a0565b90506000821580611cd1575081155b15611cdb57505050565b600954611ce99060166124ed565b831115611d0157600954611cfe9060166124ed565b92505b600060028360125486611d1491906124ed565b611d1e9190612504565b611d289190612504565b90506000611d368286612526565b905047611d4282611fb3565b6000611d4e8247612526565b905060008660135483611d6191906124ed565b611d6b9190612504565b90506000611d798284612526565b6000601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611dd1576040519150601f19603f3d011682016040523d82523d6000602084013e611dd6565b606091505b50909750508515801590611dea5750600081115b15611e3d57611df98682612194565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1615611f1c576064611e768360316124ed565b611e809190612504565b9050600c54600d5482611e9391906124ed565b611e9d9190612504565b60126000828254611eae91906124a0565b9091555050600c54600e54611ec390836124ed565b611ecd9190612504565b60136000828254611ede91906124a0565b90915550506040516001600160a01b038416907fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e290600090a2610b48565b6064601554600014611f2f576046611f32565b601e5b611f3f9060ff16846124ed565b611f499190612504565b9050600f5460105482611f5c91906124ed565b611f669190612504565b60126000828254611f7791906124a0565b9091555050600f54601154611f8c90836124ed565b611f969190612504565b60136000828254611fa791906124a0565b90915550509392505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fe857611fe86125c1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612066573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208a91906125d7565b8160018151811061209d5761209d6125c1565b60200260200101906001600160a01b031690816001600160a01b0316815250506120e8307f000000000000000000000000000000000000000000000000000000000000000084611331565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061213d9085906000908690309042906004016125f4565b600060405180830381600087803b15801561215757600080fd5b505af115801561216b573d6000803e3d6000fd5b5050436000908152601a6020526040812080549350915061218b83612665565b91905055505050565b6121bf307f000000000000000000000000000000000000000000000000000000000000000084611331565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612249573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061226e919061267e565b5050505050565b6000806040838503121561228857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156122c4578581018301518582016040015282016122a8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146122fa57600080fd5b50565b6000806040838503121561231057600080fd5b823561231b816122e5565b946020939093013593505050565b60006020828403121561233b57600080fd5b5035919050565b60008060006060848603121561235757600080fd5b8335612362816122e5565b92506020840135612372816122e5565b929592945050506040919091013590565b8035801515811461121657600080fd5b600080604083850312156123a657600080fd5b61231b83612383565b6000602082840312156123c157600080fd5b8135610b48816122e5565b600080604083850312156123df57600080fd5b82356123ea816122e5565b91506123f860208401612383565b90509250929050565b60006020828403121561241357600080fd5b610b4882612383565b6000806040838503121561242f57600080fd5b823561243a816122e5565b9150602083013561244a816122e5565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099a5761099a61248a565b600181811c908216806124c757607f821691505b6020821081036124e757634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761099a5761099a61248a565b60008261252157634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099a5761099a61248a565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125e957600080fd5b8151610b48816122e5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126445784516001600160a01b03168352938301939183019160010161261f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016126775761267761248a565b5060010190565b60008060006060848603121561269357600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209fa0e416c3147c8d500558035b3181642c05d970a71f26533887beffc9f0ba3d64736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80638129fc1c1161015a578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e146107bf578063e2f45605146107df578063f11a24d3146107f5578063f2fde38b1461080b578063f63743421461082b578063f8b45b051461084157600080fd5b8063c024666814610713578063c18bc19514610733578063c8c8ebe414610753578063d257b34f14610769578063d5f3948814610789578063d85ba063146107a957600080fd5b80639c3b4fdc116101135780639c3b4fdc146106615780639fccce3214610677578063a0d82dc51461068d578063a457c2d7146106a3578063a9059cbb146106c3578063b62496f5146106e357600080fd5b80638129fc1c146105b95780638da5cb5b146105ce5780638ea5220f146105ec578063924de9b71461060c57806395d89b411461062c5780639a7a23d61461064157600080fd5b8063313ce567116101fe5780636a486a8e116101b75780636a486a8e146105045780636ddd17131461051a57806370a0823114610539578063715018a61461056f578063751039fc146105845780637571336a1461059957600080fd5b8063313ce56714610421578063395093511461043d57806349bd5a5e1461045d5780634a62bb65146104915780634fbee193146104ab57806366ca9b83146104e457600080fd5b806318160ddd1161025057806318160ddd146103805780631a8145bb14610395578063203e727e146103ab57806323b872dd146103cb57806327c8f835146103eb5780632d4103d61461040157600080fd5b806302dbd8f81461029857806306fdde03146102ba578063095ea7b3146102e55780630dbd397c146103155780631694505e1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612275565b610857565b005b3480156102c657600080fd5b506102cf6108f7565b6040516102dc9190612297565b60405180910390f35b3480156102f157600080fd5b506103056103003660046122fd565b610989565b60405190151581526020016102dc565b34801561032157600080fd5b506015545b6040519081526020016102dc565b34801561034057600080fd5b506103687f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102dc565b34801561038c57600080fd5b50600254610326565b3480156103a157600080fd5b5061032660125481565b3480156103b757600080fd5b506102b86103c6366004612329565b6109a0565b3480156103d757600080fd5b506103056103e6366004612342565b610a7a565b3480156103f757600080fd5b5061036861dead81565b34801561040d57600080fd5b506102b861041c366004612393565b610b4f565b34801561042d57600080fd5b50604051601281526020016102dc565b34801561044957600080fd5b506103056104583660046122fd565b610bb5565b34801561046957600080fd5b506103687f0000000000000000000000003af74243fe8c1c68befaf56d12cef30b68c28c3681565b34801561049d57600080fd5b50600b546103059060ff1681565b3480156104b757600080fd5b506103056104c63660046123af565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104f057600080fd5b506102b86104ff366004612275565b610bd2565b34801561051057600080fd5b50610326600f5481565b34801561052657600080fd5b50600b5461030590610100900460ff1681565b34801561054557600080fd5b506103266105543660046123af565b6001600160a01b031660009081526020819052604090205490565b34801561057b57600080fd5b506102b8610c65565b34801561059057600080fd5b50610305610cd9565b3480156105a557600080fd5b506102b86105b43660046123cc565b610d16565b3480156105c557600080fd5b506102b8610d6b565b3480156105da57600080fd5b506005546001600160a01b0316610368565b3480156105f857600080fd5b50600754610368906001600160a01b031681565b34801561061857600080fd5b506102b8610627366004612401565b610dac565b34801561063857600080fd5b506102cf610df0565b34801561064d57600080fd5b506102b861065c3660046123cc565b610dff565b34801561066d57600080fd5b50610326600e5481565b34801561068357600080fd5b5061032660135481565b34801561069957600080fd5b5061032660115481565b3480156106af57600080fd5b506103056106be3660046122fd565b610eda565b3480156106cf57600080fd5b506103056106de3660046122fd565b610f60565b3480156106ef57600080fd5b506103056106fe3660046123af565b60176020526000908152604090205460ff1681565b34801561071f57600080fd5b506102b861072e3660046123cc565b610f6d565b34801561073f57600080fd5b506102b861074e366004612329565b610ff6565b34801561075f57600080fd5b5061032660085481565b34801561077557600080fd5b50610305610784366004612329565b6110c5565b34801561079557600080fd5b50600654610368906001600160a01b031681565b3480156107b557600080fd5b50610326600c5481565b3480156107cb57600080fd5b506103266107da36600461241c565b61121b565b3480156107eb57600080fd5b5061032660095481565b34801561080157600080fd5b50610326600d5481565b34801561081757600080fd5b506102b86108263660046123af565b611246565b34801561083757600080fd5b5061032660105481565b34801561084d57600080fd5b50610326600a5481565b6005546001600160a01b0316331461088a5760405162461bcd60e51b815260040161088190612455565b60405180910390fd5b6010829055601181905561089e81836124a0565b600f819055601910156108f35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610881565b5050565b606060038054610906906124b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906124b3565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b6000610996338484611331565b5060015b92915050565b6005546001600160a01b031633146109ca5760405162461bcd60e51b815260040161088190612455565b670de0b6b3a764000060646109de60025490565b6109e99060016124ed565b6109f39190612504565b6109fd9190612504565b811015610a625760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610881565b610a7481670de0b6b3a76400006124ed565b60085550565b6001600160a01b0383166000908152600160209081526040808320338452909152812054821115610afe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610881565b610b09848484611455565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610b44918691610b3f908690612526565b611331565b5060015b9392505050565b6005546001600160a01b03163314610b795760405162461bcd60e51b815260040161088190612455565b6014805460ff19168315151790556015546001106108f357610b9b81436124a0565b60156000828254610bac91906124a0565b90915550505050565b600033610b44818585610bc8838361121b565b610b3f91906124a0565b6005546001600160a01b03163314610bfc5760405162461bcd60e51b815260040161088190612455565b600d829055600e819055610c1081836124a0565b600c819055601410156108f35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610881565b6005546001600160a01b03163314610c8f5760405162461bcd60e51b815260040161088190612455565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610d065760405162461bcd60e51b815260040161088190612455565b50600b805460ff19169055600190565b6005546001600160a01b03163314610d405760405162461bcd60e51b815260040161088190612455565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d955760405162461bcd60e51b815260040161088190612455565b60145460ff1615610da557600080fd5b6001601555565b6005546001600160a01b03163314610dd65760405162461bcd60e51b815260040161088190612455565b600b80549115156101000261ff0019909216919091179055565b606060048054610906906124b3565b6005546001600160a01b03163314610e295760405162461bcd60e51b815260040161088190612455565b7f0000000000000000000000003af74243fe8c1c68befaf56d12cef30b68c28c366001600160a01b0316826001600160a01b031603610ed05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610881565b6108f38282611aea565b60003381610ee8828661121b565b905083811015610f485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610881565b610f558286868403611331565b506001949350505050565b6000610996338484611455565b6005546001600160a01b03163314610f975760405162461bcd60e51b815260040161088190612455565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110205760405162461bcd60e51b815260040161088190612455565b670de0b6b3a7640000606461103460025490565b61103f9060026124ed565b6110499190612504565b6110539190612504565b8110156110ad5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610881565b6110bf81670de0b6b3a76400006124ed565b600a5550565b6005546000906001600160a01b031633146110f25760405162461bcd60e51b815260040161088190612455565b620186a06110ff60025490565b61110a9060016124ed565b6111149190612504565b8210156111815760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610881565b606461118c60025490565b6111979060016124ed565b6111a19190612504565b82111561120d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610881565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146112705760405162461bcd60e51b815260040161088190612455565b6001600160a01b0381166112d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166113935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610881565b6001600160a01b0382166113f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610881565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661147b5760405162461bcd60e51b815260040161088190612539565b6001600160a01b0382166114a15760405162461bcd60e51b81526004016108819061257e565b806000036114ba576114b583836000611b3e565b505050565b600b5460ff1615611824576006546001600160a01b038481169116148015906114f157506006546001600160a01b03838116911614155b801561150557506001600160a01b03821615155b801561151c57506001600160a01b03821661dead14155b801561152b575060165460ff16155b156118245760145460ff166115be576001600160a01b03831660009081526018602052604090205460ff168061157957506001600160a01b03821660009081526018602052604090205460ff165b6115be5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610881565b6001600160a01b03831660009081526017602052604090205460ff1680156115ff57506001600160a01b03821660009081526019602052604090205460ff16155b156116e3576008548111156116745760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610881565b600a546001600160a01b03831660009081526020819052604090205461169a90836124a0565b11156116de5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610881565b611824565b6001600160a01b03821660009081526017602052604090205460ff16801561172457506001600160a01b03831660009081526019602052604090205460ff16155b1561179a576008548111156116de5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610881565b6001600160a01b03821660009081526019602052604090205460ff1661182457600a546001600160a01b0383166000908152602081905260409020546117e090836124a0565b11156118245760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610881565b306000908152602081905260408120549061183e82611c69565b90508080156118545750600b54610100900460ff165b8015611863575060165460ff16155b801561188857506001600160a01b03851660009081526017602052604090205460ff16155b80156118ad57506001600160a01b03851660009081526018602052604090205460ff16155b80156118d257506001600160a01b03841660009081526018602052604090205460ff16155b156118f7576016805460ff191660011790556118ec611c9e565b6016805460ff191690555b6016546001600160a01b03861660009081526018602052604090205460ff9182161591168061193e57506001600160a01b03851660009081526018602052604090205460ff165b15611947575060005b60008115611ad6576015546000108015611962575043601554105b15611aaa576001600160a01b03861660009081526017602052604090205460ff16801561199157506000600f54115b15611a19576064600f54866119a691906124ed565b6119b09190612504565b9050600f54601054826119c391906124ed565b6119cd9190612504565b601260008282546119de91906124a0565b9091555050600f546011546119f390836124ed565b6119fd9190612504565b60136000828254611a0e91906124a0565b90915550611ab89050565b6001600160a01b03871660009081526017602052604090205460ff168015611a4357506000600c54115b15611aa5576064600c5486611a5891906124ed565b611a629190612504565b9050600c54600d5482611a7591906124ed565b611a7f9190612504565b60126000828254611a9091906124a0565b9091555050600c54600e546119f390836124ed565b611ab8565b611ab5878787611e48565b90505b8015611ac957611ac9873083611b3e565b611ad38186612526565b94505b611ae1878787611b3e565b50505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b645760405162461bcd60e51b815260040161088190612539565b6001600160a01b038216611b8a5760405162461bcd60e51b81526004016108819061257e565b6001600160a01b03831660009081526020819052604090205481811015611c025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610881565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b60006009548210158015611c7e575060155443115b801561099a5750436000908152601a602052604090205460031192915050565b3060009081526020819052604081205490506000601354601254611cc291906124a0565b90506000821580611cd1575081155b15611cdb57505050565b600954611ce99060166124ed565b831115611d0157600954611cfe9060166124ed565b92505b600060028360125486611d1491906124ed565b611d1e9190612504565b611d289190612504565b90506000611d368286612526565b905047611d4282611fb3565b6000611d4e8247612526565b905060008660135483611d6191906124ed565b611d6b9190612504565b90506000611d798284612526565b6000601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611dd1576040519150601f19603f3d011682016040523d82523d6000602084013e611dd6565b606091505b50909750508515801590611dea5750600081115b15611e3d57611df98682612194565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1615611f1c576064611e768360316124ed565b611e809190612504565b9050600c54600d5482611e9391906124ed565b611e9d9190612504565b60126000828254611eae91906124a0565b9091555050600c54600e54611ec390836124ed565b611ecd9190612504565b60136000828254611ede91906124a0565b90915550506040516001600160a01b038416907fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e290600090a2610b48565b6064601554600014611f2f576046611f32565b601e5b611f3f9060ff16846124ed565b611f499190612504565b9050600f5460105482611f5c91906124ed565b611f669190612504565b60126000828254611f7791906124a0565b9091555050600f54601154611f8c90836124ed565b611f969190612504565b60136000828254611fa791906124a0565b90915550509392505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fe857611fe86125c1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612066573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208a91906125d7565b8160018151811061209d5761209d6125c1565b60200260200101906001600160a01b031690816001600160a01b0316815250506120e8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611331565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061213d9085906000908690309042906004016125f4565b600060405180830381600087803b15801561215757600080fd5b505af115801561216b573d6000803e3d6000fd5b5050436000908152601a6020526040812080549350915061218b83612665565b91905055505050565b6121bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611331565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612249573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061226e919061267e565b5050505050565b6000806040838503121561228857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156122c4578581018301518582016040015282016122a8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146122fa57600080fd5b50565b6000806040838503121561231057600080fd5b823561231b816122e5565b946020939093013593505050565b60006020828403121561233b57600080fd5b5035919050565b60008060006060848603121561235757600080fd5b8335612362816122e5565b92506020840135612372816122e5565b929592945050506040919091013590565b8035801515811461121657600080fd5b600080604083850312156123a657600080fd5b61231b83612383565b6000602082840312156123c157600080fd5b8135610b48816122e5565b600080604083850312156123df57600080fd5b82356123ea816122e5565b91506123f860208401612383565b90509250929050565b60006020828403121561241357600080fd5b610b4882612383565b6000806040838503121561242f57600080fd5b823561243a816122e5565b9150602083013561244a816122e5565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099a5761099a61248a565b600181811c908216806124c757607f821691505b6020821081036124e757634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761099a5761099a61248a565b60008261252157634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561099a5761099a61248a565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125e957600080fd5b8151610b48816122e5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126445784516001600160a01b03168352938301939183019160010161261f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016126775761267761248a565b5060010190565b60008060006060848603121561269357600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209fa0e416c3147c8d500558035b3181642c05d970a71f26533887beffc9f0ba3d64736f6c63430008120033

Deployed Bytecode Sourcemap

14690:13846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20460:293;;;;;;;;;;-1:-1:-1;20460:293:0;;;;;:::i;:::-;;:::i;:::-;;5287:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7454:169;;;;;;;;;;-1:-1:-1;7454:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;7454:169:0;1276:187:1;20049:101:0;;;;;;;;;;-1:-1:-1;20131:11:0;;20049:101;;;1614:25:1;;;1602:2;1587:18;20049:101:0;1468:177:1;14731:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1839:32:1;;;1821:51;;1809:2;1794:18;14731:51:0;1650:228:1;6407:108:0;;;;;;;;;;-1:-1:-1;6495:12:0;;6407:108;;15380:33;;;;;;;;;;;;;;;;18921:231;;;;;;;;;;-1:-1:-1;18921:231:0;;;;;:::i;:::-;;:::i;8105:410::-;;;;;;;;;;-1:-1:-1;8105:410:0;;;;;:::i;:::-;;:::i;14834:53::-;;;;;;;;;;;;14880:6;14834:53;;19852:189;;;;;;;;;;-1:-1:-1;19852:189:0;;;;;:::i;:::-;;:::i;6249:93::-;;;;;;;;;;-1:-1:-1;6249:93:0;;6332:2;3297:36:1;;3285:2;3270:18;6249:93:0;3155:184:1;8924:238:0;;;;;;;;;;-1:-1:-1;8924:238:0;;;;;:::i;:::-;;:::i;14789:38::-;;;;;;;;;;;;;;;15078:33;;;;;;;;;;-1:-1:-1;15078:33:0;;;;;;;;21400:125;;;;;;;;;;-1:-1:-1;21400:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;21489:28:0;21465:4;21489:28;;;:19;:28;;;;;;;;;21400:125;20162:286;;;;;;;;;;-1:-1:-1;20162:286:0;;;;;:::i;:::-;;:::i;15269:28::-;;;;;;;;;;;;;;;;15118:30;;;;;;;;;;-1:-1:-1;15118:30:0;;;;;;;;;;;6578:127;;;;;;;;;;-1:-1:-1;6578:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6679:18:0;6652:7;6679:18;;;;;;;;;;;;6578:127;14136:148;;;;;;;;;;;;;:::i;18334:120::-;;;;;;;;;;;;;:::i;19384:144::-;;;;;;;;;;-1:-1:-1;19384:144:0;;;;;:::i;:::-;;:::i;19735:109::-;;;;;;;;;;;;;:::i;13494:79::-;;;;;;;;;;-1:-1:-1;13559:6:0;;-1:-1:-1;;;;;13559:6:0;13494:79;;14926:24;;;;;;;;;;-1:-1:-1;14926:24:0;;;;-1:-1:-1;;;;;14926:24:0;;;19628:99;;;;;;;;;;-1:-1:-1;19628:99:0;;;;;:::i;:::-;;:::i;5506:104::-;;;;;;;;;;;;;:::i;20951:244::-;;;;;;;;;;-1:-1:-1;20951:244:0;;;;;:::i;:::-;;:::i;15232:24::-;;;;;;;;;;;;;;;;15420:27;;;;;;;;;;;;;;;;15342:25;;;;;;;;;;;;;;;;9665:434;;;;;;;;;;-1:-1:-1;9665:434:0;;;;;:::i;:::-;;:::i;6918:175::-;;;;;;;;;;-1:-1:-1;6918:175:0;;;;;:::i;:::-;;:::i;15734:58::-;;;;;;;;;;-1:-1:-1;15734:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20761:182;;;;;;;;;;-1:-1:-1;20761:182:0;;;;;:::i;:::-;;:::i;19160:212::-;;;;;;;;;;-1:-1:-1;19160:212:0;;;;;:::i;:::-;;:::i;14963:35::-;;;;;;;;;;;;;;;;18529:380;;;;;;;;;;-1:-1:-1;18529:380:0;;;;;:::i;:::-;;:::i;14896:23::-;;;;;;;;;;-1:-1:-1;14896:23:0;;;;-1:-1:-1;;;;;14896:23:0;;;15161:27;;;;;;;;;;;;;;;;7156:151;;;;;;;;;;-1:-1:-1;7156:151:0;;;;;:::i;:::-;;:::i;15005:33::-;;;;;;;;;;;;;;;;15195:30;;;;;;;;;;;;;;;;14439:244;;;;;;;;;;-1:-1:-1;14439:244:0;;;;;:::i;:::-;;:::i;15304:31::-;;;;;;;;;;;;;;;;15045:24;;;;;;;;;;;;;;;;20460:293;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;;;;;;;;;20554:16:::1;:32:::0;;;20597:10:::1;:20:::0;;;20644:29:::1;20610:7:::0;20573:13;20644:29:::1;:::i;:::-;20628:13;:45:::0;;;20709:2:::1;-1:-1:-1::0;20692:19:0::1;20684:61;;;::::0;-1:-1:-1;;;20684:61:0;;5319:2:1;20684:61:0::1;::::0;::::1;5301:21:1::0;5358:2;5338:18;;;5331:30;5397:31;5377:18;;;5370:59;5446:18;;20684:61:0::1;5117:353:1::0;20684:61:0::1;20460:293:::0;;:::o;5287:100::-;5341:13;5374:5;5367:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5287:100;:::o;7454:169::-;7537:4;7554:39;359:10;7577:7;7586:6;7554:8;:39::i;:::-;-1:-1:-1;7611:4:0;7454:169;;;;;:::o;18921:231::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;19039:4:::1;19034:3;19014:13;6495:12:::0;;;6407:108;19014:13:::1;:17;::::0;19030:1:::1;19014:17;:::i;:::-;:23;;;;:::i;:::-;19013:30;;;;:::i;:::-;19003:6;:40;;18995:98;;;::::0;-1:-1:-1;;;18995:98:0;;6457:2:1;18995:98:0::1;::::0;::::1;6439:21:1::0;6496:2;6476:18;;;6469:30;6535:34;6515:18;;;6508:62;-1:-1:-1;;;6586:18:1;;;6579:43;6639:19;;18995:98:0::1;6255:409:1::0;18995:98:0::1;19127:17;:6:::0;19137::::1;19127:17;:::i;:::-;19104:20;:40:::0;-1:-1:-1;18921:231:0:o;8105:410::-;-1:-1:-1;;;;;8271:19:0;;8246:4;8271:19;;;:11;:19;;;;;;;;8291:10;8271:31;;;;;;;;:41;-1:-1:-1;8271:41:0;8263:94;;;;-1:-1:-1;;;8263:94:0;;6871:2:1;8263:94:0;;;6853:21:1;6910:2;6890:18;;;6883:30;6949:34;6929:18;;;6922:62;-1:-1:-1;;;7000:18:1;;;6993:38;7048:19;;8263:94:0;6669:404:1;8263:94:0;8368:36;8378:6;8386:9;8397:6;8368:9;:36::i;:::-;-1:-1:-1;;;;;8444:19:0;;;;;;:11;:19;;;;;;;;8432:10;8444:31;;;;;;;;;8415:70;;8424:6;;8444:40;;8478:6;;8444:40;:::i;:::-;8415:8;:70::i;:::-;-1:-1:-1;8503:4:0;8105:410;;;;;;:::o;19852:189::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;19925:13:::1;:23:::0;;-1:-1:-1;;19925:23:0::1;::::0;::::1;;;::::0;;19962:11:::1;::::0;-1:-1:-1;;19959:75:0::1;;20008:14;20021:1:::0;20008:12:::1;:14;:::i;:::-;19995:11;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;19852:189:0;;:::o;8924:238::-;9012:4;359:10;9068:64;359:10;9084:7;9121:10;9093:25;359:10;9084:7;9093:9;:25::i;:::-;:38;;;;:::i;20162:286::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;20255:15:::1;:31:::0;;;20297:9:::1;:19:::0;;;20342:27:::1;20309:7:::0;20273:13;20342:27:::1;:::i;:::-;20327:12;:42:::0;;;20404:2:::1;-1:-1:-1::0;20388:18:0::1;20380:60;;;::::0;-1:-1:-1;;;20380:60:0;;7413:2:1;20380:60:0::1;::::0;::::1;7395:21:1::0;7452:2;7432:18;;;7425:30;7491:31;7471:18;;;7464:59;7540:18;;20380:60:0::1;7211:353:1::0;14136:148:0;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;14227:6:::1;::::0;14206:40:::1;::::0;14243:1:::1;::::0;-1:-1:-1;;;;;14227:6:0::1;::::0;14206:40:::1;::::0;14243:1;;14206:40:::1;14257:6;:19:::0;;-1:-1:-1;;;;;;14257:19:0::1;::::0;;14136:148::o;18334:120::-;13706:6;;18386:4;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;-1:-1:-1;18402:14:0::1;:22:::0;;-1:-1:-1;;18402:22:0::1;::::0;;;18334:120;:::o;19384:144::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19474:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;19474:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19384:144::o;19735:109::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;19796:13:::1;::::0;::::1;;19795:14;19787:23;;;::::0;::::1;;19835:1;19821:11;:15:::0;19735:109::o;19628:99::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;19698:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;19698:21:0;;::::1;::::0;;;::::1;::::0;;19628:99::o;5506:104::-;5562:13;5595:7;5588:14;;;;;:::i;20951:244::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;21058:13:::1;-1:-1:-1::0;;;;;21050:21:0::1;:4;-1:-1:-1::0;;;;;21050:21:0::1;::::0;21042:91:::1;;;::::0;-1:-1:-1;;;21042:91:0;;7771:2:1;21042:91:0::1;::::0;::::1;7753:21:1::0;7810:2;7790:18;;;7783:30;7849:34;7829:18;;;7822:62;7920:27;7900:18;;;7893:55;7965:19;;21042:91:0::1;7569:421:1::0;21042:91:0::1;21146:41;21175:4;21181:5;21146:28;:41::i;9665:434::-:0;9758:4;359:10;9758:4;9841:25;359:10;9858:7;9841:9;:25::i;:::-;9814:52;;9905:15;9885:16;:35;;9877:85;;;;-1:-1:-1;;;9877:85:0;;8197:2:1;9877:85:0;;;8179:21:1;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;-1:-1:-1;;;8326:18:1;;;8319:35;8371:19;;9877:85:0;7995:401:1;9877:85:0;9998:60;10007:5;10014:7;10042:15;10023:16;:34;9998:8;:60::i;:::-;-1:-1:-1;10087:4:0;;9665:434;-1:-1:-1;;;;9665:434:0:o;6918:175::-;7004:4;7021:42;359:10;7045:9;7056:6;7021:9;:42::i;20761:182::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20846:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;20846:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;20901:34;;1416:41:1;;;20901:34:0::1;::::0;1389:18:1;20901:34:0::1;;;;;;;20761:182:::0;;:::o;19160:212::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;19281:4:::1;19276:3;19256:13;6495:12:::0;;;6407:108;19256:13:::1;:17;::::0;19272:1:::1;19256:17;:::i;:::-;:23;;;;:::i;:::-;19255:30;;;;:::i;:::-;19245:6;:40;;19237:87;;;::::0;-1:-1:-1;;;19237:87:0;;8603:2:1;19237:87:0::1;::::0;::::1;8585:21:1::0;8642:2;8622:18;;;8615:30;8681:34;8661:18;;;8654:62;-1:-1:-1;;;8732:18:1;;;8725:32;8774:19;;19237:87:0::1;8401:398:1::0;19237:87:0::1;19347:17;:6:::0;19357::::1;19347:17;:::i;:::-;19335:9;:29:::0;-1:-1:-1;19160:212:0:o;18529:380::-;13706:6;;18610:4;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;18666:6:::1;18646:13;6495:12:::0;;;6407:108;18646:13:::1;:17;::::0;18662:1:::1;18646:17;:::i;:::-;:26;;;;:::i;:::-;18633:9;:39;;18625:105;;;::::0;-1:-1:-1;;;18625:105:0;;9006:2:1;18625:105:0::1;::::0;::::1;8988:21:1::0;9045:2;9025:18;;;9018:30;9084:34;9064:18;;;9057:62;-1:-1:-1;;;9135:18:1;;;9128:51;9196:19;;18625:105:0::1;8804:417:1::0;18625:105:0::1;18781:3;18761:13;6495:12:::0;;;6407:108;18761:13:::1;:17;::::0;18777:1:::1;18761:17;:::i;:::-;:23;;;;:::i;:::-;18748:9;:36;;18740:101;;;::::0;-1:-1:-1;;;18740:101:0;;9428:2:1;18740:101:0::1;::::0;::::1;9410:21:1::0;9467:2;9447:18;;;9440:30;9506:34;9486:18;;;9479:62;-1:-1:-1;;;9557:18:1;;;9550:50;9617:19;;18740:101:0::1;9226:416:1::0;18740:101:0::1;-1:-1:-1::0;18851:18:0::1;:30:::0;;;18898:4:::1;13776:1;18529:380:::0;;;:::o;7156:151::-;-1:-1:-1;;;;;7272:18:0;;;7245:7;7272:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7156:151::o;14439:244::-;13706:6;;-1:-1:-1;;;;;13706:6:0;359:10;13706:22;13698:67;;;;-1:-1:-1;;;13698:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14528:22:0;::::1;14520:73;;;::::0;-1:-1:-1;;;14520:73:0;;9849:2:1;14520:73:0::1;::::0;::::1;9831:21:1::0;9888:2;9868:18;;;9861:30;9927:34;9907:18;;;9900:62;-1:-1:-1;;;9978:18:1;;;9971:36;10024:19;;14520:73:0::1;9647:402:1::0;14520:73:0::1;14630:6;::::0;14609:38:::1;::::0;-1:-1:-1;;;;;14609:38:0;;::::1;::::0;14630:6:::1;::::0;14609:38:::1;::::0;14630:6:::1;::::0;14609:38:::1;14658:6;:17:::0;;-1:-1:-1;;;;;;14658:17:0::1;-1:-1:-1::0;;;;;14658:17:0;;;::::1;::::0;;;::::1;::::0;;14439:244::o;12609:380::-;-1:-1:-1;;;;;12745:19:0;;12737:68;;;;-1:-1:-1;;;12737:68:0;;10256:2:1;12737:68:0;;;10238:21:1;10295:2;10275:18;;;10268:30;10334:34;10314:18;;;10307:62;-1:-1:-1;;;10385:18:1;;;10378:34;10429:19;;12737:68:0;10054:400:1;12737:68:0;-1:-1:-1;;;;;12824:21:0;;12816:68;;;;-1:-1:-1;;;12816:68:0;;10661:2:1;12816:68:0;;;10643:21:1;10700:2;10680:18;;;10673:30;10739:34;10719:18;;;10712:62;-1:-1:-1;;;10790:18:1;;;10783:32;10832:19;;12816:68:0;10459:398:1;12816:68:0;-1:-1:-1;;;;;12897:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12949:32;;1614:25:1;;;12949:32:0;;1587:18:1;12949:32:0;;;;;;;12609:380;;;:::o;21587:3557::-;-1:-1:-1;;;;;21719:18:0;;21711:68;;;;-1:-1:-1;;;21711:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21798:16:0;;21790:64;;;;-1:-1:-1;;;21790:64:0;;;;;;;:::i;:::-;21879:6;21889:1;21879:11;21876:92;;21907:28;21923:4;21929:2;21933:1;21907:15;:28::i;:::-;21587:3557;;;:::o;21876:92::-;21991:14;;;;21988:1261;;;22051:8;;-1:-1:-1;;;;;22043:16:0;;;22051:8;;22043:16;;;;:51;;-1:-1:-1;22086:8:0;;-1:-1:-1;;;;;22080:14:0;;;22086:8;;22080:14;;22043:51;:89;;;;-1:-1:-1;;;;;;22116:16:0;;;;22043:89;:131;;;;-1:-1:-1;;;;;;22153:21:0;;22167:6;22153:21;;22043:131;:161;;;;-1:-1:-1;22196:8:0;;;;22195:9;22043:161;22021:1217;;;22242:13;;;;22238:148;;-1:-1:-1;;;;;22287:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;22316:23:0;;;;;;:19;:23;;;;;;;;22287:52;22279:87;;;;-1:-1:-1;;;22279:87:0;;11874:2:1;22279:87:0;;;11856:21:1;11913:2;11893:18;;;11886:30;-1:-1:-1;;;11932:18:1;;;11925:52;11994:18;;22279:87:0;11672:346:1;22279:87:0;-1:-1:-1;;;;;22449:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;22485:35:0;;;;;;:31;:35;;;;;;;;22484:36;22449:71;22445:778;;;22567:20;;22557:6;:30;;22549:96;;;;-1:-1:-1;;;22549:96:0;;12225:2:1;22549:96:0;;;12207:21:1;12264:2;12244:18;;;12237:30;12303:34;12283:18;;;12276:62;-1:-1:-1;;;12354:18:1;;;12347:51;12415:19;;22549:96:0;12023:417:1;22549:96:0;22706:9;;-1:-1:-1;;;;;6679:18:0;;6652:7;6679:18;;;;;;;;;;;22680:22;;:6;:22;:::i;:::-;:35;;22672:67;;;;-1:-1:-1;;;22672:67:0;;12647:2:1;22672:67:0;;;12629:21:1;12686:2;12666:18;;;12659:30;-1:-1:-1;;;12705:18:1;;;12698:49;12764:18;;22672:67:0;12445:343:1;22672:67:0;22445:778;;;-1:-1:-1;;;;;22833:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;22867:37:0;;;;;;:31;:37;;;;;;;;22866:38;22833:71;22829:394;;;22951:20;;22941:6;:30;;22933:97;;;;-1:-1:-1;;;22933:97:0;;12995:2:1;22933:97:0;;;12977:21:1;13034:2;13014:18;;;13007:30;13073:34;13053:18;;;13046:62;-1:-1:-1;;;13124:18:1;;;13117:52;13186:19;;22933:97:0;12793:418:1;22829:394:0;-1:-1:-1;;;;;23077:35:0;;;;;;:31;:35;;;;;;;;23073:150;;23170:9;;-1:-1:-1;;;;;6679:18:0;;6652:7;6679:18;;;;;;;;;;;23144:22;;:6;:22;:::i;:::-;:35;;23136:67;;;;-1:-1:-1;;;23136:67:0;;12647:2:1;23136:67:0;;;12629:21:1;12686:2;12666:18;;;12659:30;-1:-1:-1;;;12705:18:1;;;12698:49;12764:18;;23136:67:0;12445:343:1;23136:67:0;23312:4;23263:28;6679:18;;;;;;;;;;;;23344:31;6679:18;23344:9;:31::i;:::-;23329:46;;23406:7;:35;;;;-1:-1:-1;23430:11:0;;;;;;;23406:35;:61;;;;-1:-1:-1;23459:8:0;;;;23458:9;23406:61;:110;;;;-1:-1:-1;;;;;;23485:31:0;;;;;;:25;:31;;;;;;;;23484:32;23406:110;:153;;;;-1:-1:-1;;;;;;23534:25:0;;;;;;:19;:25;;;;;;;;23533:26;23406:153;:194;;;;-1:-1:-1;;;;;;23577:23:0;;;;;;:19;:23;;;;;;;;23576:24;23406:194;23388:338;;;23627:8;:15;;-1:-1:-1;;23627:15:0;23638:4;23627:15;;;23671:10;:8;:10::i;:::-;23698:8;:16;;-1:-1:-1;;23698:16:0;;;23388:338;23762:8;;-1:-1:-1;;;;;23871:25:0;;23746:12;23871:25;;;:19;:25;;;;;;23762:8;;;;23761:9;;23871:25;;:52;;-1:-1:-1;;;;;;23900:23:0;;;;;;:19;:23;;;;;;;;23871:52;23868:99;;;-1:-1:-1;23950:5:0;23868:99;23987:12;24091:7;24088:1003;;;24121:11;;24117:1;:15;:45;;;;;24150:12;24136:11;;:26;24117:45;24114:820;;;-1:-1:-1;;;;;24213:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;24262:1;24246:13;;:17;24213:50;24209:625;;;24319:3;24303:13;;24294:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;24287:35;;24393:13;;24374:16;;24367:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;24345:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;24465:13:0;;24452:10;;24445:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;24429:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;24114:820:0;;-1:-1:-1;24114:820:0;24209:625;-1:-1:-1;;;;;24552:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;24602:1;24587:12;;:16;24552:51;24549:285;;;24659:3;24644:12;;24635:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;24628:34;;24732:12;;24714:15;;24707:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;24685:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;24802:12:0;;24790:9;;24783:16;;:4;:16;:::i;24549:285::-;24114:820;;;24893:25;24901:4;24907:2;24911:6;24893:7;:25::i;:::-;24886:32;;24114:820;24953:8;;24950:93;;24985:42;25001:4;25015;25022;24985:15;:42::i;:::-;25065:14;25075:4;25065:14;;:::i;:::-;;;24088:1003;25103:33;25119:4;25125:2;25129:6;25103:15;:33::i;:::-;21700:3444;;;;21587:3557;;;:::o;21203:188::-;-1:-1:-1;;;;;21286:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;21286:39:0;;;;;;;;;;21343:40;;21286:39;;:31;21343:40;;;21203:188;;:::o;10589:701::-;-1:-1:-1;;;;;10686:18:0;;10678:68;;;;-1:-1:-1;;;10678:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10765:16:0;;10757:64;;;;-1:-1:-1;;;10757:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10854:15:0;;10832:19;10854:15;;;;;;;;;;;10888:21;;;;10880:72;;;;-1:-1:-1;;;10880:72:0;;13418:2:1;10880:72:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:34;13476:18;;;13469:62;-1:-1:-1;;;13547:18:1;;;13540:36;13593:19;;10880:72:0;13216:402:1;10880:72:0;-1:-1:-1;;;;;10988:15:0;;;:9;:15;;;;;;;;;;;11006:20;;;10988:38;;11206:13;;;;;;;;;;:23;;;;;;11256:26;;1614:25:1;;;11206:13:0;;11256:26;;1587:18:1;11256:26:0;;;;;;;10667:623;10589:701;;;:::o;25152:226::-;25223:4;25271:18;;25247:20;:42;;:86;;;;;25322:11;;25307:12;:26;25247:86;:123;;;;-1:-1:-1;25353:12:0;25337:29;;;;:15;:29;;;;;;25369:1;-1:-1:-1;25240:130:0;25152:226;-1:-1:-1;;25152:226:0:o;27172:1361::-;27255:4;27211:23;6679:18;;;;;;;;;;;27211:50;;27272:25;27321:12;;27300:18;;:33;;;;:::i;:::-;27272:61;-1:-1:-1;27344:12:0;27380:20;;;:46;;-1:-1:-1;27404:22:0;;27380:46;27377:60;;;27429:7;;;27172:1361::o;27377:60::-;27470:18;;:23;;27491:2;27470:23;:::i;:::-;27452:15;:41;27449:111;;;27525:18;;:23;;27546:2;27525:23;:::i;:::-;27507:41;;27449:111;27629:23;27714:1;27694:17;27673:18;;27655:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;27629:86;-1:-1:-1;27726:26:0;27755:33;27629:86;27755:15;:33;:::i;:::-;27726:62;-1:-1:-1;27837:21:0;27871:36;27726:62;27871:16;:36::i;:::-;27929:18;27950:41;27974:17;27950:21;:41;:::i;:::-;27929:62;;28012:17;28060;28045:12;;28032:10;:25;;;;:::i;:::-;:45;;;;:::i;:::-;28012:65;-1:-1:-1;28098:23:0;28124:22;28012:65;28124:10;:22;:::i;:::-;28188:1;28167:18;:22;;;28200:12;:16;;;28258:9;;28250:45;;28098:48;;-1:-1:-1;;;;;;28258:9:0;;28281;;28250:45;28188:1;28250:45;28281:9;28258;28250:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28237:58:0;;-1:-1:-1;;28319:19:0;;;;;:42;;;28360:1;28342:15;:19;28319:42;28316:210;;;28377:46;28390:15;28407;28377:12;:46::i;:::-;28495:18;;28443:71;;;14035:25:1;;;14091:2;14076:18;;14069:34;;;14119:18;;;14112:34;;;;28443:71:0;;;;;;14023:2:1;28443:71:0;;;28316:210;27200:1333;;;;;;;;;27172:1361::o;26556:608::-;-1:-1:-1;;;;;26660:31:0;;26632:12;26660:31;;;:25;:31;;;;;;;;26657:500;;;26728:3;26714:11;:6;26723:2;26714:11;:::i;:::-;:17;;;;:::i;:::-;26707:24;;26793:12;;26775:15;;26768:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;26746:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;26855:12:0;;26843:9;;26836:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;26820:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;26887:15:0;;-1:-1:-1;;;;;26887:15:0;;;;;;;;26657:500;;;26999:3;26969:11;;26984:1;26969:16;:26;;26993:2;26969:26;;;26988:2;26969:26;26959:37;;;;:6;:37;:::i;:::-;:43;;;;:::i;:::-;26952:50;;27068:13;;27049:16;;27042:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;27020:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;27132:13:0;;27119:10;;27112:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;27096:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;26556:608:0;;;;;:::o;25386:633::-;25538:16;;;25552:1;25538:16;;;;;;;;25514:21;;25538:16;;;;;;;;;;-1:-1:-1;25538:16:0;25514:40;;25583:4;25565;25570:1;25565:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;25565:23:0;;;-1:-1:-1;;;;;25565:23:0;;;;;25609:15;-1:-1:-1;;;;;25609:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25599:4;25604:1;25599:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;25599:32:0;;;-1:-1:-1;;;;;25599:32:0;;;;;25644:62;25661:4;25676:15;25694:11;25644:8;:62::i;:::-;25745:224;;-1:-1:-1;;;25745:224:0;;-1:-1:-1;;;;;25745:15:0;:66;;;;:224;;25826:11;;25852:1;;25896:4;;25923;;25943:15;;25745:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25996:12:0;25980:29;;;;:15;:29;;;;;:31;;;-1:-1:-1;25980:29:0;-1:-1:-1;25980:31:0;;;:::i;:::-;;;;;;25441:578;25386:633;:::o;26031:517::-;26179:62;26196:4;26211:15;26229:11;26179:8;:62::i;:::-;26284:256;;-1:-1:-1;;;26284:256:0;;26356:4;26284:256;;;16143:34:1;16193:18;;;16186:34;;;26402:1:0;16236:18:1;;;16229:34;;;16279:18;;;16272:34;14880:6:0;16322:19:1;;;16315:44;26514:15:0;16375:19:1;;;16368:35;26284:15:0;-1:-1:-1;;;;;26284:31:0;;;;26323:9;;16077:19:1;;26284:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;26031:517;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;875:70;820:131;:::o;956:315::-;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1883:180::-;1942:6;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;-1:-1:-1;2034:23:1;;1883:180;-1:-1:-1;1883:180:1:o;2068:456::-;2145:6;2153;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;2269:9;2256:23;2288:31;2313:5;2288:31;:::i;:::-;2338:5;-1:-1:-1;2395:2:1;2380:18;;2367:32;2408:33;2367:32;2408:33;:::i;:::-;2068:456;;2460:7;;-1:-1:-1;;;2514:2:1;2499:18;;;;2486:32;;2068:456::o;2737:160::-;2802:20;;2858:13;;2851:21;2841:32;;2831:60;;2887:1;2884;2877:12;2902:248;2967:6;2975;3028:2;3016:9;3007:7;3003:23;2999:32;2996:52;;;3044:1;3041;3034:12;2996:52;3067:26;3083:9;3067:26;:::i;3344:247::-;3403:6;3456:2;3444:9;3435:7;3431:23;3427:32;3424:52;;;3472:1;3469;3462:12;3424:52;3511:9;3498:23;3530:31;3555:5;3530:31;:::i;3596:315::-;3661:6;3669;3722:2;3710:9;3701:7;3697:23;3693:32;3690:52;;;3738:1;3735;3728:12;3690:52;3777:9;3764:23;3796:31;3821:5;3796:31;:::i;:::-;3846:5;-1:-1:-1;3870:35:1;3901:2;3886:18;;3870:35;:::i;:::-;3860:45;;3596:315;;;;;:::o;3916:180::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:26;4080:9;4064:26;:::i;4101:388::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4285:9;4272:23;4304:31;4329:5;4304:31;:::i;:::-;4354:5;-1:-1:-1;4411:2:1;4396:18;;4383:32;4424:33;4383:32;4424:33;:::i;:::-;4476:7;4466:17;;;4101:388;;;;;:::o;4494:356::-;4696:2;4678:21;;;4715:18;;;4708:30;4774:34;4769:2;4754:18;;4747:62;4841:2;4826:18;;4494:356::o;4855:127::-;4916:10;4911:3;4907:20;4904:1;4897:31;4947:4;4944:1;4937:15;4971:4;4968:1;4961:15;4987:125;5052:9;;;5073:10;;;5070:36;;;5086:18;;:::i;5475:380::-;5554:1;5550:12;;;;5597;;;5618:61;;5672:4;5664:6;5660:17;5650:27;;5618:61;5725:2;5717:6;5714:14;5694:18;5691:38;5688:161;;5771:10;5766:3;5762:20;5759:1;5752:31;5806:4;5803:1;5796:15;5834:4;5831:1;5824:15;5688:161;;5475:380;;;:::o;5860:168::-;5933:9;;;5964;;5981:15;;;5975:22;;5961:37;5951:71;;6002:18;;:::i;6033:217::-;6073:1;6099;6089:132;;6143:10;6138:3;6134:20;6131:1;6124:31;6178:4;6175:1;6168:15;6206:4;6203:1;6196:15;6089:132;-1:-1:-1;6235:9:1;;6033:217::o;7078:128::-;7145:9;;;7166:11;;;7163:37;;;7180:18;;:::i;10862:401::-;11064:2;11046:21;;;11103:2;11083:18;;;11076:30;11142:34;11137:2;11122:18;;11115:62;-1:-1:-1;;;11208:2:1;11193:18;;11186:35;11253:3;11238:19;;10862:401::o;11268:399::-;11470:2;11452:21;;;11509:2;11489:18;;;11482:30;11548:34;11543:2;11528:18;;11521:62;-1:-1:-1;;;11614:2:1;11599:18;;11592:33;11657:3;11642:19;;11268:399::o;14289:127::-;14350:10;14345:3;14341:20;14338:1;14331:31;14381:4;14378:1;14371:15;14405:4;14402:1;14395:15;14421:251;14491:6;14544:2;14532:9;14523:7;14519:23;14515:32;14512:52;;;14560:1;14557;14550:12;14512:52;14592:9;14586:16;14611:31;14636:5;14611:31;:::i;14677:980::-;14939:4;14987:3;14976:9;14972:19;15018:6;15007:9;15000:25;15044:2;15082:6;15077:2;15066:9;15062:18;15055:34;15125:3;15120:2;15109:9;15105:18;15098:31;15149:6;15184;15178:13;15215:6;15207;15200:22;15253:3;15242:9;15238:19;15231:26;;15292:2;15284:6;15280:15;15266:29;;15313:1;15323:195;15337:6;15334:1;15331:13;15323:195;;;15402:13;;-1:-1:-1;;;;;15398:39:1;15386:52;;15493:15;;;;15458:12;;;;15434:1;15352:9;15323:195;;;-1:-1:-1;;;;;;;15574:32:1;;;;15569:2;15554:18;;15547:60;-1:-1:-1;;;15638:3:1;15623:19;15616:35;15535:3;14677:980;-1:-1:-1;;;14677:980:1:o;15662:135::-;15701:3;15722:17;;;15719:43;;15742:18;;:::i;:::-;-1:-1:-1;15789:1:1;15778:13;;15662:135::o;16414:306::-;16502:6;16510;16518;16571:2;16559:9;16550:7;16546:23;16542:32;16539:52;;;16587:1;16584;16577:12;16539:52;16616:9;16610:16;16600:26;;16666:2;16655:9;16651:18;16645:25;16635:35;;16710:2;16699:9;16695:18;16689:25;16679:35;;16414:306;;;;;:::o

Swarm Source

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