ETH Price: $3,309.30 (+1.16%)
Gas: 4 Gwei

Token

Donny Doomer (DONNY)
 

Overview

Max Total Supply

69,420,888,420,888 DONNY

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
214,728,109,654.990957536178794423 DONNY

Value
$0.00
0xba03eca6b692532648c4da21840fb9af578147a2
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:
DonnyDoomer

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-05-03
*/

/*
Donny Doomer (DONNY)
*/

// 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 DonnyDoomer 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("Donny Doomer", "DONNY") {

        _totalSupply = 69420888420888 * 1e18;
        maxTransactionAmount = _totalSupply * 2 / 100; // 2%
        maxWallet = _totalSupply * 2 / 100; // 2%
        swapTokensAtAmount = _totalSupply * 1 / 100; // 1%

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

        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() * 2 / 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() * 1 / 100)/1e18, "Cannot set maxWallet lower than 1%");
        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 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;
    }
    
    function updateSellFees(uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;
    }

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

    function claimStuckTokens(address _token) external onlyOwner {
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

}

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":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":[{"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"}]

60c0604052600b805461ffff19166101011790553480156200002057600080fd5b506040518060400160405280600c81526020016b2237b7373c902237b7b6b2b960a11b81525060405180604001604052806005815260200164444f4e4e5960d81b815250816003908162000075919062000680565b50600462000084828262000680565b5050506000620000996200045f60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506d036c36fd020a07483424396000006002818155606491620001099162000762565b62000115919062000782565b600855600280546064916200012b919062000762565b62000137919062000782565b600a556002546064906200014d90600162000762565b62000159919062000782565b6009556000600d8190556014600e819055816028620001798383620007a5565b600c5560108290556011819055620001928183620007a5565b600f5560068054336001600160a01b0319918216179091556007805490911673a2060eec2558708bda1dc833e23e1bed6fd3e770179055737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620001f081600162000463565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002559190620007bb565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c99190620007bb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000317573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033d9190620007bb565b6001600160a01b031660a081905262000358906001620004dd565b60a0516200036890600162000463565b6200037530600162000531565b6200038461dead600162000531565b6007546200039d906001600160a01b0316600162000531565b620003bc620003b46005546001600160a01b031690565b600162000531565b620003db620003d36005546001600160a01b031690565b600162000463565b620003e830600162000463565b620003f761dead600162000463565b600254600680546001600160a01b0390811660009081526020818152604080832086905593549351948552929091169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050620007ed565b3390565b6005546001600160a01b03163314620004b25760405162461bcd60e51b8152602060048201819052602482015260008051602062002fed83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200057c5760405162461bcd60e51b8152602060048201819052602482015260008051602062002fed8339815191526044820152606401620004a9565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060657607f821691505b6020821081036200062757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067b57600081815260208120601f850160051c81016020861015620006565750805b601f850160051c820191505b81811015620006775782815560010162000662565b5050505b505050565b81516001600160401b038111156200069c576200069c620005db565b620006b481620006ad8454620005f1565b846200062d565b602080601f831160018114620006ec5760008415620006d35750858301515b600019600386901b1c1916600185901b17855562000677565b600085815260208120601f198616915b828110156200071d57888601518255948401946001909101908401620006fc565b50858210156200073c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200077c576200077c6200074c565b92915050565b600082620007a057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200077c576200077c6200074c565b600060208284031215620007ce57600080fd5b81516001600160a01b0381168114620007e657600080fd5b9392505050565b60805160a0516127b06200083d6000396000818161046f0152610d56015260008181610346015281816120aa015281816121630152818161219f0152818161223a015261229701526127b06000f3fe60806040526004361061028c5760003560e01c80638da5cb5b1161015a578063c18bc195116100c1578063e2f456051161007a578063e2f45605146107ca578063f11a24d3146107e0578063f2fde38b146107f6578063f637434214610816578063f8b45b051461082c578063f9d0831a1461084257600080fd5b8063c18bc1951461071e578063c8c8ebe41461073e578063d257b34f14610754578063d5f3948814610774578063d85ba06314610794578063dd62ed3e146107aa57600080fd5b80639fccce32116101135780639fccce3214610662578063a0d82dc514610678578063a457c2d71461068e578063a9059cbb146106ae578063b62496f5146106ce578063c0246668146106fe57600080fd5b80638da5cb5b146105b95780638ea5220f146105d7578063924de9b7146105f757806395d89b41146106175780639a7a23d61461062c5780639c3b4fdc1461064c57600080fd5b8063313ce567116101fe5780636a486a8e116101b75780636a486a8e146105045780636ddd17131461051a57806370a0823114610539578063715018a61461056f578063751039fc146105845780637571336a1461059957600080fd5b8063313ce56714610421578063395093511461043d57806349bd5a5e1461045d5780634a62bb65146104915780634fbee193146104ab57806366ca9b83146104e457600080fd5b806318160ddd1161025057806318160ddd146103805780631a8145bb14610395578063203e727e146103ab57806323b872dd146103cb57806327c8f835146103eb5780632d4103d61461040157600080fd5b806302dbd8f81461029857806306fdde03146102ba578063095ea7b3146102e55780630dbd397c146103155780631694505e1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612315565b610862565b005b3480156102c657600080fd5b506102cf6108b0565b6040516102dc9190612337565b60405180910390f35b3480156102f157600080fd5b5061030561030036600461239a565b610942565b60405190151581526020016102dc565b34801561032157600080fd5b506015545b6040519081526020016102dc565b34801561034057600080fd5b506103687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102dc565b34801561038c57600080fd5b50600254610326565b3480156103a157600080fd5b5061032660125481565b3480156103b757600080fd5b506102b86103c63660046123c6565b610959565b3480156103d757600080fd5b506103056103e63660046123df565b610a33565b3480156103f757600080fd5b5061036861dead81565b34801561040d57600080fd5b506102b861041c36600461242e565b610b08565b34801561042d57600080fd5b50604051601281526020016102dc565b34801561044957600080fd5b5061030561045836600461239a565b610b6f565b34801561046957600080fd5b506103687f000000000000000000000000000000000000000000000000000000000000000081565b34801561049d57600080fd5b50600b546103059060ff1681565b3480156104b757600080fd5b506103056104c636600461244c565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104f057600080fd5b506102b86104ff366004612315565b610b8c565b34801561051057600080fd5b50610326600f5481565b34801561052657600080fd5b50600b5461030590610100900460ff1681565b34801561054557600080fd5b5061032661055436600461244c565b6001600160a01b031660009081526020819052604090205490565b34801561057b57600080fd5b506102b8610bd1565b34801561059057600080fd5b50610305610c45565b3480156105a557600080fd5b506102b86105b4366004612469565b610c82565b3480156105c557600080fd5b506005546001600160a01b0316610368565b3480156105e357600080fd5b50600754610368906001600160a01b031681565b34801561060357600080fd5b506102b86106123660046124a2565b610cd7565b34801561062357600080fd5b506102cf610d1b565b34801561063857600080fd5b506102b8610647366004612469565b610d2a565b34801561065857600080fd5b50610326600e5481565b34801561066e57600080fd5b5061032660135481565b34801561068457600080fd5b5061032660115481565b34801561069a57600080fd5b506103056106a936600461239a565b610e05565b3480156106ba57600080fd5b506103056106c936600461239a565b610e8b565b3480156106da57600080fd5b506103056106e936600461244c565b60176020526000908152604090205460ff1681565b34801561070a57600080fd5b506102b8610719366004612469565b610e98565b34801561072a57600080fd5b506102b86107393660046123c6565b610f21565b34801561074a57600080fd5b5061032660085481565b34801561076057600080fd5b5061030561076f3660046123c6565b610ff0565b34801561078057600080fd5b50600654610368906001600160a01b031681565b3480156107a057600080fd5b50610326600c5481565b3480156107b657600080fd5b506103266107c53660046124bf565b611141565b3480156107d657600080fd5b5061032660095481565b3480156107ec57600080fd5b50610326600d5481565b34801561080257600080fd5b506102b861081136600461244c565b61116c565b34801561082257600080fd5b5061032660105481565b34801561083857600080fd5b50610326600a5481565b34801561084e57600080fd5b506102b861085d36600461244c565b611257565b6005546001600160a01b031633146108955760405162461bcd60e51b815260040161088c906124ed565b60405180910390fd5b601082905560118190556108a98183612538565b600f555050565b6060600380546108bf9061254b565b80601f01602080910402602001604051908101604052809291908181526020018280546108eb9061254b565b80156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b5050505050905090565b600061094f3384846113d0565b5060015b92915050565b6005546001600160a01b031633146109835760405162461bcd60e51b815260040161088c906124ed565b670de0b6b3a7640000606461099760025490565b6109a2906001612585565b6109ac919061259c565b6109b6919061259c565b811015610a1b5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b606482015260840161088c565b610a2d81670de0b6b3a7640000612585565b60085550565b6001600160a01b0383166000908152600160209081526040808320338452909152812054821115610ab75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161088c565b610ac28484846114f4565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610afd918691610af89086906125be565b6113d0565b5060015b9392505050565b6005546001600160a01b03163314610b325760405162461bcd60e51b815260040161088c906124ed565b6014805460ff1916831515179055601554600110610b6b57610b548143612538565b60156000828254610b659190612538565b90915550505b5050565b600033610afd818585610b828383611141565b610af89190612538565b6005546001600160a01b03163314610bb65760405162461bcd60e51b815260040161088c906124ed565b600d829055600e819055610bca8183612538565b600c555050565b6005546001600160a01b03163314610bfb5760405162461bcd60e51b815260040161088c906124ed565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610c725760405162461bcd60e51b815260040161088c906124ed565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cac5760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d015760405162461bcd60e51b815260040161088c906124ed565b600b80549115156101000261ff0019909216919091179055565b6060600480546108bf9061254b565b6005546001600160a01b03163314610d545760405162461bcd60e51b815260040161088c906124ed565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610dfb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161088c565b610b6b8282611b8a565b60003381610e138286611141565b905083811015610e735760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161088c565b610e8082868684036113d0565b506001949350505050565b600061094f3384846114f4565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f4b5760405162461bcd60e51b815260040161088c906124ed565b670de0b6b3a76400006064610f5f60025490565b610f6a906001612585565b610f74919061259c565b610f7e919061259c565b811015610fd85760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161088c565b610fea81670de0b6b3a7640000612585565b600a5550565b6005546000906001600160a01b0316331461101d5760405162461bcd60e51b815260040161088c906124ed565b620186a061102a60025490565b611035906001612585565b61103f919061259c565b8210156110ac5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161088c565b60646110b760025490565b6110c2906002612585565b6110cc919061259c565b8211156111385760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161088c565b50600955600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146111965760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b0381166111fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112815760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b0381166112c8576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b6b573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611311573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133591906125d1565b9050816001600160a01b031663a9059cbb6113586005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156113a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c991906125ea565b5050505b50565b6001600160a01b0383166114325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b6001600160a01b0382166114935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161088c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661151a5760405162461bcd60e51b815260040161088c90612607565b6001600160a01b0382166115405760405162461bcd60e51b815260040161088c9061264c565b806000036115595761155483836000611bde565b505050565b600b5460ff16156118c3576006546001600160a01b0384811691161480159061159057506006546001600160a01b03838116911614155b80156115a457506001600160a01b03821615155b80156115bb57506001600160a01b03821661dead14155b80156115ca575060165460ff16155b156118c35760145460ff1661165d576001600160a01b03831660009081526018602052604090205460ff168061161857506001600160a01b03821660009081526018602052604090205460ff165b61165d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161088c565b6001600160a01b03831660009081526017602052604090205460ff16801561169e57506001600160a01b03821660009081526019602052604090205460ff16155b15611782576008548111156117135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161088c565b600a546001600160a01b0383166000908152602081905260409020546117399083612538565b111561177d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b6118c3565b6001600160a01b03821660009081526017602052604090205460ff1680156117c357506001600160a01b03831660009081526019602052604090205460ff16155b156118395760085481111561177d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161088c565b6001600160a01b03821660009081526019602052604090205460ff166118c357600a546001600160a01b03831660009081526020819052604090205461187f9083612538565b11156118c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b30600090815260208190526040812054906118dd82611d09565b90508080156118f35750600b54610100900460ff165b8015611902575060165460ff16155b801561192757506001600160a01b03851660009081526017602052604090205460ff16155b801561194c57506001600160a01b03851660009081526018602052604090205460ff16155b801561197157506001600160a01b03841660009081526018602052604090205460ff16155b15611996576016805460ff1916600117905561198b611d3e565b6016805460ff191690555b6016546001600160a01b03861660009081526018602052604090205460ff918216159116806119dd57506001600160a01b03851660009081526018602052604090205460ff165b156119e6575060005b60008115611b76576015546000108015611a0257504360155411155b15611b4a576001600160a01b03861660009081526017602052604090205460ff168015611a3157506000600f54115b15611ab9576064600f5486611a469190612585565b611a50919061259c565b9050600f5460105482611a639190612585565b611a6d919061259c565b60126000828254611a7e9190612538565b9091555050600f54601154611a939083612585565b611a9d919061259c565b60136000828254611aae9190612538565b90915550611b589050565b6001600160a01b03871660009081526017602052604090205460ff168015611ae357506000600c54115b15611b45576064600c5486611af89190612585565b611b02919061259c565b9050600c54600d5482611b159190612585565b611b1f919061259c565b60126000828254611b309190612538565b9091555050600c54600e54611a939083612585565b611b58565b611b55878787611ee8565b90505b8015611b6957611b69873083611bde565b611b7381866125be565b94505b611b81878787611bde565b50505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c045760405162461bcd60e51b815260040161088c90612607565b6001600160a01b038216611c2a5760405162461bcd60e51b815260040161088c9061264c565b6001600160a01b03831660009081526020819052604090205481811015611ca25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161088c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b60006009548210158015611d1e575060155443115b80156109535750436000908152601a602052604090205460031192915050565b3060009081526020819052604081205490506000601354601254611d629190612538565b90506000821580611d71575081155b15611d7b57505050565b600954611d89906016612585565b831115611da157600954611d9e906016612585565b92505b600060028360125486611db49190612585565b611dbe919061259c565b611dc8919061259c565b90506000611dd682866125be565b905047611de282612053565b6000611dee82476125be565b905060008660135483611e019190612585565b611e0b919061259c565b90506000611e1982846125be565b6000601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611e71576040519150601f19603f3d011682016040523d82523d6000602084013e611e76565b606091505b50909750508515801590611e8a5750600081115b15611edd57611e998682612234565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1615611fbc576064611f16836031612585565b611f20919061259c565b9050600c54600d5482611f339190612585565b611f3d919061259c565b60126000828254611f4e9190612538565b9091555050600c54600e54611f639083612585565b611f6d919061259c565b60136000828254611f7e9190612538565b90915550506040516001600160a01b038416907fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e290600090a2610b01565b6064601554600014611fcf576046611fd2565b601e5b611fdf9060ff1684612585565b611fe9919061259c565b9050600f5460105482611ffc9190612585565b612006919061259c565b601260008282546120179190612538565b9091555050600f5460115461202c9083612585565b612036919061259c565b601360008282546120479190612538565b90915550509392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120885761208861268f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061212a91906126a5565b8160018151811061213d5761213d61268f565b60200260200101906001600160a01b031690816001600160a01b031681525050612188307f0000000000000000000000000000000000000000000000000000000000000000846113d0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906121dd9085906000908690309042906004016126c2565b600060405180830381600087803b1580156121f757600080fd5b505af115801561220b573d6000803e3d6000fd5b5050436000908152601a6020526040812080549350915061222b83612733565b91905055505050565b61225f307f0000000000000000000000000000000000000000000000000000000000000000846113d0565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156122e9573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061230e919061274c565b5050505050565b6000806040838503121561232857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561236457858101830151858201604001528201612348565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113cd57600080fd5b600080604083850312156123ad57600080fd5b82356123b881612385565b946020939093013593505050565b6000602082840312156123d857600080fd5b5035919050565b6000806000606084860312156123f457600080fd5b83356123ff81612385565b9250602084013561240f81612385565b929592945050506040919091013590565b80151581146113cd57600080fd5b6000806040838503121561244157600080fd5b82356123b881612420565b60006020828403121561245e57600080fd5b8135610b0181612385565b6000806040838503121561247c57600080fd5b823561248781612385565b9150602083013561249781612420565b809150509250929050565b6000602082840312156124b457600080fd5b8135610b0181612420565b600080604083850312156124d257600080fd5b82356124dd81612385565b9150602083013561249781612385565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561095357610953612522565b600181811c9082168061255f57607f821691505b60208210810361257f57634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761095357610953612522565b6000826125b957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561095357610953612522565b6000602082840312156125e357600080fd5b5051919050565b6000602082840312156125fc57600080fd5b8151610b0181612420565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126b757600080fd5b8151610b0181612385565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127125784516001600160a01b0316835293830193918301916001016126ed565b50506001600160a01b03969096166060850152505050608001529392505050565b60006001820161274557612745612522565b5060010190565b60008060006060848603121561276157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b2664d66be669cb1025fb8fab5e12c31e12e6e5a3b8b03d8023eead5433c809b64736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80638da5cb5b1161015a578063c18bc195116100c1578063e2f456051161007a578063e2f45605146107ca578063f11a24d3146107e0578063f2fde38b146107f6578063f637434214610816578063f8b45b051461082c578063f9d0831a1461084257600080fd5b8063c18bc1951461071e578063c8c8ebe41461073e578063d257b34f14610754578063d5f3948814610774578063d85ba06314610794578063dd62ed3e146107aa57600080fd5b80639fccce32116101135780639fccce3214610662578063a0d82dc514610678578063a457c2d71461068e578063a9059cbb146106ae578063b62496f5146106ce578063c0246668146106fe57600080fd5b80638da5cb5b146105b95780638ea5220f146105d7578063924de9b7146105f757806395d89b41146106175780639a7a23d61461062c5780639c3b4fdc1461064c57600080fd5b8063313ce567116101fe5780636a486a8e116101b75780636a486a8e146105045780636ddd17131461051a57806370a0823114610539578063715018a61461056f578063751039fc146105845780637571336a1461059957600080fd5b8063313ce56714610421578063395093511461043d57806349bd5a5e1461045d5780634a62bb65146104915780634fbee193146104ab57806366ca9b83146104e457600080fd5b806318160ddd1161025057806318160ddd146103805780631a8145bb14610395578063203e727e146103ab57806323b872dd146103cb57806327c8f835146103eb5780632d4103d61461040157600080fd5b806302dbd8f81461029857806306fdde03146102ba578063095ea7b3146102e55780630dbd397c146103155780631694505e1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612315565b610862565b005b3480156102c657600080fd5b506102cf6108b0565b6040516102dc9190612337565b60405180910390f35b3480156102f157600080fd5b5061030561030036600461239a565b610942565b60405190151581526020016102dc565b34801561032157600080fd5b506015545b6040519081526020016102dc565b34801561034057600080fd5b506103687f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102dc565b34801561038c57600080fd5b50600254610326565b3480156103a157600080fd5b5061032660125481565b3480156103b757600080fd5b506102b86103c63660046123c6565b610959565b3480156103d757600080fd5b506103056103e63660046123df565b610a33565b3480156103f757600080fd5b5061036861dead81565b34801561040d57600080fd5b506102b861041c36600461242e565b610b08565b34801561042d57600080fd5b50604051601281526020016102dc565b34801561044957600080fd5b5061030561045836600461239a565b610b6f565b34801561046957600080fd5b506103687f0000000000000000000000000b78af8807cb83059b535b70ccbbc9aa2c3f35ab81565b34801561049d57600080fd5b50600b546103059060ff1681565b3480156104b757600080fd5b506103056104c636600461244c565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104f057600080fd5b506102b86104ff366004612315565b610b8c565b34801561051057600080fd5b50610326600f5481565b34801561052657600080fd5b50600b5461030590610100900460ff1681565b34801561054557600080fd5b5061032661055436600461244c565b6001600160a01b031660009081526020819052604090205490565b34801561057b57600080fd5b506102b8610bd1565b34801561059057600080fd5b50610305610c45565b3480156105a557600080fd5b506102b86105b4366004612469565b610c82565b3480156105c557600080fd5b506005546001600160a01b0316610368565b3480156105e357600080fd5b50600754610368906001600160a01b031681565b34801561060357600080fd5b506102b86106123660046124a2565b610cd7565b34801561062357600080fd5b506102cf610d1b565b34801561063857600080fd5b506102b8610647366004612469565b610d2a565b34801561065857600080fd5b50610326600e5481565b34801561066e57600080fd5b5061032660135481565b34801561068457600080fd5b5061032660115481565b34801561069a57600080fd5b506103056106a936600461239a565b610e05565b3480156106ba57600080fd5b506103056106c936600461239a565b610e8b565b3480156106da57600080fd5b506103056106e936600461244c565b60176020526000908152604090205460ff1681565b34801561070a57600080fd5b506102b8610719366004612469565b610e98565b34801561072a57600080fd5b506102b86107393660046123c6565b610f21565b34801561074a57600080fd5b5061032660085481565b34801561076057600080fd5b5061030561076f3660046123c6565b610ff0565b34801561078057600080fd5b50600654610368906001600160a01b031681565b3480156107a057600080fd5b50610326600c5481565b3480156107b657600080fd5b506103266107c53660046124bf565b611141565b3480156107d657600080fd5b5061032660095481565b3480156107ec57600080fd5b50610326600d5481565b34801561080257600080fd5b506102b861081136600461244c565b61116c565b34801561082257600080fd5b5061032660105481565b34801561083857600080fd5b50610326600a5481565b34801561084e57600080fd5b506102b861085d36600461244c565b611257565b6005546001600160a01b031633146108955760405162461bcd60e51b815260040161088c906124ed565b60405180910390fd5b601082905560118190556108a98183612538565b600f555050565b6060600380546108bf9061254b565b80601f01602080910402602001604051908101604052809291908181526020018280546108eb9061254b565b80156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b5050505050905090565b600061094f3384846113d0565b5060015b92915050565b6005546001600160a01b031633146109835760405162461bcd60e51b815260040161088c906124ed565b670de0b6b3a7640000606461099760025490565b6109a2906001612585565b6109ac919061259c565b6109b6919061259c565b811015610a1b5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b606482015260840161088c565b610a2d81670de0b6b3a7640000612585565b60085550565b6001600160a01b0383166000908152600160209081526040808320338452909152812054821115610ab75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161088c565b610ac28484846114f4565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610afd918691610af89086906125be565b6113d0565b5060015b9392505050565b6005546001600160a01b03163314610b325760405162461bcd60e51b815260040161088c906124ed565b6014805460ff1916831515179055601554600110610b6b57610b548143612538565b60156000828254610b659190612538565b90915550505b5050565b600033610afd818585610b828383611141565b610af89190612538565b6005546001600160a01b03163314610bb65760405162461bcd60e51b815260040161088c906124ed565b600d829055600e819055610bca8183612538565b600c555050565b6005546001600160a01b03163314610bfb5760405162461bcd60e51b815260040161088c906124ed565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610c725760405162461bcd60e51b815260040161088c906124ed565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cac5760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d015760405162461bcd60e51b815260040161088c906124ed565b600b80549115156101000261ff0019909216919091179055565b6060600480546108bf9061254b565b6005546001600160a01b03163314610d545760405162461bcd60e51b815260040161088c906124ed565b7f0000000000000000000000000b78af8807cb83059b535b70ccbbc9aa2c3f35ab6001600160a01b0316826001600160a01b031603610dfb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161088c565b610b6b8282611b8a565b60003381610e138286611141565b905083811015610e735760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161088c565b610e8082868684036113d0565b506001949350505050565b600061094f3384846114f4565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f4b5760405162461bcd60e51b815260040161088c906124ed565b670de0b6b3a76400006064610f5f60025490565b610f6a906001612585565b610f74919061259c565b610f7e919061259c565b811015610fd85760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161088c565b610fea81670de0b6b3a7640000612585565b600a5550565b6005546000906001600160a01b0316331461101d5760405162461bcd60e51b815260040161088c906124ed565b620186a061102a60025490565b611035906001612585565b61103f919061259c565b8210156110ac5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161088c565b60646110b760025490565b6110c2906002612585565b6110cc919061259c565b8211156111385760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161088c565b50600955600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146111965760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b0381166111fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112815760405162461bcd60e51b815260040161088c906124ed565b6001600160a01b0381166112c8576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b6b573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611311573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133591906125d1565b9050816001600160a01b031663a9059cbb6113586005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156113a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c991906125ea565b5050505b50565b6001600160a01b0383166114325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b6001600160a01b0382166114935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161088c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661151a5760405162461bcd60e51b815260040161088c90612607565b6001600160a01b0382166115405760405162461bcd60e51b815260040161088c9061264c565b806000036115595761155483836000611bde565b505050565b600b5460ff16156118c3576006546001600160a01b0384811691161480159061159057506006546001600160a01b03838116911614155b80156115a457506001600160a01b03821615155b80156115bb57506001600160a01b03821661dead14155b80156115ca575060165460ff16155b156118c35760145460ff1661165d576001600160a01b03831660009081526018602052604090205460ff168061161857506001600160a01b03821660009081526018602052604090205460ff165b61165d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161088c565b6001600160a01b03831660009081526017602052604090205460ff16801561169e57506001600160a01b03821660009081526019602052604090205460ff16155b15611782576008548111156117135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161088c565b600a546001600160a01b0383166000908152602081905260409020546117399083612538565b111561177d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b6118c3565b6001600160a01b03821660009081526017602052604090205460ff1680156117c357506001600160a01b03831660009081526019602052604090205460ff16155b156118395760085481111561177d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161088c565b6001600160a01b03821660009081526019602052604090205460ff166118c357600a546001600160a01b03831660009081526020819052604090205461187f9083612538565b11156118c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b30600090815260208190526040812054906118dd82611d09565b90508080156118f35750600b54610100900460ff165b8015611902575060165460ff16155b801561192757506001600160a01b03851660009081526017602052604090205460ff16155b801561194c57506001600160a01b03851660009081526018602052604090205460ff16155b801561197157506001600160a01b03841660009081526018602052604090205460ff16155b15611996576016805460ff1916600117905561198b611d3e565b6016805460ff191690555b6016546001600160a01b03861660009081526018602052604090205460ff918216159116806119dd57506001600160a01b03851660009081526018602052604090205460ff165b156119e6575060005b60008115611b76576015546000108015611a0257504360155411155b15611b4a576001600160a01b03861660009081526017602052604090205460ff168015611a3157506000600f54115b15611ab9576064600f5486611a469190612585565b611a50919061259c565b9050600f5460105482611a639190612585565b611a6d919061259c565b60126000828254611a7e9190612538565b9091555050600f54601154611a939083612585565b611a9d919061259c565b60136000828254611aae9190612538565b90915550611b589050565b6001600160a01b03871660009081526017602052604090205460ff168015611ae357506000600c54115b15611b45576064600c5486611af89190612585565b611b02919061259c565b9050600c54600d5482611b159190612585565b611b1f919061259c565b60126000828254611b309190612538565b9091555050600c54600e54611a939083612585565b611b58565b611b55878787611ee8565b90505b8015611b6957611b69873083611bde565b611b7381866125be565b94505b611b81878787611bde565b50505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c045760405162461bcd60e51b815260040161088c90612607565b6001600160a01b038216611c2a5760405162461bcd60e51b815260040161088c9061264c565b6001600160a01b03831660009081526020819052604090205481811015611ca25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161088c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b60006009548210158015611d1e575060155443115b80156109535750436000908152601a602052604090205460031192915050565b3060009081526020819052604081205490506000601354601254611d629190612538565b90506000821580611d71575081155b15611d7b57505050565b600954611d89906016612585565b831115611da157600954611d9e906016612585565b92505b600060028360125486611db49190612585565b611dbe919061259c565b611dc8919061259c565b90506000611dd682866125be565b905047611de282612053565b6000611dee82476125be565b905060008660135483611e019190612585565b611e0b919061259c565b90506000611e1982846125be565b6000601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611e71576040519150601f19603f3d011682016040523d82523d6000602084013e611e76565b606091505b50909750508515801590611e8a5750600081115b15611edd57611e998682612234565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1615611fbc576064611f16836031612585565b611f20919061259c565b9050600c54600d5482611f339190612585565b611f3d919061259c565b60126000828254611f4e9190612538565b9091555050600c54600e54611f639083612585565b611f6d919061259c565b60136000828254611f7e9190612538565b90915550506040516001600160a01b038416907fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e290600090a2610b01565b6064601554600014611fcf576046611fd2565b601e5b611fdf9060ff1684612585565b611fe9919061259c565b9050600f5460105482611ffc9190612585565b612006919061259c565b601260008282546120179190612538565b9091555050600f5460115461202c9083612585565b612036919061259c565b601360008282546120479190612538565b90915550509392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120885761208861268f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061212a91906126a5565b8160018151811061213d5761213d61268f565b60200260200101906001600160a01b031690816001600160a01b031681525050612188307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113d0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906121dd9085906000908690309042906004016126c2565b600060405180830381600087803b1580156121f757600080fd5b505af115801561220b573d6000803e3d6000fd5b5050436000908152601a6020526040812080549350915061222b83612733565b91905055505050565b61225f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113d0565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156122e9573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061230e919061274c565b5050505050565b6000806040838503121561232857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561236457858101830151858201604001528201612348565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113cd57600080fd5b600080604083850312156123ad57600080fd5b82356123b881612385565b946020939093013593505050565b6000602082840312156123d857600080fd5b5035919050565b6000806000606084860312156123f457600080fd5b83356123ff81612385565b9250602084013561240f81612385565b929592945050506040919091013590565b80151581146113cd57600080fd5b6000806040838503121561244157600080fd5b82356123b881612420565b60006020828403121561245e57600080fd5b8135610b0181612385565b6000806040838503121561247c57600080fd5b823561248781612385565b9150602083013561249781612420565b809150509250929050565b6000602082840312156124b457600080fd5b8135610b0181612420565b600080604083850312156124d257600080fd5b82356124dd81612385565b9150602083013561249781612385565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561095357610953612522565b600181811c9082168061255f57607f821691505b60208210810361257f57634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761095357610953612522565b6000826125b957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561095357610953612522565b6000602082840312156125e357600080fd5b5051919050565b6000602082840312156125fc57600080fd5b8151610b0181612420565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126b757600080fd5b8151610b0181612385565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127125784516001600160a01b0316835293830193918301916001016126ed565b50506001600160a01b03969096166060850152505050608001529392505050565b60006001820161274557612745612522565b5060010190565b60008060006060848603121561276157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b2664d66be669cb1025fb8fab5e12c31e12e6e5a3b8b03d8023eead5433c809b64736f6c63430008120033

Deployed Bytecode Sourcemap

14616:13925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20165:221;;;;;;;;;;-1:-1:-1;20165:221:0;;;;;:::i;:::-;;:::i;:::-;;5213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7380:169;;;;;;;;;;-1:-1:-1;7380:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;7380:169:0;1276:187:1;19825:101:0;;;;;;;;;;-1:-1:-1;19907:11:0;;19825:101;;;1614:25:1;;;1602:2;1587:18;19825:101:0;1468:177:1;14664:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1839:32:1;;;1821:51;;1809:2;1794:18;14664:51:0;1650:228:1;6333:108:0;;;;;;;;;;-1:-1:-1;6421:12:0;;6333:108;;15313:33;;;;;;;;;;;;;;;;18814:231;;;;;;;;;;-1:-1:-1;18814:231:0;;;;;:::i;:::-;;:::i;8031:410::-;;;;;;;;;;-1:-1:-1;8031:410:0;;;;;:::i;:::-;;:::i;14767:53::-;;;;;;;;;;;;14813:6;14767:53;;19628:189;;;;;;;;;;-1:-1:-1;19628:189:0;;;;;:::i;:::-;;:::i;6175:93::-;;;;;;;;;;-1:-1:-1;6175:93:0;;6258:2;3316:36:1;;3304:2;3289:18;6175:93:0;3174:184:1;8850:238:0;;;;;;;;;;-1:-1:-1;8850:238:0;;;;;:::i;:::-;;:::i;14722:38::-;;;;;;;;;;;;;;;15011:33;;;;;;;;;;-1:-1:-1;15011:33:0;;;;;;;;21033:125;;;;;;;;;;-1:-1:-1;21033:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;21122:28:0;21098:4;21122:28;;;:19;:28;;;;;;;;;21033:125;19938:215;;;;;;;;;;-1:-1:-1;19938:215:0;;;;;:::i;:::-;;:::i;15202:28::-;;;;;;;;;;;;;;;;15051:30;;;;;;;;;;-1:-1:-1;15051:30:0;;;;;;;;;;;6504:127;;;;;;;;;;-1:-1:-1;6504:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6605:18:0;6578:7;6605:18;;;;;;;;;;;;6504:127;14062:148;;;;;;;;;;;;;:::i;18227:120::-;;;;;;;;;;;;;:::i;19277:144::-;;;;;;;;;;-1:-1:-1;19277:144:0;;;;;:::i;:::-;;:::i;13420:79::-;;;;;;;;;;-1:-1:-1;13485:6:0;;-1:-1:-1;;;;;13485:6:0;13420:79;;14859:24;;;;;;;;;;-1:-1:-1;14859:24:0;;;;-1:-1:-1;;;;;14859:24:0;;;19521:99;;;;;;;;;;-1:-1:-1;19521:99:0;;;;;:::i;:::-;;:::i;5432:104::-;;;;;;;;;;;;;:::i;20584:244::-;;;;;;;;;;-1:-1:-1;20584:244:0;;;;;:::i;:::-;;:::i;15165:24::-;;;;;;;;;;;;;;;;15353:27;;;;;;;;;;;;;;;;15275:25;;;;;;;;;;;;;;;;9591:434;;;;;;;;;;-1:-1:-1;9591:434:0;;;;;:::i;:::-;;:::i;6844:175::-;;;;;;;;;;-1:-1:-1;6844:175:0;;;;;:::i;:::-;;:::i;15667:58::-;;;;;;;;;;-1:-1:-1;15667:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20394:182;;;;;;;;;;-1:-1:-1;20394:182:0;;;;;:::i;:::-;;:::i;19053:212::-;;;;;;;;;;-1:-1:-1;19053:212:0;;;;;:::i;:::-;;:::i;14896:35::-;;;;;;;;;;;;;;;;18422:380;;;;;;;;;;-1:-1:-1;18422:380:0;;;;;:::i;:::-;;:::i;14829:23::-;;;;;;;;;;-1:-1:-1;14829:23:0;;;;-1:-1:-1;;;;;14829:23:0;;;15094:27;;;;;;;;;;;;;;;;7082:151;;;;;;;;;;-1:-1:-1;7082:151:0;;;;;:::i;:::-;;:::i;14938:33::-;;;;;;;;;;;;;;;;15128:30;;;;;;;;;;;;;;;;14365:244;;;;;;;;;;-1:-1:-1;14365:244:0;;;;;:::i;:::-;;:::i;15237:31::-;;;;;;;;;;;;;;;;14978:24;;;;;;;;;;;;;;;;28176:360;;;;;;;;;;-1:-1:-1;28176:360:0;;;;;:::i;:::-;;:::i;20165:221::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;;;;;;;;;20259:16:::1;:32:::0;;;20302:10:::1;:20:::0;;;20349:29:::1;20315:7:::0;20278:13;20349:29:::1;:::i;:::-;20333:13;:45:::0;-1:-1:-1;;20165:221:0:o;5213:100::-;5267:13;5300:5;5293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5213:100;:::o;7380:169::-;7463:4;7480:39;285:10;7503:7;7512:6;7480:8;:39::i;:::-;-1:-1:-1;7537:4:0;7380:169;;;;;:::o;18814:231::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;18932:4:::1;18927:3;18907:13;6421:12:::0;;;6333:108;18907:13:::1;:17;::::0;18923:1:::1;18907:17;:::i;:::-;:23;;;;:::i;:::-;18906:30;;;;:::i;:::-;18896:6;:40;;18888:98;;;::::0;-1:-1:-1;;;18888:98:0;;6246:2:1;18888:98:0::1;::::0;::::1;6228:21:1::0;6285:2;6265:18;;;6258:30;6324:34;6304:18;;;6297:62;-1:-1:-1;;;6375:18:1;;;6368:43;6428:19;;18888:98:0::1;6044:409:1::0;18888:98:0::1;19020:17;:6:::0;19030::::1;19020:17;:::i;:::-;18997:20;:40:::0;-1:-1:-1;18814:231:0:o;8031:410::-;-1:-1:-1;;;;;8197:19:0;;8172:4;8197:19;;;:11;:19;;;;;;;;8217:10;8197:31;;;;;;;;:41;-1:-1:-1;8197:41:0;8189:94;;;;-1:-1:-1;;;8189:94:0;;6660:2:1;8189:94:0;;;6642:21:1;6699:2;6679:18;;;6672:30;6738:34;6718:18;;;6711:62;-1:-1:-1;;;6789:18:1;;;6782:38;6837:19;;8189:94:0;6458:404:1;8189:94:0;8294:36;8304:6;8312:9;8323:6;8294:9;:36::i;:::-;-1:-1:-1;;;;;8370:19:0;;;;;;:11;:19;;;;;;;;8358:10;8370:31;;;;;;;;;8341:70;;8350:6;;8370:40;;8404:6;;8370:40;:::i;:::-;8341:8;:70::i;:::-;-1:-1:-1;8429:4:0;8031:410;;;;;;:::o;19628:189::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;19701:13:::1;:23:::0;;-1:-1:-1;;19701:23:0::1;::::0;::::1;;;::::0;;19738:11:::1;::::0;-1:-1:-1;;19735:75:0::1;;19784:14;19797:1:::0;19784:12:::1;:14;:::i;:::-;19771:11;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;19735:75:0::1;19628:189:::0;;:::o;8850:238::-;8938:4;285:10;8994:64;285:10;9010:7;9047:10;9019:25;285:10;9010:7;9019:9;:25::i;:::-;:38;;;;:::i;19938:215::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;20031:15:::1;:31:::0;;;20073:9:::1;:19:::0;;;20118:27:::1;20085:7:::0;20049:13;20118:27:::1;:::i;:::-;20103:12;:42:::0;-1:-1:-1;;19938:215:0:o;14062:148::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;14153:6:::1;::::0;14132:40:::1;::::0;14169:1:::1;::::0;-1:-1:-1;;;;;14153:6:0::1;::::0;14132:40:::1;::::0;14169:1;;14132:40:::1;14183:6;:19:::0;;-1:-1:-1;;;;;;14183:19:0::1;::::0;;14062:148::o;18227:120::-;13632:6;;18279:4;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;-1:-1:-1;18295:14:0::1;:22:::0;;-1:-1:-1;;18295:22:0::1;::::0;;;18227:120;:::o;19277:144::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19367:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;19367:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19277:144::o;19521:99::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;19591:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;19591:21:0;;::::1;::::0;;;::::1;::::0;;19521:99::o;5432:104::-;5488:13;5521:7;5514:14;;;;;:::i;20584:244::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;20691:13:::1;-1:-1:-1::0;;;;;20683:21:0::1;:4;-1:-1:-1::0;;;;;20683:21:0::1;::::0;20675:91:::1;;;::::0;-1:-1:-1;;;20675:91:0;;7202:2:1;20675:91:0::1;::::0;::::1;7184:21:1::0;7241:2;7221:18;;;7214:30;7280:34;7260:18;;;7253:62;7351:27;7331:18;;;7324:55;7396:19;;20675:91:0::1;7000:421:1::0;20675:91:0::1;20779:41;20808:4;20814:5;20779:28;:41::i;9591:434::-:0;9684:4;285:10;9684:4;9767:25;285:10;9784:7;9767:9;:25::i;:::-;9740:52;;9831:15;9811:16;:35;;9803:85;;;;-1:-1:-1;;;9803:85:0;;7628:2:1;9803:85:0;;;7610:21:1;7667:2;7647:18;;;7640:30;7706:34;7686:18;;;7679:62;-1:-1:-1;;;7757:18:1;;;7750:35;7802:19;;9803:85:0;7426:401:1;9803:85:0;9924:60;9933:5;9940:7;9968:15;9949:16;:34;9924:8;:60::i;:::-;-1:-1:-1;10013:4:0;;9591:434;-1:-1:-1;;;;9591:434:0:o;6844:175::-;6930:4;6947:42;285:10;6971:9;6982:6;6947:9;:42::i;20394:182::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20479:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;20479:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;20534:34;;1416:41:1;;;20534:34:0::1;::::0;1389:18:1;20534:34:0::1;;;;;;;20394:182:::0;;:::o;19053:212::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;19174:4:::1;19169:3;19149:13;6421:12:::0;;;6333:108;19149:13:::1;:17;::::0;19165:1:::1;19149:17;:::i;:::-;:23;;;;:::i;:::-;19148:30;;;;:::i;:::-;19138:6;:40;;19130:87;;;::::0;-1:-1:-1;;;19130:87:0;;8034:2:1;19130:87:0::1;::::0;::::1;8016:21:1::0;8073:2;8053:18;;;8046:30;8112:34;8092:18;;;8085:62;-1:-1:-1;;;8163:18:1;;;8156:32;8205:19;;19130:87:0::1;7832:398:1::0;19130:87:0::1;19240:17;:6:::0;19250::::1;19240:17;:::i;:::-;19228:9;:29:::0;-1:-1:-1;19053:212:0:o;18422:380::-;13632:6;;18503:4;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;18559:6:::1;18539:13;6421:12:::0;;;6333:108;18539:13:::1;:17;::::0;18555:1:::1;18539:17;:::i;:::-;:26;;;;:::i;:::-;18526:9;:39;;18518:105;;;::::0;-1:-1:-1;;;18518:105:0;;8437:2:1;18518:105:0::1;::::0;::::1;8419:21:1::0;8476:2;8456:18;;;8449:30;8515:34;8495:18;;;8488:62;-1:-1:-1;;;8566:18:1;;;8559:51;8627:19;;18518:105:0::1;8235:417:1::0;18518:105:0::1;18674:3;18654:13;6421:12:::0;;;6333:108;18654:13:::1;:17;::::0;18670:1:::1;18654:17;:::i;:::-;:23;;;;:::i;:::-;18641:9;:36;;18633:101;;;::::0;-1:-1:-1;;;18633:101:0;;8859:2:1;18633:101:0::1;::::0;::::1;8841:21:1::0;8898:2;8878:18;;;8871:30;8937:34;8917:18;;;8910:62;-1:-1:-1;;;8988:18:1;;;8981:50;9048:19;;18633:101:0::1;8657:416:1::0;18633:101:0::1;-1:-1:-1::0;18744:18:0::1;:30:::0;18791:4:::1;::::0;18422:380::o;7082:151::-;-1:-1:-1;;;;;7198:18:0;;;7171:7;7198:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7082:151::o;14365:244::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14454:22:0;::::1;14446:73;;;::::0;-1:-1:-1;;;14446:73:0;;9280:2:1;14446:73:0::1;::::0;::::1;9262:21:1::0;9319:2;9299:18;;;9292:30;9358:34;9338:18;;;9331:62;-1:-1:-1;;;9409:18:1;;;9402:36;9455:19;;14446:73:0::1;9078:402:1::0;14446:73:0::1;14556:6;::::0;14535:38:::1;::::0;-1:-1:-1;;;;;14535:38:0;;::::1;::::0;14556:6:::1;::::0;14535:38:::1;::::0;14556:6:::1;::::0;14535:38:::1;14584:6;:17:::0;;-1:-1:-1;;;;;;14584:17:0::1;-1:-1:-1::0;;;;;14584:17:0;;;::::1;::::0;;;::::1;::::0;;14365:244::o;28176:360::-;13632:6;;-1:-1:-1;;;;;13632:6:0;285:10;13632:22;13624:67;;;;-1:-1:-1;;;13624:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28252:22:0;::::1;28248:124;;13485:6:::0;;28291:48:::1;::::0;-1:-1:-1;;;;;13485:6:0;;;;28317:21:::1;28291:48:::0;::::1;;;::::0;::::1;::::0;;;28317:21;13485:6;28291:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;28248:124;28445:35;::::0;-1:-1:-1;;;28445:35:0;;28474:4:::1;28445:35;::::0;::::1;1821:51:1::0;28409:6:0;;28382:17:::1;::::0;-1:-1:-1;;;;;28445:20:0;::::1;::::0;::::1;::::0;1794:18:1;;28445:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28427:53;;28491:10;-1:-1:-1::0;;;;;28491:19:0::1;;28511:7;13485:6:::0;;-1:-1:-1;;;;;13485:6:0;;13420:79;28511:7:::1;28491:37;::::0;-1:-1:-1;;;;;;28491:37:0::1;::::0;;;;;;-1:-1:-1;;;;;9866:32:1;;;28491:37:0::1;::::0;::::1;9848:51:1::0;9915:18;;;9908:34;;;9821:18;;28491:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28237:299;;13702:1;28176:360:::0;:::o;12535:380::-;-1:-1:-1;;;;;12671:19:0;;12663:68;;;;-1:-1:-1;;;12663:68:0;;10405:2:1;12663:68:0;;;10387:21:1;10444:2;10424:18;;;10417:30;10483:34;10463:18;;;10456:62;-1:-1:-1;;;10534:18:1;;;10527:34;10578:19;;12663:68:0;10203:400:1;12663:68:0;-1:-1:-1;;;;;12750:21:0;;12742:68;;;;-1:-1:-1;;;12742:68:0;;10810:2:1;12742:68:0;;;10792:21:1;10849:2;10829:18;;;10822:30;10888:34;10868:18;;;10861:62;-1:-1:-1;;;10939:18:1;;;10932:32;10981:19;;12742:68:0;10608:398:1;12742:68:0;-1:-1:-1;;;;;12823:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12875:32;;1614:25:1;;;12875:32:0;;1587:18:1;12875:32:0;;;;;;;12535:380;;;:::o;21220:3559::-;-1:-1:-1;;;;;21352:18:0;;21344:68;;;;-1:-1:-1;;;21344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21431:16:0;;21423:64;;;;-1:-1:-1;;;21423:64:0;;;;;;;:::i;:::-;21512:6;21522:1;21512:11;21509:92;;21540:28;21556:4;21562:2;21566:1;21540:15;:28::i;:::-;21220:3559;;;:::o;21509:92::-;21624:14;;;;21621:1261;;;21684:8;;-1:-1:-1;;;;;21676:16:0;;;21684:8;;21676:16;;;;:51;;-1:-1:-1;21719:8:0;;-1:-1:-1;;;;;21713:14:0;;;21719:8;;21713:14;;21676:51;:89;;;;-1:-1:-1;;;;;;21749:16:0;;;;21676:89;:131;;;;-1:-1:-1;;;;;;21786:21:0;;21800:6;21786:21;;21676:131;:161;;;;-1:-1:-1;21829:8:0;;;;21828:9;21676:161;21654:1217;;;21875:13;;;;21871:148;;-1:-1:-1;;;;;21920:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;21949:23:0;;;;;;:19;:23;;;;;;;;21920:52;21912:87;;;;-1:-1:-1;;;21912:87:0;;12023:2:1;21912:87:0;;;12005:21:1;12062:2;12042:18;;;12035:30;-1:-1:-1;;;12081:18:1;;;12074:52;12143:18;;21912:87:0;11821:346:1;21912:87:0;-1:-1:-1;;;;;22082:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;22118:35:0;;;;;;:31;:35;;;;;;;;22117:36;22082:71;22078:778;;;22200:20;;22190:6;:30;;22182:96;;;;-1:-1:-1;;;22182:96:0;;12374:2:1;22182:96:0;;;12356:21:1;12413:2;12393:18;;;12386:30;12452:34;12432:18;;;12425:62;-1:-1:-1;;;12503:18:1;;;12496:51;12564:19;;22182:96:0;12172:417:1;22182:96:0;22339:9;;-1:-1:-1;;;;;6605:18:0;;6578:7;6605:18;;;;;;;;;;;22313:22;;:6;:22;:::i;:::-;:35;;22305:67;;;;-1:-1:-1;;;22305:67:0;;12796:2:1;22305:67:0;;;12778:21:1;12835:2;12815:18;;;12808:30;-1:-1:-1;;;12854:18:1;;;12847:49;12913:18;;22305:67:0;12594:343:1;22305:67:0;22078:778;;;-1:-1:-1;;;;;22466:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;22500:37:0;;;;;;:31;:37;;;;;;;;22499:38;22466:71;22462:394;;;22584:20;;22574:6;:30;;22566:97;;;;-1:-1:-1;;;22566:97:0;;13144:2:1;22566:97:0;;;13126:21:1;13183:2;13163:18;;;13156:30;13222:34;13202:18;;;13195:62;-1:-1:-1;;;13273:18:1;;;13266:52;13335:19;;22566:97:0;12942:418:1;22462:394:0;-1:-1:-1;;;;;22710:35:0;;;;;;:31;:35;;;;;;;;22706:150;;22803:9;;-1:-1:-1;;;;;6605:18:0;;6578:7;6605:18;;;;;;;;;;;22777:22;;:6;:22;:::i;:::-;:35;;22769:67;;;;-1:-1:-1;;;22769:67:0;;12796:2:1;22769:67:0;;;12778:21:1;12835:2;12815:18;;;12808:30;-1:-1:-1;;;12854:18:1;;;12847:49;12913:18;;22769:67:0;12594:343:1;22769:67:0;22945:4;22896:28;6605:18;;;;;;;;;;;;22977:31;6605:18;22977:9;:31::i;:::-;22962:46;;23039:7;:35;;;;-1:-1:-1;23063:11:0;;;;;;;23039:35;:61;;;;-1:-1:-1;23092:8:0;;;;23091:9;23039:61;:110;;;;-1:-1:-1;;;;;;23118:31:0;;;;;;:25;:31;;;;;;;;23117:32;23039:110;:153;;;;-1:-1:-1;;;;;;23167:25:0;;;;;;:19;:25;;;;;;;;23166:26;23039:153;:194;;;;-1:-1:-1;;;;;;23210:23:0;;;;;;:19;:23;;;;;;;;23209:24;23039:194;23021:338;;;23260:8;:15;;-1:-1:-1;;23260:15:0;23271:4;23260:15;;;23304:10;:8;:10::i;:::-;23331:8;:16;;-1:-1:-1;;23331:16:0;;;23021:338;23395:8;;-1:-1:-1;;;;;23504:25:0;;23379:12;23504:25;;;:19;:25;;;;;;23395:8;;;;23394:9;;23504:25;;:52;;-1:-1:-1;;;;;;23533:23:0;;;;;;:19;:23;;;;;;;;23504:52;23501:99;;;-1:-1:-1;23583:5:0;23501:99;23620:12;23724:7;23721:1005;;;23755:11;;23751:1;:15;:46;;;;;23785:12;23770:11;;:27;;23751:46;23748:821;;;-1:-1:-1;;;;;23848:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;23897:1;23881:13;;:17;23848:50;23844:625;;;23954:3;23938:13;;23929:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;23922:35;;24028:13;;24009:16;;24002:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;23980:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;24100:13:0;;24087:10;;24080:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;24064:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;23748:821:0;;-1:-1:-1;23748:821:0;23844:625;-1:-1:-1;;;;;24187:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;24237:1;24222:12;;:16;24187:51;24184:285;;;24294:3;24279:12;;24270:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;24263:34;;24367:12;;24349:15;;24342:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;24320:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;24437:12:0;;24425:9;;24418:16;;:4;:16;:::i;24184:285::-;23748:821;;;24528:25;24536:4;24542:2;24546:6;24528:7;:25::i;:::-;24521:32;;23748:821;24588:8;;24585:93;;24620:42;24636:4;24650;24657;24620:15;:42::i;:::-;24700:14;24710:4;24700:14;;:::i;:::-;;;23721:1005;24738:33;24754:4;24760:2;24764:6;24738:15;:33::i;:::-;21333:3446;;;;21220:3559;;;:::o;20836:188::-;-1:-1:-1;;;;;20919:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;20919:39:0;;;;;;;;;;20976:40;;20919:39;;:31;20976:40;;;20836:188;;:::o;10515:701::-;-1:-1:-1;;;;;10612:18:0;;10604:68;;;;-1:-1:-1;;;10604:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10691:16:0;;10683:64;;;;-1:-1:-1;;;10683:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10780:15:0;;10758:19;10780:15;;;;;;;;;;;10814:21;;;;10806:72;;;;-1:-1:-1;;;10806:72:0;;13567:2:1;10806:72:0;;;13549:21:1;13606:2;13586:18;;;13579:30;13645:34;13625:18;;;13618:62;-1:-1:-1;;;13696:18:1;;;13689:36;13742:19;;10806:72:0;13365:402:1;10806:72:0;-1:-1:-1;;;;;10914:15:0;;;:9;:15;;;;;;;;;;;10932:20;;;10914:38;;11132:13;;;;;;;;;;:23;;;;;;11182:26;;1614:25:1;;;11132:13:0;;11182:26;;1587:18:1;11182:26:0;;;;;;;10593:623;10515:701;;;:::o;24787:226::-;24858:4;24906:18;;24882:20;:42;;:86;;;;;24957:11;;24942:12;:26;24882:86;:123;;;;-1:-1:-1;24988:12:0;24972:29;;;;:15;:29;;;;;;25004:1;-1:-1:-1;24875:130:0;24787:226;-1:-1:-1;;24787:226:0:o;26807:1361::-;26890:4;26846:23;6605:18;;;;;;;;;;;26846:50;;26907:25;26956:12;;26935:18;;:33;;;;:::i;:::-;26907:61;-1:-1:-1;26979:12:0;27015:20;;;:46;;-1:-1:-1;27039:22:0;;27015:46;27012:60;;;27064:7;;;26807:1361::o;27012:60::-;27105:18;;:23;;27126:2;27105:23;:::i;:::-;27087:15;:41;27084:111;;;27160:18;;:23;;27181:2;27160:23;:::i;:::-;27142:41;;27084:111;27264:23;27349:1;27329:17;27308:18;;27290:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;27264:86;-1:-1:-1;27361:26:0;27390:33;27264:86;27390:15;:33;:::i;:::-;27361:62;-1:-1:-1;27472:21:0;27506:36;27361:62;27506:16;:36::i;:::-;27564:18;27585:41;27609:17;27585:21;:41;:::i;:::-;27564:62;;27647:17;27695;27680:12;;27667:10;:25;;;;:::i;:::-;:45;;;;:::i;:::-;27647:65;-1:-1:-1;27733:23:0;27759:22;27647:65;27759:10;:22;:::i;:::-;27823:1;27802:18;:22;;;27835:12;:16;;;27893:9;;27885:45;;27733:48;;-1:-1:-1;;;;;;27893:9:0;;27916;;27885:45;27823:1;27885:45;27916:9;27893;27885:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27872:58:0;;-1:-1:-1;;27954:19:0;;;;;:42;;;27995:1;27977:15;:19;27954:42;27951:210;;;28012:46;28025:15;28042;28012:12;:46::i;:::-;28130:18;;28078:71;;;14184:25:1;;;14240:2;14225:18;;14218:34;;;14268:18;;;14261:34;;;;28078:71:0;;;;;;14172:2:1;28078:71:0;;;27951:210;26835:1333;;;;;;;;;26807:1361::o;26191:608::-;-1:-1:-1;;;;;26295:31:0;;26267:12;26295:31;;;:25;:31;;;;;;;;26292:500;;;26363:3;26349:11;:6;26358:2;26349:11;:::i;:::-;:17;;;;:::i;:::-;26342:24;;26428:12;;26410:15;;26403:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;26381:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;26490:12:0;;26478:9;;26471:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;26455:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;26522:15:0;;-1:-1:-1;;;;;26522:15:0;;;;;;;;26292:500;;;26634:3;26604:11;;26619:1;26604:16;:26;;26628:2;26604:26;;;26623:2;26604:26;26594:37;;;;:6;:37;:::i;:::-;:43;;;;:::i;:::-;26587:50;;26703:13;;26684:16;;26677:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;26655:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;26767:13:0;;26754:10;;26747:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;26731:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;26191:608:0;;;;;:::o;25021:633::-;25173:16;;;25187:1;25173:16;;;;;;;;25149:21;;25173:16;;;;;;;;;;-1:-1:-1;25173:16:0;25149:40;;25218:4;25200;25205:1;25200:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;25200:23:0;;;-1:-1:-1;;;;;25200:23:0;;;;;25244:15;-1:-1:-1;;;;;25244:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25234:4;25239:1;25234:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;25234:32:0;;;-1:-1:-1;;;;;25234:32:0;;;;;25279:62;25296:4;25311:15;25329:11;25279:8;:62::i;:::-;25380:224;;-1:-1:-1;;;25380:224:0;;-1:-1:-1;;;;;25380:15:0;:66;;;;:224;;25461:11;;25487:1;;25531:4;;25558;;25578:15;;25380:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25631:12:0;25615:29;;;;:15;:29;;;;;:31;;;-1:-1:-1;25615:29:0;-1:-1:-1;25615:31:0;;;:::i;:::-;;;;;;25076:578;25021:633;:::o;25666:517::-;25814:62;25831:4;25846:15;25864:11;25814:8;:62::i;:::-;25919:256;;-1:-1:-1;;;25919:256:0;;25991:4;25919:256;;;16292:34:1;16342:18;;;16335:34;;;26037:1:0;16385:18:1;;;16378:34;;;16428:18;;;16421:34;14813:6:0;16471:19:1;;;16464:44;26149:15:0;16524:19:1;;;16517:35;25919:15:0;-1:-1:-1;;;;;25919:31:0;;;;25958:9;;16226:19:1;;25919:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;25666: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;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:118::-;2823:5;2816:13;2809:21;2802:5;2799:32;2789:60;;2845:1;2842;2835:12;2860:309;2925:6;2933;2986:2;2974:9;2965:7;2961:23;2957:32;2954:52;;;3002:1;2999;2992:12;2954:52;3041:9;3028:23;3060:28;3082:5;3060:28;:::i;3363:247::-;3422:6;3475:2;3463:9;3454:7;3450:23;3446:32;3443:52;;;3491:1;3488;3481:12;3443:52;3530:9;3517:23;3549:31;3574:5;3549:31;:::i;3615:382::-;3680:6;3688;3741:2;3729:9;3720:7;3716:23;3712:32;3709:52;;;3757:1;3754;3747:12;3709:52;3796:9;3783:23;3815:31;3840:5;3815:31;:::i;:::-;3865:5;-1:-1:-1;3922:2:1;3907:18;;3894:32;3935:30;3894:32;3935:30;:::i;:::-;3984:7;3974:17;;;3615:382;;;;;:::o;4002:241::-;4058:6;4111:2;4099:9;4090:7;4086:23;4082:32;4079:52;;;4127:1;4124;4117:12;4079:52;4166:9;4153:23;4185:28;4207:5;4185:28;:::i;4248:388::-;4316:6;4324;4377:2;4365:9;4356:7;4352:23;4348:32;4345:52;;;4393:1;4390;4383:12;4345:52;4432:9;4419:23;4451:31;4476:5;4451:31;:::i;:::-;4501:5;-1:-1:-1;4558:2:1;4543:18;;4530:32;4571:33;4530:32;4571:33;:::i;4641:356::-;4843:2;4825:21;;;4862:18;;;4855:30;4921:34;4916:2;4901:18;;4894:62;4988:2;4973:18;;4641:356::o;5002:127::-;5063:10;5058:3;5054:20;5051:1;5044:31;5094:4;5091:1;5084:15;5118:4;5115:1;5108:15;5134:125;5199:9;;;5220:10;;;5217:36;;;5233:18;;:::i;5264:380::-;5343:1;5339:12;;;;5386;;;5407:61;;5461:4;5453:6;5449:17;5439:27;;5407:61;5514:2;5506:6;5503:14;5483:18;5480:38;5477:161;;5560:10;5555:3;5551:20;5548:1;5541:31;5595:4;5592:1;5585:15;5623:4;5620:1;5613:15;5477:161;;5264:380;;;:::o;5649:168::-;5722:9;;;5753;;5770:15;;;5764:22;;5750:37;5740:71;;5791:18;;:::i;5822:217::-;5862:1;5888;5878:132;;5932:10;5927:3;5923:20;5920:1;5913:31;5967:4;5964:1;5957:15;5995:4;5992:1;5985:15;5878:132;-1:-1:-1;6024:9:1;;5822:217::o;6867:128::-;6934:9;;;6955:11;;;6952:37;;;6969:18;;:::i;9485:184::-;9555:6;9608:2;9596:9;9587:7;9583:23;9579:32;9576:52;;;9624:1;9621;9614:12;9576:52;-1:-1:-1;9647:16:1;;9485:184;-1:-1:-1;9485:184:1:o;9953:245::-;10020:6;10073:2;10061:9;10052:7;10048:23;10044:32;10041:52;;;10089:1;10086;10079:12;10041:52;10121:9;10115:16;10140:28;10162:5;10140:28;:::i;11011:401::-;11213:2;11195:21;;;11252:2;11232:18;;;11225:30;11291:34;11286:2;11271:18;;11264:62;-1:-1:-1;;;11357:2:1;11342:18;;11335:35;11402:3;11387:19;;11011:401::o;11417:399::-;11619:2;11601:21;;;11658:2;11638:18;;;11631:30;11697:34;11692:2;11677:18;;11670:62;-1:-1:-1;;;11763:2:1;11748:18;;11741:33;11806:3;11791:19;;11417:399::o;14438:127::-;14499:10;14494:3;14490:20;14487:1;14480:31;14530:4;14527:1;14520:15;14554:4;14551:1;14544:15;14570:251;14640:6;14693:2;14681:9;14672:7;14668:23;14664:32;14661:52;;;14709:1;14706;14699:12;14661:52;14741:9;14735:16;14760:31;14785:5;14760:31;:::i;14826:980::-;15088:4;15136:3;15125:9;15121:19;15167:6;15156:9;15149:25;15193:2;15231:6;15226:2;15215:9;15211:18;15204:34;15274:3;15269:2;15258:9;15254:18;15247:31;15298:6;15333;15327:13;15364:6;15356;15349:22;15402:3;15391:9;15387:19;15380:26;;15441:2;15433:6;15429:15;15415:29;;15462:1;15472:195;15486:6;15483:1;15480:13;15472:195;;;15551:13;;-1:-1:-1;;;;;15547:39:1;15535:52;;15642:15;;;;15607:12;;;;15583:1;15501:9;15472:195;;;-1:-1:-1;;;;;;;15723:32:1;;;;15718:2;15703:18;;15696:60;-1:-1:-1;;;15787:3:1;15772:19;15765:35;15684:3;14826:980;-1:-1:-1;;;14826:980:1:o;15811:135::-;15850:3;15871:17;;;15868:43;;15891:18;;:::i;:::-;-1:-1:-1;15938:1:1;15927:13;;15811:135::o;16563:306::-;16651:6;16659;16667;16720:2;16708:9;16699:7;16695:23;16691:32;16688:52;;;16736:1;16733;16726:12;16688:52;16765:9;16759:16;16749:26;;16815:2;16804:9;16800:18;16794:25;16784:35;;16859:2;16848:9;16844:18;16838:25;16828:35;;16563:306;;;;;:::o

Swarm Source

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