ETH Price: $2,595.45 (-2.53%)

Token

Chunk Norris Coin (CHUNK)
 

Overview

Max Total Supply

100,000,000,000 CHUNK

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
96,058,604.602691370452575073 CHUNK

Value
$0.00
0x658a315ad7e029A26D491C23BcC90438780C1262
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:
ChunkNorrisCoin

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 11: ChunkV2_1.sol
// contracts/Chunk.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10;

import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";
import {IUniswapV2Pair} from "./IUniswapV2Pair.sol";
import {IERC20} from "./IERC20.sol";
import {ERC20} from "./ERC20.sol";
import {Ownable} from "./Ownable.sol";
import {SafeMath} from "./SafeMath.sol";

contract ChunkNorrisCoin is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public teamWallet;
    address public charityWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyTeamFee;
    uint256 public buyLiquidityFee;
    uint256 public buyCharityFee;

    uint256 public sellTotalFees;
    uint256 public sellTeamFee;
    uint256 public sellLiquidityFee;
    uint256 public sellCharityFee;

    uint256 public tokensForTeam;
    uint256 public tokensForLiquidity;
    uint256 public tokensForCharity;

    /******************/

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

    // 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;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event teamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event charityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Chunk Norris Coin", "CHUNK") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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

        uint256 _buyTeamFee = 4;
        uint256 _buyLiquidityFee = 4;
        uint256 _buyCharityFee = 1;

        uint256 _sellTeamFee = 9;
        uint256 _sellLiquidityFee = 4;
        uint256 _sellCharityFee = 1;

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount = 1_000_000_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 2_000_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyTeamFee = _buyTeamFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyCharityFee = _buyCharityFee;
        buyTotalFees = buyTeamFee + buyLiquidityFee + buyCharityFee;

        sellTeamFee = _sellTeamFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellCharityFee = _sellCharityFee;
        sellTotalFees = sellTeamFee + sellLiquidityFee + sellCharityFee;

        teamWallet = address(0xCC96fD3F28c35589b62306B0DDdefe5f4E615E2E); // set as team wallet
        charityWallet = address(0x456D342d2602801a892CC88704498a60840c87b0); // set as charity wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        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 updateBuyFees(
        uint256 _teamFee,
        uint256 _liquidityFee,
        uint256 _charityFee
    ) external onlyOwner {
        buyTeamFee = _teamFee;
        buyLiquidityFee = _liquidityFee;
        buyCharityFee = _charityFee;
        buyTotalFees = buyTeamFee + buyLiquidityFee + buyCharityFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _teamFee,
        uint256 _liquidityFee,
        uint256 _charityFee
    ) external onlyOwner {
        sellTeamFee = _teamFee;
        sellLiquidityFee = _liquidityFee;
        sellCharityFee = _charityFee;
        sellTotalFees = sellTeamFee + sellLiquidityFee + sellCharityFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateTeamWallet(address newTeamWallet)
        external
        onlyOwner
    {
        emit teamWalletUpdated(newTeamWallet, teamWallet);
        teamWallet = newTeamWallet;
    }

    function updateCharityWallet(address newWallet) external onlyOwner {
        emit charityWalletUpdated(newWallet, charityWallet);
        charityWallet = newWallet;
    }

    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 != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //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 = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        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) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

    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 swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForTeam +
            tokensForCharity;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(
            totalTokensToSwap
        );
        uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForTeam - ethForCharity;

        tokensForLiquidity = 0;
        tokensForTeam = 0;
        tokensForCharity = 0;

        (success, ) = address(charityWallet).call{value: ethForCharity}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(teamWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

File 2 of 11: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 3 of 11: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

File 4 of 11: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

File 5 of 11: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 6 of 11: IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

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

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

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

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

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

File 7 of 11: IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 8 of 11: IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

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

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

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

File 9 of 11: IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 10 of 11: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 11 of 11: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"charityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"buyCharityFee","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":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellCharityFee","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":"sellTeamFee","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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","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":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateCharityWallet","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":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_charityFee","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"},{"inputs":[{"internalType":"address","name":"newTeamWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805490911690911790553480156200004d57600080fd5b50604080518082018252601181527021b43ab735902737b93934b99021b7b4b760791b6020808301918252835180850190945260058452644348554e4b60d81b908401528151919291620000a491600391620006b3565b508051620000ba906004906020840190620006b3565b505050620000d7620000d16200040160201b60201c565b62000405565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f981600162000457565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000144573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016a919062000759565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001de919062000759565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000252919062000759565b6001600160a01b031660a08190526200026d90600162000457565b60a0516200027d906001620004d0565b6b033b2e3c9fd0803ce80000006008556b06765c793fa10079d0000000600a556004806001600982826c01431e0fae6d7217caa0000000612710620002c4826005620007a1565b620002d09190620007c3565b60095560158790556016869055601785905584620002ef8789620007e6565b620002fb9190620007e6565b6014556019849055601a839055601b829055816200031a8486620007e6565b620003269190620007e6565b601855600680546001600160a01b031990811673cc96fd3f28c35589b62306b0dddefe5f4e615e2e179091556007805490911673456d342d2602801a892cc88704498a60840c87b017905562000390620003886005546001600160a01b031690565b600162000524565b6200039d30600162000524565b620003ac61dead600162000524565b620003cb620003c36005546001600160a01b031690565b600162000457565b620003d830600162000457565b620003e761dead600162000457565b620003f33382620005ce565b50505050505050506200083e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004a65760405162461bcd60e51b8152602060048201819052602482015260008051602062003a1383398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200056f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003a1383398151915260448201526064016200049d565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006265760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200049d565b80600260008282546200063a9190620007e6565b90915550506001600160a01b0382166000908152602081905260408120805483929062000669908490620007e6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006c19062000801565b90600052602060002090601f016020900481019282620006e5576000855562000730565b82601f106200070057805160ff191683800117855562000730565b8280016001018555821562000730579182015b828111156200073057825182559160200191906001019062000713565b506200073e92915062000742565b5090565b5b808211156200073e576000815560010162000743565b6000602082840312156200076c57600080fd5b81516001600160a01b03811681146200078457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007be57620007be6200078b565b500290565b600082620007e157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007fc57620007fc6200078b565b500190565b600181811c908216806200081657607f821691505b602082108114156200083857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161314d620008c66000396000818161061a015281816111920152818161181d015281816118b8015281816118e401528181611d130152818161288501528181612927015261295301526000818161047d01528181611cd501528181612a5d01528181612b1601528181612b5201528181612bcc0152612c29015261314d6000f3fe6080604052600436106103b15760003560e01c80638095d564116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610ad7578063f8b45b0514610aed578063fde83a3414610b03578063fe72b27a14610b1957600080fd5b8063e2f4560514610a76578063e884f26014610a8c578063f11a24d314610aa1578063f2fde38b14610ab757600080fd5b8063d257b34f116100dc578063d257b34f146109e4578063d729715f14610a04578063d85ba06314610a1a578063dd62ed3e14610a3057600080fd5b8063c17b5b8c14610974578063c18bc19514610994578063c876d0b9146109b4578063c8c8ebe4146109ce57600080fd5b80639ec22c0e11610185578063a9059cbb11610154578063a9059cbb146108e5578063b62496f514610905578063bbc0c74214610935578063c02466681461095457600080fd5b80639ec22c0e14610883578063a1dc92bc14610899578063a457c2d7146108af578063a4c82a00146108cf57600080fd5b8063924de9b7116101c1578063924de9b71461081857806395d89b41146108385780639a7a23d61461084d5780639c2e4ac61461086d57600080fd5b80638095d564146107c55780638a8c523c146107e55780638da5cb5b146107fa57600080fd5b806339509351116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146107505780637571336a146107655780637b208769146107855780637cb332bb146107a557600080fd5b80636ddd1713146106c557806370a08231146106e5578063715018a61461071b578063730c18881461073057600080fd5b80634a62bb65116102a65780634a62bb651461063c5780634fbee19314610656578063599270441461068f5780636a486a8e146106af57600080fd5b806339509351146105b25780633e65d4aa146105d257806344249f04146105f257806349bd5a5e1461060857600080fd5b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105505780632c3e486c146105665780632e82f1a01461057c578063313ce5671461059657600080fd5b8063199ffc72146104e25780631a8145bb146104f8578063203e727e1461050e57806323b872dd1461053057600080fd5b806310d5de531161038b57806310d5de531461043c5780631694505e1461046b57806318160ddd146104b7578063184c16c5146104cc57600080fd5b806306fdde03146103bd578063095ea7b3146103e85780630d7f14411461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b39565b6040516103df9190612ca7565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d11565b610bcb565b60405190151581526020016103df565b34801561042457600080fd5b5061042e601b5481565b6040519081526020016103df565b34801561044857600080fd5b50610408610457366004612d3d565b602080526000908152604090205460ff1681565b34801561047757600080fd5b5061049f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103df565b3480156104c357600080fd5b5060025461042e565b3480156104d857600080fd5b5061042e600f5481565b3480156104ee57600080fd5b5061042e600b5481565b34801561050457600080fd5b5061042e601d5481565b34801561051a57600080fd5b5061052e610529366004612d5a565b610be3565b005b34801561053c57600080fd5b5061040861054b366004612d73565b610cc9565b34801561055c57600080fd5b5061049f61dead81565b34801561057257600080fd5b5061042e600d5481565b34801561058857600080fd5b50600c546104089060ff1681565b3480156105a257600080fd5b50604051601281526020016103df565b3480156105be57600080fd5b506104086105cd366004612d11565b610ced565b3480156105de57600080fd5b5061052e6105ed366004612d3d565b610d2c565b3480156105fe57600080fd5b5061042e601e5481565b34801561061457600080fd5b5061049f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561064857600080fd5b506011546104089060ff1681565b34801561066257600080fd5b50610408610671366004612d3d565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b5060065461049f906001600160a01b031681565b3480156106bb57600080fd5b5061042e60185481565b3480156106d157600080fd5b506011546104089062010000900460ff1681565b3480156106f157600080fd5b5061042e610700366004612d3d565b6001600160a01b031660009081526020819052604090205490565b34801561072757600080fd5b5061052e610db3565b34801561073c57600080fd5b5061052e61074b366004612dc4565b610de9565b34801561075c57600080fd5b50610408610f12565b34801561077157600080fd5b5061052e610780366004612df9565b610f4f565b34801561079157600080fd5b5060075461049f906001600160a01b031681565b3480156107b157600080fd5b5061052e6107c0366004612d3d565b610fa3565b3480156107d157600080fd5b5061052e6107e0366004612e2e565b61102a565b3480156107f157600080fd5b5061052e6110d0565b34801561080657600080fd5b506005546001600160a01b031661049f565b34801561082457600080fd5b5061052e610833366004612e5a565b611111565b34801561084457600080fd5b506103d2611157565b34801561085957600080fd5b5061052e610868366004612df9565b611166565b34801561087957600080fd5b5061042e60155481565b34801561088f57600080fd5b5061042e60105481565b3480156108a557600080fd5b5061042e60175481565b3480156108bb57600080fd5b506104086108ca366004612d11565b611246565b3480156108db57600080fd5b5061042e600e5481565b3480156108f157600080fd5b50610408610900366004612d11565b6112d8565b34801561091157600080fd5b50610408610920366004612d3d565b60216020526000908152604090205460ff1681565b34801561094157600080fd5b5060115461040890610100900460ff1681565b34801561096057600080fd5b5061052e61096f366004612df9565b6112e6565b34801561098057600080fd5b5061052e61098f366004612e2e565b61136f565b3480156109a057600080fd5b5061052e6109af366004612d5a565b611412565b3480156109c057600080fd5b506013546104089060ff1681565b3480156109da57600080fd5b5061042e60085481565b3480156109f057600080fd5b506104086109ff366004612d5a565b6114e3565b348015610a1057600080fd5b5061042e60195481565b348015610a2657600080fd5b5061042e60145481565b348015610a3c57600080fd5b5061042e610a4b366004612e75565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a8257600080fd5b5061042e60095481565b348015610a9857600080fd5b5061040861163a565b348015610aad57600080fd5b5061042e60165481565b348015610ac357600080fd5b5061052e610ad2366004612d3d565b611677565b348015610ae357600080fd5b5061042e601a5481565b348015610af957600080fd5b5061042e600a5481565b348015610b0f57600080fd5b5061042e601c5481565b348015610b2557600080fd5b50610408610b34366004612d5a565b611712565b606060038054610b4890612eae565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490612eae565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b600033610bd981858561198c565b5060019392505050565b6005546001600160a01b03163314610c165760405162461bcd60e51b8152600401610c0d90612ee9565b60405180910390fd5b670de0b6b3a76400006103e8610c2b60025490565b610c36906001612f34565b610c409190612f53565b610c4a9190612f53565b811015610cb15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c0d565b610cc381670de0b6b3a7640000612f34565b60085550565b600033610cd7858285611ab0565b610ce2858585611b42565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610bd99082908690610d27908790612f75565b61198c565b6005546001600160a01b03163314610d565760405162461bcd60e51b8152600401610c0d90612ee9565b6007546040516001600160a01b03918216918316907f1a4f44b51831a64aad0bd522439770971a9d7bf02a8590ed23787527054e258190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ddd5760405162461bcd60e51b8152600401610c0d90612ee9565b610de76000612417565b565b6005546001600160a01b03163314610e135760405162461bcd60e51b8152600401610c0d90612ee9565b610258831015610e815760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c0d565b6103e88211158015610e91575060015b610ef65760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c0d565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f3f5760405162461bcd60e51b8152600401610c0d90612ee9565b506011805460ff19169055600190565b6005546001600160a01b03163314610f795760405162461bcd60e51b8152600401610c0d90612ee9565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fcd5760405162461bcd60e51b8152600401610c0d90612ee9565b6006546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110545760405162461bcd60e51b8152600401610c0d90612ee9565b6015839055601682905560178190558061106e8385612f75565b6110789190612f75565b601481815510156110cb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c0d565b505050565b6005546001600160a01b031633146110fa5760405162461bcd60e51b8152600401610c0d90612ee9565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610c0d90612ee9565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4890612eae565b6005546001600160a01b031633146111905760405162461bcd60e51b8152600401610c0d90612ee9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156112385760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c0d565b6112428282612469565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156112cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c0d565b610ce2828686840361198c565b600033610bd9818585611b42565b6005546001600160a01b031633146113105760405162461bcd60e51b8152600401610c0d90612ee9565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113995760405162461bcd60e51b8152600401610c0d90612ee9565b6019839055601a829055601b819055806113b38385612f75565b6113bd9190612f75565b6018819055601910156110cb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c0d565b6005546001600160a01b0316331461143c5760405162461bcd60e51b8152600401610c0d90612ee9565b670de0b6b3a76400006103e861145160025490565b61145c906005612f34565b6114669190612f53565b6114709190612f53565b8110156114cb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c0d565b6114dd81670de0b6b3a7640000612f34565b600a5550565b6005546000906001600160a01b031633146115105760405162461bcd60e51b8152600401610c0d90612ee9565b620186a061151d60025490565b611528906001612f34565b6115329190612f53565b82101561159f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c0d565b6103e86115ab60025490565b6115b6906005612f34565b6115c09190612f53565b82111561162c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c0d565b50600981905560015b919050565b6005546000906001600160a01b031633146116675760405162461bcd60e51b8152600401610c0d90612ee9565b506013805460ff19169055600190565b6005546001600160a01b031633146116a15760405162461bcd60e51b8152600401610c0d90612ee9565b6001600160a01b0381166117065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0d565b61170f81612417565b50565b6005546000906001600160a01b0316331461173f5760405162461bcd60e51b8152600401610c0d90612ee9565b600f5460105461174f9190612f75565b421161179d5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c0d565b6103e88211156118025760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c0d565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa15801561186d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118919190612f8d565b905060006118ab6127106118a584876124bd565b906124d0565b905080156118e0576118e07f000000000000000000000000000000000000000000000000000000000000000061dead836124dc565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561194057600080fd5b505af1158015611954573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119ee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c0d565b6001600160a01b038216611a4f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c0d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611b3c5781811015611b2f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c0d565b611b3c848484840361198c565b50505050565b6001600160a01b038316611b685760405162461bcd60e51b8152600401610c0d90612fa6565b6001600160a01b038216611b8e5760405162461bcd60e51b8152600401610c0d90612feb565b80611b9f576110cb838360006124dc565b60115460ff1615612059576005546001600160a01b03848116911614801590611bd657506005546001600160a01b03838116911614155b8015611bea57506001600160a01b03821615155b8015611c0157506001600160a01b03821661dead14155b8015611c175750600554600160a01b900460ff16155b1561205957601154610100900460ff16611caf576001600160a01b0383166000908152601f602052604090205460ff1680611c6a57506001600160a01b0382166000908152601f602052604090205460ff165b611caf5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c0d565b60135460ff1615611df6576005546001600160a01b03838116911614801590611d0a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d4857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611df657326000908152601260205260409020544311611de35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c0d565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e3657506001600160a01b038216600090815260208052604090205460ff16155b15611f1a57600854811115611eab5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c0d565b600a546001600160a01b038316600090815260208190526040902054611ed19083612f75565b1115611f155760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c0d565b612059565b6001600160a01b03821660009081526021602052604090205460ff168015611f5a57506001600160a01b038316600090815260208052604090205460ff16155b15611fd057600854811115611f155760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c0d565b6001600160a01b038216600090815260208052604090205460ff1661205957600a546001600160a01b0383166000908152602081905260409020546120159083612f75565b11156120595760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c0d565b3060009081526020819052604090205460095481108015908190612085575060115462010000900460ff165b801561209b5750600554600160a01b900460ff16155b80156120c057506001600160a01b03851660009081526021602052604090205460ff16155b80156120e557506001600160a01b0385166000908152601f602052604090205460ff16155b801561210a57506001600160a01b0384166000908152601f602052604090205460ff16155b15612138576005805460ff60a01b1916600160a01b17905561212a612630565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561216a57506001600160a01b03841660009081526021602052604090205460ff165b80156121785750600c5460ff165b80156121935750600d54600e5461218f9190612f75565b4210155b80156121b857506001600160a01b0385166000908152601f602052604090205460ff16155b156121c7576121c561286a565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061221557506001600160a01b0385166000908152601f602052604090205460ff165b1561221e575060005b60008115612403576001600160a01b03861660009081526021602052604090205460ff16801561225057506000601854115b156123085761226f60646118a5601854886124bd90919063ffffffff16565b9050601854601a54826122829190612f34565b61228c9190612f53565b601d600082825461229d9190612f75565b9091555050601854601b546122b29083612f34565b6122bc9190612f53565b601e60008282546122cd9190612f75565b90915550506018546019546122e29083612f34565b6122ec9190612f53565b601c60008282546122fd9190612f75565b909155506123e59050565b6001600160a01b03871660009081526021602052604090205460ff16801561233257506000601454115b156123e55761235160646118a5601454886124bd90919063ffffffff16565b9050601454601654826123649190612f34565b61236e9190612f53565b601d600082825461237f9190612f75565b90915550506014546017546123949083612f34565b61239e9190612f53565b601e60008282546123af9190612f75565b90915550506014546015546123c49083612f34565b6123ce9190612f53565b601c60008282546123df9190612f75565b90915550505b80156123f6576123f68730836124dc565b612400818661302e565b94505b61240e8787876124dc565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124c98284612f34565b9392505050565b60006124c98284612f53565b6001600160a01b0383166125025760405162461bcd60e51b8152600401610c0d90612fa6565b6001600160a01b0382166125285760405162461bcd60e51b8152600401610c0d90612feb565b6001600160a01b038316600090815260208190526040902054818110156125a05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c0d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125d7908490612f75565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161262391815260200190565b60405180910390a3611b3c565b3060009081526020819052604081205490506000601e54601c54601d546126579190612f75565b6126619190612f75565b90506000821580612670575081155b1561267a57505050565b600954612688906014612f34565b8311156126a05760095461269d906014612f34565b92505b6000600283601d54866126b39190612f34565b6126bd9190612f53565b6126c79190612f53565b905060006126d585836129fa565b9050476126e182612a06565b60006126ed47836129fa565b9050600061270a876118a5601c54856124bd90919063ffffffff16565b90506000612727886118a5601e54866124bd90919063ffffffff16565b9050600081612736848661302e565b612740919061302e565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461279d576040519150601f19603f3d011682016040523d82523d6000602084013e6127a2565b606091505b509098505086158015906127b65750600081115b15612809576127c58782612bc6565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612856576040519150601f19603f3d011682016040523d82523d6000602084013e61285b565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa1580156128d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fb9190612f8d565b9050600061291a6127106118a5600b54856124bd90919063ffffffff16565b9050801561294f5761294f7f000000000000000000000000000000000000000000000000000000000000000061dead836124dc565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129af57600080fd5b505af11580156129c3573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124c9828461302e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a3b57612a3b613045565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ab9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612add919061305b565b81600181518110612af057612af0613045565b60200260200101906001600160a01b031690816001600160a01b031681525050612b3b307f00000000000000000000000000000000000000000000000000000000000000008461198c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b90908590600090869030904290600401613078565b600060405180830381600087803b158015612baa57600080fd5b505af1158015612bbe573d6000803e3d6000fd5b505050505050565b612bf1307f00000000000000000000000000000000000000000000000000000000000000008461198c565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c7b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ca091906130e9565b5050505050565b600060208083528351808285015260005b81811015612cd457858101830151858201604001528201612cb8565b81811115612ce6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461170f57600080fd5b60008060408385031215612d2457600080fd5b8235612d2f81612cfc565b946020939093013593505050565b600060208284031215612d4f57600080fd5b81356124c981612cfc565b600060208284031215612d6c57600080fd5b5035919050565b600080600060608486031215612d8857600080fd5b8335612d9381612cfc565b92506020840135612da381612cfc565b929592945050506040919091013590565b8035801515811461163557600080fd5b600080600060608486031215612dd957600080fd5b8335925060208401359150612df060408501612db4565b90509250925092565b60008060408385031215612e0c57600080fd5b8235612e1781612cfc565b9150612e2560208401612db4565b90509250929050565b600080600060608486031215612e4357600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e6c57600080fd5b6124c982612db4565b60008060408385031215612e8857600080fd5b8235612e9381612cfc565b91506020830135612ea381612cfc565b809150509250929050565b600181811c90821680612ec257607f821691505b60208210811415612ee357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4e57612f4e612f1e565b500290565b600082612f7057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f8857612f88612f1e565b500190565b600060208284031215612f9f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561304057613040612f1e565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561306d57600080fd5b81516124c981612cfc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130c85784516001600160a01b0316835293830193918301916001016130a3565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130fe57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204310f17bc7c596102af311444302dfc5b5e1b97696b0f1cf5ad119c18cb18bb964736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638095d564116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610ad7578063f8b45b0514610aed578063fde83a3414610b03578063fe72b27a14610b1957600080fd5b8063e2f4560514610a76578063e884f26014610a8c578063f11a24d314610aa1578063f2fde38b14610ab757600080fd5b8063d257b34f116100dc578063d257b34f146109e4578063d729715f14610a04578063d85ba06314610a1a578063dd62ed3e14610a3057600080fd5b8063c17b5b8c14610974578063c18bc19514610994578063c876d0b9146109b4578063c8c8ebe4146109ce57600080fd5b80639ec22c0e11610185578063a9059cbb11610154578063a9059cbb146108e5578063b62496f514610905578063bbc0c74214610935578063c02466681461095457600080fd5b80639ec22c0e14610883578063a1dc92bc14610899578063a457c2d7146108af578063a4c82a00146108cf57600080fd5b8063924de9b7116101c1578063924de9b71461081857806395d89b41146108385780639a7a23d61461084d5780639c2e4ac61461086d57600080fd5b80638095d564146107c55780638a8c523c146107e55780638da5cb5b146107fa57600080fd5b806339509351116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146107505780637571336a146107655780637b208769146107855780637cb332bb146107a557600080fd5b80636ddd1713146106c557806370a08231146106e5578063715018a61461071b578063730c18881461073057600080fd5b80634a62bb65116102a65780634a62bb651461063c5780634fbee19314610656578063599270441461068f5780636a486a8e146106af57600080fd5b806339509351146105b25780633e65d4aa146105d257806344249f04146105f257806349bd5a5e1461060857600080fd5b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105505780632c3e486c146105665780632e82f1a01461057c578063313ce5671461059657600080fd5b8063199ffc72146104e25780631a8145bb146104f8578063203e727e1461050e57806323b872dd1461053057600080fd5b806310d5de531161038b57806310d5de531461043c5780631694505e1461046b57806318160ddd146104b7578063184c16c5146104cc57600080fd5b806306fdde03146103bd578063095ea7b3146103e85780630d7f14411461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b39565b6040516103df9190612ca7565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d11565b610bcb565b60405190151581526020016103df565b34801561042457600080fd5b5061042e601b5481565b6040519081526020016103df565b34801561044857600080fd5b50610408610457366004612d3d565b602080526000908152604090205460ff1681565b34801561047757600080fd5b5061049f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103df565b3480156104c357600080fd5b5060025461042e565b3480156104d857600080fd5b5061042e600f5481565b3480156104ee57600080fd5b5061042e600b5481565b34801561050457600080fd5b5061042e601d5481565b34801561051a57600080fd5b5061052e610529366004612d5a565b610be3565b005b34801561053c57600080fd5b5061040861054b366004612d73565b610cc9565b34801561055c57600080fd5b5061049f61dead81565b34801561057257600080fd5b5061042e600d5481565b34801561058857600080fd5b50600c546104089060ff1681565b3480156105a257600080fd5b50604051601281526020016103df565b3480156105be57600080fd5b506104086105cd366004612d11565b610ced565b3480156105de57600080fd5b5061052e6105ed366004612d3d565b610d2c565b3480156105fe57600080fd5b5061042e601e5481565b34801561061457600080fd5b5061049f7f0000000000000000000000007698b40860cb09282514fbb441041e6615e3890881565b34801561064857600080fd5b506011546104089060ff1681565b34801561066257600080fd5b50610408610671366004612d3d565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b5060065461049f906001600160a01b031681565b3480156106bb57600080fd5b5061042e60185481565b3480156106d157600080fd5b506011546104089062010000900460ff1681565b3480156106f157600080fd5b5061042e610700366004612d3d565b6001600160a01b031660009081526020819052604090205490565b34801561072757600080fd5b5061052e610db3565b34801561073c57600080fd5b5061052e61074b366004612dc4565b610de9565b34801561075c57600080fd5b50610408610f12565b34801561077157600080fd5b5061052e610780366004612df9565b610f4f565b34801561079157600080fd5b5060075461049f906001600160a01b031681565b3480156107b157600080fd5b5061052e6107c0366004612d3d565b610fa3565b3480156107d157600080fd5b5061052e6107e0366004612e2e565b61102a565b3480156107f157600080fd5b5061052e6110d0565b34801561080657600080fd5b506005546001600160a01b031661049f565b34801561082457600080fd5b5061052e610833366004612e5a565b611111565b34801561084457600080fd5b506103d2611157565b34801561085957600080fd5b5061052e610868366004612df9565b611166565b34801561087957600080fd5b5061042e60155481565b34801561088f57600080fd5b5061042e60105481565b3480156108a557600080fd5b5061042e60175481565b3480156108bb57600080fd5b506104086108ca366004612d11565b611246565b3480156108db57600080fd5b5061042e600e5481565b3480156108f157600080fd5b50610408610900366004612d11565b6112d8565b34801561091157600080fd5b50610408610920366004612d3d565b60216020526000908152604090205460ff1681565b34801561094157600080fd5b5060115461040890610100900460ff1681565b34801561096057600080fd5b5061052e61096f366004612df9565b6112e6565b34801561098057600080fd5b5061052e61098f366004612e2e565b61136f565b3480156109a057600080fd5b5061052e6109af366004612d5a565b611412565b3480156109c057600080fd5b506013546104089060ff1681565b3480156109da57600080fd5b5061042e60085481565b3480156109f057600080fd5b506104086109ff366004612d5a565b6114e3565b348015610a1057600080fd5b5061042e60195481565b348015610a2657600080fd5b5061042e60145481565b348015610a3c57600080fd5b5061042e610a4b366004612e75565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a8257600080fd5b5061042e60095481565b348015610a9857600080fd5b5061040861163a565b348015610aad57600080fd5b5061042e60165481565b348015610ac357600080fd5b5061052e610ad2366004612d3d565b611677565b348015610ae357600080fd5b5061042e601a5481565b348015610af957600080fd5b5061042e600a5481565b348015610b0f57600080fd5b5061042e601c5481565b348015610b2557600080fd5b50610408610b34366004612d5a565b611712565b606060038054610b4890612eae565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490612eae565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b600033610bd981858561198c565b5060019392505050565b6005546001600160a01b03163314610c165760405162461bcd60e51b8152600401610c0d90612ee9565b60405180910390fd5b670de0b6b3a76400006103e8610c2b60025490565b610c36906001612f34565b610c409190612f53565b610c4a9190612f53565b811015610cb15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c0d565b610cc381670de0b6b3a7640000612f34565b60085550565b600033610cd7858285611ab0565b610ce2858585611b42565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610bd99082908690610d27908790612f75565b61198c565b6005546001600160a01b03163314610d565760405162461bcd60e51b8152600401610c0d90612ee9565b6007546040516001600160a01b03918216918316907f1a4f44b51831a64aad0bd522439770971a9d7bf02a8590ed23787527054e258190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ddd5760405162461bcd60e51b8152600401610c0d90612ee9565b610de76000612417565b565b6005546001600160a01b03163314610e135760405162461bcd60e51b8152600401610c0d90612ee9565b610258831015610e815760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c0d565b6103e88211158015610e91575060015b610ef65760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c0d565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f3f5760405162461bcd60e51b8152600401610c0d90612ee9565b506011805460ff19169055600190565b6005546001600160a01b03163314610f795760405162461bcd60e51b8152600401610c0d90612ee9565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fcd5760405162461bcd60e51b8152600401610c0d90612ee9565b6006546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110545760405162461bcd60e51b8152600401610c0d90612ee9565b6015839055601682905560178190558061106e8385612f75565b6110789190612f75565b601481815510156110cb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c0d565b505050565b6005546001600160a01b031633146110fa5760405162461bcd60e51b8152600401610c0d90612ee9565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610c0d90612ee9565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4890612eae565b6005546001600160a01b031633146111905760405162461bcd60e51b8152600401610c0d90612ee9565b7f0000000000000000000000007698b40860cb09282514fbb441041e6615e389086001600160a01b0316826001600160a01b031614156112385760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c0d565b6112428282612469565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156112cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c0d565b610ce2828686840361198c565b600033610bd9818585611b42565b6005546001600160a01b031633146113105760405162461bcd60e51b8152600401610c0d90612ee9565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113995760405162461bcd60e51b8152600401610c0d90612ee9565b6019839055601a829055601b819055806113b38385612f75565b6113bd9190612f75565b6018819055601910156110cb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c0d565b6005546001600160a01b0316331461143c5760405162461bcd60e51b8152600401610c0d90612ee9565b670de0b6b3a76400006103e861145160025490565b61145c906005612f34565b6114669190612f53565b6114709190612f53565b8110156114cb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c0d565b6114dd81670de0b6b3a7640000612f34565b600a5550565b6005546000906001600160a01b031633146115105760405162461bcd60e51b8152600401610c0d90612ee9565b620186a061151d60025490565b611528906001612f34565b6115329190612f53565b82101561159f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c0d565b6103e86115ab60025490565b6115b6906005612f34565b6115c09190612f53565b82111561162c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c0d565b50600981905560015b919050565b6005546000906001600160a01b031633146116675760405162461bcd60e51b8152600401610c0d90612ee9565b506013805460ff19169055600190565b6005546001600160a01b031633146116a15760405162461bcd60e51b8152600401610c0d90612ee9565b6001600160a01b0381166117065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0d565b61170f81612417565b50565b6005546000906001600160a01b0316331461173f5760405162461bcd60e51b8152600401610c0d90612ee9565b600f5460105461174f9190612f75565b421161179d5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c0d565b6103e88211156118025760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c0d565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007698b40860cb09282514fbb441041e6615e3890816600482015260009030906370a0823190602401602060405180830381865afa15801561186d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118919190612f8d565b905060006118ab6127106118a584876124bd565b906124d0565b905080156118e0576118e07f0000000000000000000000007698b40860cb09282514fbb441041e6615e3890861dead836124dc565b60007f0000000000000000000000007698b40860cb09282514fbb441041e6615e389089050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561194057600080fd5b505af1158015611954573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119ee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c0d565b6001600160a01b038216611a4f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c0d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611b3c5781811015611b2f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c0d565b611b3c848484840361198c565b50505050565b6001600160a01b038316611b685760405162461bcd60e51b8152600401610c0d90612fa6565b6001600160a01b038216611b8e5760405162461bcd60e51b8152600401610c0d90612feb565b80611b9f576110cb838360006124dc565b60115460ff1615612059576005546001600160a01b03848116911614801590611bd657506005546001600160a01b03838116911614155b8015611bea57506001600160a01b03821615155b8015611c0157506001600160a01b03821661dead14155b8015611c175750600554600160a01b900460ff16155b1561205957601154610100900460ff16611caf576001600160a01b0383166000908152601f602052604090205460ff1680611c6a57506001600160a01b0382166000908152601f602052604090205460ff165b611caf5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c0d565b60135460ff1615611df6576005546001600160a01b03838116911614801590611d0a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d4857507f0000000000000000000000007698b40860cb09282514fbb441041e6615e389086001600160a01b0316826001600160a01b031614155b15611df657326000908152601260205260409020544311611de35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c0d565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e3657506001600160a01b038216600090815260208052604090205460ff16155b15611f1a57600854811115611eab5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c0d565b600a546001600160a01b038316600090815260208190526040902054611ed19083612f75565b1115611f155760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c0d565b612059565b6001600160a01b03821660009081526021602052604090205460ff168015611f5a57506001600160a01b038316600090815260208052604090205460ff16155b15611fd057600854811115611f155760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c0d565b6001600160a01b038216600090815260208052604090205460ff1661205957600a546001600160a01b0383166000908152602081905260409020546120159083612f75565b11156120595760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c0d565b3060009081526020819052604090205460095481108015908190612085575060115462010000900460ff165b801561209b5750600554600160a01b900460ff16155b80156120c057506001600160a01b03851660009081526021602052604090205460ff16155b80156120e557506001600160a01b0385166000908152601f602052604090205460ff16155b801561210a57506001600160a01b0384166000908152601f602052604090205460ff16155b15612138576005805460ff60a01b1916600160a01b17905561212a612630565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561216a57506001600160a01b03841660009081526021602052604090205460ff165b80156121785750600c5460ff165b80156121935750600d54600e5461218f9190612f75565b4210155b80156121b857506001600160a01b0385166000908152601f602052604090205460ff16155b156121c7576121c561286a565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061221557506001600160a01b0385166000908152601f602052604090205460ff165b1561221e575060005b60008115612403576001600160a01b03861660009081526021602052604090205460ff16801561225057506000601854115b156123085761226f60646118a5601854886124bd90919063ffffffff16565b9050601854601a54826122829190612f34565b61228c9190612f53565b601d600082825461229d9190612f75565b9091555050601854601b546122b29083612f34565b6122bc9190612f53565b601e60008282546122cd9190612f75565b90915550506018546019546122e29083612f34565b6122ec9190612f53565b601c60008282546122fd9190612f75565b909155506123e59050565b6001600160a01b03871660009081526021602052604090205460ff16801561233257506000601454115b156123e55761235160646118a5601454886124bd90919063ffffffff16565b9050601454601654826123649190612f34565b61236e9190612f53565b601d600082825461237f9190612f75565b90915550506014546017546123949083612f34565b61239e9190612f53565b601e60008282546123af9190612f75565b90915550506014546015546123c49083612f34565b6123ce9190612f53565b601c60008282546123df9190612f75565b90915550505b80156123f6576123f68730836124dc565b612400818661302e565b94505b61240e8787876124dc565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124c98284612f34565b9392505050565b60006124c98284612f53565b6001600160a01b0383166125025760405162461bcd60e51b8152600401610c0d90612fa6565b6001600160a01b0382166125285760405162461bcd60e51b8152600401610c0d90612feb565b6001600160a01b038316600090815260208190526040902054818110156125a05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c0d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125d7908490612f75565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161262391815260200190565b60405180910390a3611b3c565b3060009081526020819052604081205490506000601e54601c54601d546126579190612f75565b6126619190612f75565b90506000821580612670575081155b1561267a57505050565b600954612688906014612f34565b8311156126a05760095461269d906014612f34565b92505b6000600283601d54866126b39190612f34565b6126bd9190612f53565b6126c79190612f53565b905060006126d585836129fa565b9050476126e182612a06565b60006126ed47836129fa565b9050600061270a876118a5601c54856124bd90919063ffffffff16565b90506000612727886118a5601e54866124bd90919063ffffffff16565b9050600081612736848661302e565b612740919061302e565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461279d576040519150601f19603f3d011682016040523d82523d6000602084013e6127a2565b606091505b509098505086158015906127b65750600081115b15612809576127c58782612bc6565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612856576040519150601f19603f3d011682016040523d82523d6000602084013e61285b565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007698b40860cb09282514fbb441041e6615e38908166004820152600090819030906370a0823190602401602060405180830381865afa1580156128d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fb9190612f8d565b9050600061291a6127106118a5600b54856124bd90919063ffffffff16565b9050801561294f5761294f7f0000000000000000000000007698b40860cb09282514fbb441041e6615e3890861dead836124dc565b60007f0000000000000000000000007698b40860cb09282514fbb441041e6615e389089050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129af57600080fd5b505af11580156129c3573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124c9828461302e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a3b57612a3b613045565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ab9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612add919061305b565b81600181518110612af057612af0613045565b60200260200101906001600160a01b031690816001600160a01b031681525050612b3b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461198c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b90908590600090869030904290600401613078565b600060405180830381600087803b158015612baa57600080fd5b505af1158015612bbe573d6000803e3d6000fd5b505050505050565b612bf1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461198c565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c7b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ca091906130e9565b5050505050565b600060208083528351808285015260005b81811015612cd457858101830151858201604001528201612cb8565b81811115612ce6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461170f57600080fd5b60008060408385031215612d2457600080fd5b8235612d2f81612cfc565b946020939093013593505050565b600060208284031215612d4f57600080fd5b81356124c981612cfc565b600060208284031215612d6c57600080fd5b5035919050565b600080600060608486031215612d8857600080fd5b8335612d9381612cfc565b92506020840135612da381612cfc565b929592945050506040919091013590565b8035801515811461163557600080fd5b600080600060608486031215612dd957600080fd5b8335925060208401359150612df060408501612db4565b90509250925092565b60008060408385031215612e0c57600080fd5b8235612e1781612cfc565b9150612e2560208401612db4565b90509250929050565b600080600060608486031215612e4357600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e6c57600080fd5b6124c982612db4565b60008060408385031215612e8857600080fd5b8235612e9381612cfc565b91506020830135612ea381612cfc565b809150509250929050565b600181811c90821680612ec257607f821691505b60208210811415612ee357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4e57612f4e612f1e565b500290565b600082612f7057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f8857612f88612f1e565b500190565b600060208284031215612f9f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561304057613040612f1e565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561306d57600080fd5b81516124c981612cfc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130c85784516001600160a01b0316835293830193918301916001016130a3565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130fe57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212204310f17bc7c596102af311444302dfc5b5e1b97696b0f1cf5ad119c18cb18bb964736f6c634300080a0033

Deployed Bytecode Sourcemap

408:18849:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4412:197;;;;;;;;;;-1:-1:-1;4412:197:2;;;;;:::i;:::-;;:::i;:::-;;;1237:14:11;;1230:22;1212:41;;1200:2;1185:18;4412:197:2;1072:187:11;1707:29:0;;;;;;;;;;;;;;;;;;;1410:25:11;;;1398:2;1383:18;1707:29:0;1264:177:11;1990:63:0;;;;;;;;;;-1:-1:-1;1990:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;490:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:11;;;1871:51;;1859:2;1844:18;490:51:0;1698:230:11;3223:106:2;;;;;;;;;;-1:-1:-1;3310:12:2;;3223:106;;1036:47:0;;;;;;;;;;;;;;;;856:36;;;;;;;;;;;;;;;;1777:33;;;;;;;;;;;;;;;;6323:269;;;;;;;;;;-1:-1:-1;6323:269:0;;;;;:::i;:::-;;:::i;:::-;;5171:286:2;;;;;;;;;;-1:-1:-1;5171:286:2;;;;;:::i;:::-;;:::i;591:53:0:-;;;;;;;;;;;;637:6;591:53;;949:45;;;;;;;;;;;;;;;;911:32;;;;;;;;;;-1:-1:-1;911:32:0;;;;;;;;3072:91:2;;;;;;;;;;-1:-1:-1;3072:91:2;;3154:2;2929:36:11;;2917:2;2902:18;3072:91:2;2787:184:11;5852:236:2;;;;;;;;;;-1:-1:-1;5852:236:2;;;;;:::i;:::-;;:::i;8883:170:0:-;;;;;;;;;;-1:-1:-1;8883:170:0;;;;;:::i;:::-;;:::i;1816:31::-;;;;;;;;;;;;;;;;547:38;;;;;;;;;;;;;;;1131:33;;;;;;;;;;-1:-1:-1;1131:33:0;;;;;;;;9059:124;;;;;;;;;;-1:-1:-1;9059:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;9148:28:0;9125:4;9148:28;;;:19;:28;;;;;;;;;9059:124;679:25;;;;;;;;;;-1:-1:-1;679:25:0;;;;-1:-1:-1;;;;;679:25:0;;;1604:28;;;;;;;;;;;;;;;;1209:31;;;;;;;;;;-1:-1:-1;1209:31:0;;;;;;;;;;;3387:125:2;;;;;;;;;;-1:-1:-1;3387:125:2;;;;;:::i;:::-;-1:-1:-1;;;;;3487:18:2;3461:7;3487:18;;;;;;;;;;;;3387:125;1661:101:9;;;;;;;;;;;;;:::i;16909:539:0:-;;;;;;;;;;-1:-1:-1;16909:539:0;;;;;:::i;:::-;;:::i;5460:118::-;;;;;;;;;;;;;:::i;6854:162::-;;;;;;;;;;-1:-1:-1;6854:162:0;;;;;:::i;:::-;;:::i;710:28::-;;;;;;;;;;-1:-1:-1;710:28:0;;;;-1:-1:-1;;;;;710:28:0;;;8687:190;;;;;;;;;;-1:-1:-1;8687:190:0;;;;;:::i;:::-;;:::i;7213:389::-;;;;;;;;;;-1:-1:-1;7213:389:0;;;;;:::i;:::-;;:::i;5260:151::-;;;;;;;;;;;;;:::i;1029:85:9:-;;;;;;;;;;-1:-1:-1;1101:6:9;;-1:-1:-1;;;;;1101:6:9;1029:85;;7109:98:0;;;;;;;;;;-1:-1:-1;7109:98:0;;;;;:::i;:::-;;:::i;2346:102:2:-;;;;;;;;;;;;;:::i;8197:294:0:-;;;;;;;;;;-1:-1:-1;8197:294:0;;;;;:::i;:::-;;:::i;1502:25::-;;;;;;;;;;;;;;;;1089:35;;;;;;;;;;;;;;;;1569:28;;;;;;;;;;;;;;;;6575:429:2;;;;;;;;;;-1:-1:-1;6575:429:2;;;;;:::i;:::-;;:::i;1000:29:0:-;;;;;;;;;;;;;;;;3708:189:2;;;;;;;;;;-1:-1:-1;3708:189:2;;;;;:::i;:::-;;:::i;2207:57:0:-;;;;;;;;;;-1:-1:-1;2207:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;1170:33;;;;;;;;;;-1:-1:-1;1170:33:0;;;;;;;;;;;8012:179;;;;;;;;;;-1:-1:-1;8012:179:0;;;;;:::i;:::-;;:::i;7608:398::-;;;;;;;;;;-1:-1:-1;7608:398:0;;;;;:::i;:::-;;:::i;6598:250::-;;;;;;;;;;-1:-1:-1;6598:250:0;;;;;:::i;:::-;;:::i;1423:39::-;;;;;;;;;;-1:-1:-1;1423:39:0;;;;;;;;745:35;;;;;;;;;;;;;;;;5835:482;;;;;;;;;;-1:-1:-1;5835:482:0;;;;;:::i;:::-;;:::i;1638:26::-;;;;;;;;;;;;;;;;1469:27;;;;;;;;;;;;;;;;3955:149:2;;;;;;;;;;-1:-1:-1;3955:149:2;;;;;:::i;:::-;-1:-1:-1;;;;;4070:18:2;;;4044:7;4070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3955:149;786:33:0;;;;;;;;;;;;;;;;5636:132;;;;;;;;;;;;;:::i;1533:30::-;;;;;;;;;;;;;;;;1911:198:9;;;;;;;;;;-1:-1:-1;1911:198:9;;;;;:::i;:::-;;:::i;1670:31:0:-;;;;;;;;;;;;;;;;825:24;;;;;;;;;;;;;;;;1743:28;;;;;;;;;;;;;;;;18227:1028;;;;;;;;;;-1:-1:-1;18227:1028:0;;;;;:::i;:::-;;:::i;2135:98:2:-;2189:13;2221:5;2214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:98;:::o;4412:197::-;4495:4;719:10:1;4549:32:2;719:10:1;4565:7:2;4574:6;4549:8;:32::i;:::-;-1:-1:-1;4598:4:2;;4412:197;-1:-1:-1;;;4412:197:2:o;6323:269:0:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;;;;;;;;;6458:4:0::1;6450;6429:13;3310:12:2::0;;;3223:106;6429:13:0::1;:17;::::0;6445:1:::1;6429:17;:::i;:::-;6428:26;;;;:::i;:::-;6427:35;;;;:::i;:::-;6417:6;:45;;6396:139;;;::::0;-1:-1:-1;;;6396:139:0;;6156:2:11;6396:139:0::1;::::0;::::1;6138:21:11::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:11;;;6278:45;6340:19;;6396:139:0::1;5954:411:11::0;6396:139:0::1;6568:17;:6:::0;6578::::1;6568:17;:::i;:::-;6545:20;:40:::0;-1:-1:-1;6323:269:0:o;5171:286:2:-;5298:4;719:10:1;5354:38:2;5370:4;719:10:1;5385:6:2;5354:15;:38::i;:::-;5402:27;5412:4;5418:2;5422:6;5402:9;:27::i;:::-;-1:-1:-1;5446:4:2;;5171:286;-1:-1:-1;;;;5171:286:2:o;5852:236::-;719:10:1;5940:4:2;6019:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;6019:27:2;;;;;;;;;;5940:4;;719:10:1;5994:66:2;;719:10:1;;6019:27:2;;:40;;6049:10;;6019:40;:::i;:::-;5994:8;:66::i;8883:170:0:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;8997:13:0::1;::::0;8965:46:::1;::::0;-1:-1:-1;;;;;8997:13:0;;::::1;::::0;8965:46;::::1;::::0;::::1;::::0;8997:13:::1;::::0;8965:46:::1;9021:13;:25:::0;;-1:-1:-1;;;;;;9021:25:0::1;-1:-1:-1::0;;;;;9021:25:0;;;::::1;::::0;;;::::1;::::0;;8883:170::o;1661:101:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;16909:539:0:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;17105:3:0::1;17082:19;:26;;17061:124;;;::::0;-1:-1:-1;;;17061:124:0;;6705:2:11;17061:124:0::1;::::0;::::1;6687:21:11::0;6744:2;6724:18;;;6717:30;6783:34;6763:18;;;6756:62;-1:-1:-1;;;6834:18:11;;;6827:49;6893:19;;17061:124:0::1;6503:415:11::0;17061:124:0::1;17228:4;17216:8;:16;;:33;;;;-1:-1:-1::0;17236:13:0;17216:33:::1;17195:128;;;::::0;-1:-1:-1;;;17195:128:0;;7125:2:11;17195:128:0::1;::::0;::::1;7107:21:11::0;7164:2;7144:18;;;7137:30;7203:34;7183:18;;;7176:62;-1:-1:-1;;;7254:18:11;;;7247:46;7310:19;;17195:128:0::1;6923:412:11::0;17195:128:0::1;17333:15;:37:::0;;;;17380:16:::1;:27:::0;17417:13:::1;:24:::0;;-1:-1:-1;;17417:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;16909:539::o;5460:118::-;1101:6:9;;5512:4:0;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;5528:14:0::1;:22:::0;;-1:-1:-1;;5528:22:0::1;::::0;;;5460:118;:::o;6854:162::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;6963:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;6963:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;6854:162::o;8687:190::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;8823:10:0::1;::::0;8790:44:::1;::::0;-1:-1:-1;;;;;8823:10:0;;::::1;::::0;8790:44;::::1;::::0;::::1;::::0;8823:10:::1;::::0;8790:44:::1;8844:10;:26:::0;;-1:-1:-1;;;;;;8844:26:0::1;-1:-1:-1::0;;;;;8844:26:0;;;::::1;::::0;;;::::1;::::0;;8687:190::o;7213:389::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;7357:10:0::1;:21:::0;;;7388:15:::1;:31:::0;;;7429:13:::1;:27:::0;;;7445:11;7481:28:::1;7406:13:::0;7370:8;7481:28:::1;:::i;:::-;:44;;;;:::i;:::-;7466:12;:59:::0;;;-1:-1:-1;7543:18:0::1;7535:60;;;::::0;-1:-1:-1;;;7535:60:0;;7542:2:11;7535:60:0::1;::::0;::::1;7524:21:11::0;7581:2;7561:18;;;7554:30;7620:31;7600:18;;;7593:59;7669:18;;7535:60:0::1;7340:353:11::0;7535:60:0::1;7213:389:::0;;;:::o;5260:151::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;5314:13:0::1;:20:::0;;-1:-1:-1;;5344:18:0;;;;;5389:15:::1;5372:14;:32:::0;5260:151::o;7109:98::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;7179:11:0::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;7179:21:0;;::::1;::::0;;;::::1;::::0;;7109:98::o;2346:102:2:-;2402:13;2434:7;2427:14;;;;;:::i;8197:294:0:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;8336:13:0::1;-1:-1:-1::0;;;;;8328:21:0::1;:4;-1:-1:-1::0;;;;;8328:21:0::1;;;8307:125;;;::::0;-1:-1:-1;;;8307:125:0;;7900:2:11;8307:125:0::1;::::0;::::1;7882:21:11::0;7939:2;7919:18;;;7912:30;7978:34;7958:18;;;7951:62;8049:27;8029:18;;;8022:55;8094:19;;8307:125:0::1;7698:421:11::0;8307:125:0::1;8443:41;8472:4;8478:5;8443:28;:41::i;:::-;8197:294:::0;;:::o;6575:429:2:-;719:10:1;6668:4:2;6749:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;6749:27:2;;;;;;;;;;6668:4;;719:10:1;6794:35:2;;;;6786:85;;;;-1:-1:-1;;;6786:85:2;;8326:2:11;6786:85:2;;;8308:21:11;8365:2;8345:18;;;8338:30;8404:34;8384:18;;;8377:62;-1:-1:-1;;;8455:18:11;;;8448:35;8500:19;;6786:85:2;8124:401:11;6786:85:2;6905:60;6914:5;6921:7;6949:15;6930:16;:34;6905:8;:60::i;3708:189::-;3787:4;719:10:1;3841:28:2;719:10:1;3858:2:2;3862:6;3841:9;:28::i;8012:179:0:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;8096:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;8096:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;8150:34;;1212:41:11;;;8150:34:0::1;::::0;1185:18:11;8150:34:0::1;;;;;;;8012:179:::0;;:::o;7608:398::-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;7753:11:0::1;:22:::0;;;7785:16:::1;:32:::0;;;7827:14:::1;:28:::0;;;7844:11;7881:30:::1;7804:13:::0;7767:8;7881:30:::1;:::i;:::-;:47;;;;:::i;:::-;7865:13;:63:::0;;;7963:2:::1;-1:-1:-1::0;7946:19:0::1;7938:61;;;::::0;-1:-1:-1;;;7938:61:0;;8732:2:11;7938:61:0::1;::::0;::::1;8714:21:11::0;8771:2;8751:18;;;8744:30;8810:31;8790:18;;;8783:59;8859:18;;7938:61:0::1;8530:353:11::0;6598:250:0;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;6736:4:0::1;6728;6707:13;3310:12:2::0;;;3223:106;6707:13:0::1;:17;::::0;6723:1:::1;6707:17;:::i;:::-;6706:26;;;;:::i;:::-;6705:35;;;;:::i;:::-;6695:6;:45;;6674:128;;;::::0;-1:-1:-1;;;6674:128:0;;9090:2:11;6674:128:0::1;::::0;::::1;9072:21:11::0;9129:2;9109:18;;;9102:30;9168:34;9148:18;;;9141:62;-1:-1:-1;;;9219:18:11;;;9212:34;9263:19;;6674:128:0::1;8888:400:11::0;6674:128:0::1;6824:17;:6:::0;6834::::1;6824:17;:::i;:::-;6812:9;:29:::0;-1:-1:-1;6598:250:0:o;5835:482::-;1101:6:9;;5940:4:0;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;6016:6:0::1;5995:13;3310:12:2::0;;;3223:106;5995:13:0::1;:17;::::0;6011:1:::1;5995:17;:::i;:::-;5994:28;;;;:::i;:::-;5981:9;:41;;5960:141;;;::::0;-1:-1:-1;;;5960:141:0;;9495:2:11;5960:141:0::1;::::0;::::1;9477:21:11::0;9534:2;9514:18;;;9507:30;9573:34;9553:18;;;9546:62;-1:-1:-1;;;9624:18:11;;;9617:51;9685:19;;5960:141:0::1;9293:417:11::0;5960:141:0::1;6167:4;6146:13;3310:12:2::0;;;3223:106;6146:13:0::1;:17;::::0;6162:1:::1;6146:17;:::i;:::-;6145:26;;;;:::i;:::-;6132:9;:39;;6111:138;;;::::0;-1:-1:-1;;;6111:138:0;;9917:2:11;6111:138:0::1;::::0;::::1;9899:21:11::0;9956:2;9936:18;;;9929:30;9995:34;9975:18;;;9968:62;-1:-1:-1;;;10046:18:11;;;10039:50;10106:19;;6111:138:0::1;9715:416:11::0;6111:138:0::1;-1:-1:-1::0;6259:18:0::1;:30:::0;;;6306:4:::1;1311:1:9;5835:482:0::0;;;:::o;5636:132::-;1101:6:9;;5696:4:0;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;5712:20:0::1;:28:::0;;-1:-1:-1;;5712:28:0::1;::::0;;;5636:132;:::o;1911:198:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:9;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:9;;10338:2:11;1991:73:9::1;::::0;::::1;10320:21:11::0;10377:2;10357:18;;;10350:30;10416:34;10396:18;;;10389:62;-1:-1:-1;;;10467:18:11;;;10460:36;10513:19;;1991:73:9::1;10136:402:11::0;1991:73:9::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;18227:1028:0:-;1101:6:9;;18335:4:0;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;18417:19:0::1;;18394:20;;:42;;;;:::i;:::-;18376:15;:60;18355:139;;;::::0;-1:-1:-1;;;18355:139:0;;10745:2:11;18355:139:0::1;::::0;::::1;10727:21:11::0;;;10764:18;;;10757:30;10823:34;10803:18;;;10796:62;10875:18;;18355:139:0::1;10543:356:11::0;18355:139:0::1;18523:4;18512:7;:15;;18504:70;;;::::0;-1:-1:-1;;;18504:70:0;;11106:2:11;18504:70:0::1;::::0;::::1;11088:21:11::0;11145:2;11125:18;;;11118:30;11184:34;11164:18;;;11157:62;-1:-1:-1;;;11235:18:11;;;11228:40;11285:19;;18504:70:0::1;10904:406:11::0;18504:70:0::1;18607:15;18584:20;:38:::0;18705:29:::1;::::0;-1:-1:-1;;;18705:29:0;;-1:-1:-1;;;;;18720:13:0::1;1889:32:11::0;18705:29:0::1;::::0;::::1;1871:51:11::0;18674:28:0::1;::::0;18705:4:::1;::::0;:14:::1;::::0;1844:18:11;;18705:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18674:60:::0;-1:-1:-1;18781:20:0::1;18804:44;18842:5;18804:33;18674:60:::0;18829:7;18804:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;18781:67:::0;-1:-1:-1;18950:16:0;;18946:108:::1;;18982:61;18998:13;19021:6;19030:12;18982:15;:61::i;:::-;19126:19;19163:13;19126:51;;19187:4;-1:-1:-1::0;;;;;19187:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;19213:14:0::1;::::0;::::1;::::0;-1:-1:-1;19213:14:0;;-1:-1:-1;19213:14:0::1;-1:-1:-1::0;19244:4:0::1;::::0;18227:1028;-1:-1:-1;;;;18227:1028:0:o;10102:370:2:-;-1:-1:-1;;;;;10233:19:2;;10225:68;;;;-1:-1:-1;;;10225:68:2;;11706:2:11;10225:68:2;;;11688:21:11;11745:2;11725:18;;;11718:30;11784:34;11764:18;;;11757:62;-1:-1:-1;;;11835:18:11;;;11828:34;11879:19;;10225:68:2;11504:400:11;10225:68:2;-1:-1:-1;;;;;10311:21:2;;10303:68;;;;-1:-1:-1;;;10303:68:2;;12111:2:11;10303:68:2;;;12093:21:11;12150:2;12130:18;;;12123:30;12189:34;12169:18;;;12162:62;-1:-1:-1;;;12240:18:11;;;12233:32;12282:19;;10303:68:2;11909:398:11;10303:68:2;-1:-1:-1;;;;;10382:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10433:32;;1410:25:11;;;10433:32:2;;1383:18:11;10433:32:2;;;;;;;10102:370;;;:::o;10749:441::-;-1:-1:-1;;;;;4070:18:2;;;10879:24;4070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10945:37:2;;10941:243;;11026:6;11006:16;:26;;10998:68;;;;-1:-1:-1;;;10998:68:2;;12514:2:11;10998:68:2;;;12496:21:11;12553:2;12533:18;;;12526:30;12592:31;12572:18;;;12565:59;12641:18;;10998:68:2;12312:353:11;10998:68:2;11108:51;11117:5;11124:7;11152:6;11133:16;:25;11108:8;:51::i;:::-;10869:321;10749:441;;;:::o;9237:4869:0:-;-1:-1:-1;;;;;9364:18:0;;9356:68;;;;-1:-1:-1;;;9356:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9442:16:0;;9434:64;;;;-1:-1:-1;;;9434:64:0;;;;;;;:::i;:::-;9513:11;9509:90;;9540:28;9556:4;9562:2;9566:1;9540:15;:28::i;9509:90::-;9613:14;;;;9609:2426;;;1101:6:9;;-1:-1:-1;;;;;9664:15:0;;;1101:6:9;;9664:15:0;;;;:48;;-1:-1:-1;1101:6:9;;-1:-1:-1;;;;;9699:13:0;;;1101:6:9;;9699:13:0;;9664:48;:84;;;;-1:-1:-1;;;;;;9732:16:0;;;;9664:84;:125;;;;-1:-1:-1;;;;;;9768:21:0;;9782:6;9768:21;;9664:125;:154;;;;-1:-1:-1;9810:8:0;;-1:-1:-1;;;9810:8:0;;;;9809:9;9664:154;9643:2382;;;9856:13;;;;;;;9851:218;;-1:-1:-1;;;;;9926:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;9955:23:0;;;;;;:19;:23;;;;;;;;9926:52;9893:157;;;;-1:-1:-1;;;9893:157:0;;13682:2:11;9893:157:0;;;13664:21:11;13721:2;13701:18;;;13694:30;-1:-1:-1;;;13740:18:11;;;13733:52;13802:18;;9893:157:0;13480:346:11;9893:157:0;10222:20;;;;10218:628;;;1101:6:9;;-1:-1:-1;;;;;10295:13:0;;;1101:6:9;;10295:13:0;;;;:71;;;10350:15;-1:-1:-1;;;;;10336:30:0;:2;-1:-1:-1;;;;;10336:30:0;;;10295:71;:127;;;;;10408:13;-1:-1:-1;;;;;10394:28:0;:2;-1:-1:-1;;;;;10394:28:0;;;10295:127;10266:562;;;10537:9;10508:39;;;;:28;:39;;;;;;10582:12;-1:-1:-1;10471:254:0;;;;-1:-1:-1;;;10471:254:0;;14033:2:11;10471:254:0;;;14015:21:11;14072:2;14052:18;;;14045:30;14111:34;14091:18;;;14084:62;14182:34;14162:18;;;14155:62;-1:-1:-1;;;14233:19:11;;;14226:40;14283:19;;10471:254:0;13831:477:11;10471:254:0;10780:9;10751:39;;;;:28;:39;;;;;10793:12;10751:54;;10266:562;-1:-1:-1;;;;;10916:31:0;;;;;;:25;:31;;;;;;;;:91;;;;-1:-1:-1;;;;;;10972:35:0;;;;;;:31;:35;;;;;;;;10971:36;10916:91;10891:1120;;;11091:20;;11081:6;:30;;11048:166;;;;-1:-1:-1;;;11048:166:0;;14515:2:11;11048:166:0;;;14497:21:11;14554:2;14534:18;;;14527:30;14593:34;14573:18;;;14566:62;-1:-1:-1;;;14644:18:11;;;14637:51;14705:19;;11048:166:0;14313:417:11;11048:166:0;11295:9;;-1:-1:-1;;;;;3487:18:2;;3461:7;3487:18;;;;;;;;;;;11269:22:0;;:6;:22;:::i;:::-;:35;;11236:137;;;;-1:-1:-1;;;11236:137:0;;14937:2:11;11236:137:0;;;14919:21:11;14976:2;14956:18;;;14949:30;-1:-1:-1;;;14995:18:11;;;14988:49;15054:18;;11236:137:0;14735:343:11;11236:137:0;10891:1120;;;-1:-1:-1;;;;;11467:29:0;;;;;;:25;:29;;;;;;;;:91;;;;-1:-1:-1;;;;;;11521:37:0;;;;;;:31;:37;;;;;;;;11520:38;11467:91;11442:569;;;11642:20;;11632:6;:30;;11599:167;;;;-1:-1:-1;;;11599:167:0;;15285:2:11;11599:167:0;;;15267:21:11;15324:2;15304:18;;;15297:30;15363:34;15343:18;;;15336:62;-1:-1:-1;;;15414:18:11;;;15407:52;15476:19;;11599:167:0;15083:418:11;11442:569:0;-1:-1:-1;;;;;11796:35:0;;;;;;:31;:35;;;;;;;;11791:220;;11914:9;;-1:-1:-1;;;;;3487:18:2;;3461:7;3487:18;;;;;;;;;;;11888:22:0;;:6;:22;:::i;:::-;:35;;11855:137;;;;-1:-1:-1;;;11855:137:0;;14937:2:11;11855:137:0;;;14919:21:11;14976:2;14956:18;;;14949:30;-1:-1:-1;;;14995:18:11;;;14988:49;15054:18;;11855:137:0;14735:343:11;11855:137:0;12094:4;12045:28;3487:18:2;;;;;;;;;;;12150::0;;12126:42;;;;;;;12196:34;;-1:-1:-1;12219:11:0;;;;;;;12196:34;:59;;;;-1:-1:-1;12247:8:0;;-1:-1:-1;;;12247:8:0;;;;12246:9;12196:59;:107;;;;-1:-1:-1;;;;;;12272:31:0;;;;;;:25;:31;;;;;;;;12271:32;12196:107;:149;;;;-1:-1:-1;;;;;;12320:25:0;;;;;;:19;:25;;;;;;;;12319:26;12196:149;:189;;;;-1:-1:-1;;;;;;12362:23:0;;;;;;:19;:23;;;;;;;;12361:24;12196:189;12179:313;;;12410:8;:15;;-1:-1:-1;;;;12410:15:0;-1:-1:-1;;;12410:15:0;;;12440:10;:8;:10::i;:::-;12465:8;:16;;-1:-1:-1;;;;12465:16:0;;;12179:313;12520:8;;-1:-1:-1;;;12520:8:0;;;;12519:9;:54;;;;-1:-1:-1;;;;;;12544:29:0;;;;;;:25;:29;;;;;;;;12519:54;:83;;;;-1:-1:-1;12589:13:0;;;;12519:83;:150;;;;;12654:15;;12637:14;;:32;;;;:::i;:::-;12618:15;:51;;12519:150;:192;;;;-1:-1:-1;;;;;;12686:25:0;;;;;;:19;:25;;;;;;;;12685:26;12519:192;12502:274;;;12736:29;:27;:29::i;:::-;;12502:274;12802:8;;-1:-1:-1;;;;;12909:25:0;;12786:12;12909:25;;;:19;:25;;;;;;12802:8;-1:-1:-1;;;12802:8:0;;;;;12801:9;;12909:25;;:52;;-1:-1:-1;;;;;;12938:23:0;;;;;;:19;:23;;;;;;;;12909:52;12905:98;;;-1:-1:-1;12987:5:0;12905:98;13013:12;13116:7;13112:944;;;-1:-1:-1;;;;;13166:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;13215:1;13199:13;;:17;13166:50;13162:752;;;13243:34;13273:3;13243:25;13254:13;;13243:6;:10;;:25;;;;:::i;:34::-;13236:41;;13345:13;;13325:16;;13318:4;:23;;;;:::i;:::-;13317:41;;;;:::i;:::-;13295:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;13422:13:0;;13404:14;;13397:21;;:4;:21;:::i;:::-;13396:39;;;;:::i;:::-;13376:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;13493:13:0;;13478:11;;13471:18;;:4;:18;:::i;:::-;13470:36;;;;:::i;:::-;13453:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;13162:752:0;;-1:-1:-1;13162:752:0;;-1:-1:-1;;;;;13565:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;13615:1;13600:12;;:16;13565:51;13561:353;;;13643:33;13672:3;13643:24;13654:12;;13643:6;:10;;:24;;;;:::i;:33::-;13636:40;;13743:12;;13724:15;;13717:4;:22;;;;:::i;:::-;13716:39;;;;:::i;:::-;13694:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;13818:12:0;;13801:13;;13794:20;;:4;:20;:::i;:::-;13793:37;;;;:::i;:::-;13773:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;13887:12:0;;13873:10;;13866:17;;:4;:17;:::i;:::-;13865:34;;;;:::i;:::-;13848:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;13561:353:0;13932:8;;13928:89;;13960:42;13976:4;13990;13997;13960:15;:42::i;:::-;14031:14;14041:4;14031:14;;:::i;:::-;;;13112:944;14066:33;14082:4;14088:2;14092:6;14066:15;:33::i;:::-;9346:4760;;;;9237:4869;;;:::o;2263:187:9:-;2355:6;;;-1:-1:-1;;;;;2371:17:9;;;-1:-1:-1;;;;;;2371:17:9;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;8497:184:0:-;-1:-1:-1;;;;;8579:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;8579:39:0;;;;;;;;;;8634:40;;8579:39;;:31;8634:40;;;8497:184;;:::o;3451:96:10:-;3509:7;3535:5;3539:1;3535;:5;:::i;:::-;3528:12;3451:96;-1:-1:-1;;;3451:96:10:o;3836:::-;3894:7;3920:5;3924:1;3920;:5;:::i;7467:651:2:-;-1:-1:-1;;;;;7593:18:2;;7585:68;;;;-1:-1:-1;;;7585:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;7671:16:2;;7663:64;;;;-1:-1:-1;;;7663:64:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;7809:15:2;;7787:19;7809:15;;;;;;;;;;;7842:21;;;;7834:72;;;;-1:-1:-1;;;7834:72:2;;15838:2:11;7834:72:2;;;15820:21:11;15877:2;15857:18;;;15850:30;15916:34;15896:18;;;15889:62;-1:-1:-1;;;15967:18:11;;;15960:36;16013:19;;7834:72:2;15636:402:11;7834:72:2;-1:-1:-1;;;;;7940:15:2;;;:9;:15;;;;;;;;;;;7958:20;;;7940:38;;7998:13;;;;;;;;:23;;7972:6;;7940:9;7998:23;;7972:6;;7998:23;:::i;:::-;;;;;;;;8052:2;-1:-1:-1;;;;;8037:26:2;8046:4;-1:-1:-1;;;;;8037:26:2;;8056:6;8037:26;;;;1410:25:11;;1398:2;1383:18;;1264:177;8037:26:2;;;;;;;;8074:37;7213:389:0;15201:1702;15283:4;15239:23;3487:18:2;;;;;;;;;;;15239:50:0;;15299:25;15388:16;;15360:13;;15327:18;;:46;;;;:::i;:::-;:77;;;;:::i;:::-;15299:105;-1:-1:-1;15414:12:0;15441:20;;;:46;;-1:-1:-1;15465:22:0;;15441:46;15437:83;;;15503:7;;;15201:1702::o;15437:83::-;15552:18;;:23;;15573:2;15552:23;:::i;:::-;15534:15;:41;15530:113;;;15609:18;;:23;;15630:2;15609:23;:::i;:::-;15591:41;;15530:113;15701:23;15812:1;15780:17;15746:18;;15728:15;:36;;;;:::i;:::-;15727:70;;;;:::i;:::-;:86;;;;:::i;:::-;15701:112;-1:-1:-1;15823:26:0;15852:36;:15;15701:112;15852:19;:36::i;:::-;15823:65;-1:-1:-1;15927:21:0;15959:36;15823:65;15959:16;:36::i;:::-;16006:18;16027:44;:21;16053:17;16027:25;:44::i;:::-;16006:65;;16082:18;16103:74;16150:17;16103:29;16118:13;;16103:10;:14;;:29;;;;:::i;:74::-;16082:95;;16187:21;16211:55;16248:17;16211:32;16226:16;;16211:10;:14;;:32;;;;:::i;:55::-;16187:79;-1:-1:-1;16277:23:0;16187:79;16303:23;16316:10;16303;:23;:::i;:::-;:39;;;;:::i;:::-;16374:1;16353:18;:22;;;16385:13;:17;;;16412:16;:20;;;16465:13;;16457:53;;16277:65;;-1:-1:-1;;;;;;16465:13:0;;16492;;16457:53;16374:1;16457:53;16492:13;16465;16457:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16443:67:0;;-1:-1:-1;;16525:19:0;;;;;:42;;;16566:1;16548:15;:19;16525:42;16521:271;;;16583:46;16596:15;16613;16583:12;:46::i;:::-;16749:18;;16648:133;;;16455:25:11;;;16511:2;16496:18;;16489:34;;;16539:18;;;16532:34;;;;16648:133:0;;;;;;16443:2:11;16648:133:0;;;16521:271;16824:10;;16816:80;;-1:-1:-1;;;;;16824:10:0;;;;16861:21;;16816:80;;;;16861:21;16824:10;16816:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;15201:1702:0:o;17454:767::-;17544:15;17527:14;:32;17642:29;;-1:-1:-1;;;17642:29:0;;-1:-1:-1;;;;;17657:13:0;1889:32:11;17642:29:0;;;1871:51:11;17511:4:0;;;;17642;;:14;;1844:18:11;;17642:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17611:60;;17718:20;17741:75;17801:5;17741:42;17766:16;;17741:20;:24;;:42;;;;:::i;:75::-;17718:98;-1:-1:-1;17918:16:0;;17914:108;;17950:61;17966:13;17989:6;17998:12;17950:15;:61::i;:::-;18094:19;18131:13;18094:51;;18155:4;-1:-1:-1;;;;;18155:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18181:12:0;;;;-1:-1:-1;18181:12:0;;-1:-1:-1;18181:12:0;18210:4;18203:11;;;;;17454:767;:::o;3108:96:10:-;3166:7;3192:5;3196:1;3192;:5;:::i;14112:573:0:-;14260:16;;;14274:1;14260:16;;;;;;;;14236:21;;14260:16;;;;;;;;;;-1:-1:-1;14260:16:0;14236:40;;14304:4;14286;14291:1;14286:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;14286:23:0;;;-1:-1:-1;;;;;14286:23:0;;;;;14329:15;-1:-1:-1;;;;;14329:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14319:4;14324:1;14319:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;14319:32:0;;;-1:-1:-1;;;;;14319:32:0;;;;;14362:62;14379:4;14394:15;14412:11;14362:8;:62::i;:::-;14460:218;;-1:-1:-1;;;14460:218:0;;-1:-1:-1;;;;;14460:15:0;:66;;;;:218;;14540:11;;14565:1;;14608:4;;14634;;14653:15;;14460:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14167:518;14112:573;:::o;14691:504::-;14837:62;14854:4;14869:15;14887:11;14837:8;:62::i;:::-;14939:249;;-1:-1:-1;;;14939:249:0;;15010:4;14939:249;;;18423:34:11;18473:18;;;18466:34;;;15054:1:0;18516:18:11;;;18509:34;;;18559:18;;;18552:34;637:6:0;18602:19:11;;;18595:44;15163:15:0;18655:19:11;;;18648:35;14939:15:0;-1:-1:-1;;;;;14939:31:0;;;;14978:9;;18357:19:11;;14939:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;14691:504;;:::o;14:597:11:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:11;574:15;-1:-1:-1;;570:29:11;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:11:o;616:131::-;-1:-1:-1;;;;;691:31:11;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:11:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:11;;1933:180;-1:-1:-1;1933:180:11:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:11;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:11;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:11;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:11;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:11;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:11:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:11;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:11;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:11;;5732:217::o;6370:128::-;6410:3;6441:1;6437:6;6434:1;6431:13;6428:39;;;6447:18;;:::i;:::-;-1:-1:-1;6483:9:11;;6370:128::o;11315:184::-;11385:6;11438:2;11426:9;11417:7;11413:23;11409:32;11406:52;;;11454:1;11451;11444:12;11406:52;-1:-1:-1;11477:16:11;;11315:184;-1:-1:-1;11315:184:11:o;12670:401::-;12872:2;12854:21;;;12911:2;12891:18;;;12884:30;12950:34;12945:2;12930:18;;12923:62;-1:-1:-1;;;13016:2:11;13001:18;;12994:35;13061:3;13046:19;;12670:401::o;13076:399::-;13278:2;13260:21;;;13317:2;13297:18;;;13290:30;13356:34;13351:2;13336:18;;13329:62;-1:-1:-1;;;13422:2:11;13407:18;;13400:33;13465:3;13450:19;;13076:399::o;15506:125::-;15546:4;15574:1;15571;15568:8;15565:34;;;15579:18;;:::i;:::-;-1:-1:-1;15616:9:11;;15506:125::o;16709:127::-;16770:10;16765:3;16761:20;16758:1;16751:31;16801:4;16798:1;16791:15;16825:4;16822:1;16815:15;16841:251;16911:6;16964:2;16952:9;16943:7;16939:23;16935:32;16932:52;;;16980:1;16977;16970:12;16932:52;17012:9;17006:16;17031:31;17056:5;17031:31;:::i;17097:980::-;17359:4;17407:3;17396:9;17392:19;17438:6;17427:9;17420:25;17464:2;17502:6;17497:2;17486:9;17482:18;17475:34;17545:3;17540:2;17529:9;17525:18;17518:31;17569:6;17604;17598:13;17635:6;17627;17620:22;17673:3;17662:9;17658:19;17651:26;;17712:2;17704:6;17700:15;17686:29;;17733:1;17743:195;17757:6;17754:1;17751:13;17743:195;;;17822:13;;-1:-1:-1;;;;;17818:39:11;17806:52;;17913:15;;;;17878:12;;;;17854:1;17772:9;17743:195;;;-1:-1:-1;;;;;;;17994:32:11;;;;17989:2;17974:18;;17967:60;-1:-1:-1;;;18058:3:11;18043:19;18036:35;17955:3;17097:980;-1:-1:-1;;;17097:980:11:o;18694:306::-;18782:6;18790;18798;18851:2;18839:9;18830:7;18826:23;18822:32;18819:52;;;18867:1;18864;18857:12;18819:52;18896:9;18890:16;18880:26;;18946:2;18935:9;18931:18;18925:25;18915:35;;18990:2;18979:9;18975:18;18969:25;18959:35;;18694:306;;;;;:::o

Swarm Source

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