ETH Price: $2,405.70 (-1.35%)

Token

Memorial Doge (MDOGE)
 

Overview

Max Total Supply

1,000,000,000,000,000 MDOGE

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
41,400,000,000 MDOGE

Value
$0.00
0x76af5ca14a383fadbdcc152e9692179729e232f6
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:
MemorialDoge

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 9 of 11: MemDoge.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Ownable.sol";
import "./SafeMath.sol";

import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Factory.sol";

/*
 MEMORIAL DOGE 
*/

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

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;

    mapping (address => bool) private _isBlacklisted;
    bool private _swapping;
    uint256 private _launchTime;

    address private feeWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
        
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public earlySellActive = true;
    
    // 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 totalFees;
    uint256 private _marketingFee;
    uint256 private _liquidityFee;
    
    uint256 private _tokensForMarketing;
    uint256 private _tokensForLiquidity;
    
    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcludedMaxTransactionAmount;

    // To watch for early sells
    mapping (address => uint256) private _holderFirstBuyTimestamp;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event feeWalletUpdated(address indexed newWallet, address indexed oldWallet);
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);

    constructor() ERC20("Memorial Doge", "MDOGE") {
        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 marketingFee = 8;
        uint256 liquidityFee = 0;
        
        uint256 totalSupply = 1e15 * 1e18;
        
        maxTransactionAmount = totalSupply * 9 / 1000;
        maxWallet = totalSupply * 2 / 100;
        swapTokensAtAmount = totalSupply * 15 / 10000;

        _marketingFee = marketingFee;
        _liquidityFee = liquidityFee;
        totalFees = _marketingFee + _liquidityFee;
        
        feeWallet = address(owner()); // set as fee 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);
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        _launchTime = block.timestamp;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable early selling tax
    function disableEarlySells() external onlyOwner returns (bool) {
        earlySellActive = 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 * 1e18;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * 1e18;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateFees(uint256 marketingFee, uint256 liquidityFee) external onlyOwner {
        _marketingFee = marketingFee;
        _liquidityFee = liquidityFee;
        totalFees = _marketingFee + _liquidityFee;
        require(totalFees <= 10, "Must keep fees at 10% 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 updateFeeWallet(address newWallet) external onlyOwner {
        emit feeWalletUpdated(newWallet, feeWallet);
        feeWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function setBlacklisted(address[] memory blacklisted_) public onlyOwner {
        for (uint i = 0; i < blacklisted_.length; i++) {
            if (blacklisted_[i] != uniswapV2Pair && blacklisted_[i] != address(uniswapV2Router)) {
                _isBlacklisted[blacklisted_[i]] = false;
            }
        }
    }
    
    function delBlacklisted(address[] memory blacklisted_) public onlyOwner {
        for (uint i = 0; i < blacklisted_.length; i++) {
            _isBlacklisted[blacklisted_[i]] = false;
        }
    }
    
    function isSniper(address addr) public view returns (bool) {
        return _isBlacklisted[addr];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isBlacklisted[from], "Your address has been marked as a sniper, you are unable to transfer or swap.");
        
         if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (block.timestamp <= _launchTime) _isBlacklisted[to] = true;
        
        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.");
                }

                // set first time buy timestamp
                if (balanceOf(to) == 0 && _holderFirstBuyTimestamp[to] == 0) {
                    _holderFirstBuyTimestamp[to] = block.timestamp;
                }

                // 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 &&
            !_swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            _swapping = true;
            swapBack();
            _swapping = false;
        }

        bool takeFee = !_swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (
                automatedMarketMakerPairs[to] 
                && earlySellActive
                && _holderFirstBuyTimestamp[from] != 0 
                && (_holderFirstBuyTimestamp[from] + (24 hours) >= block.timestamp)
            ) {
                uint256 earlyLiquidityFee = 0;
                uint256 earlyMarketingFee = 12;
                uint256 earlyTotalFees = earlyMarketingFee.add(earlyLiquidityFee);

                fees = amount.mul(earlyTotalFees).div(100);
                _tokensForLiquidity += fees * earlyLiquidityFee / earlyTotalFees;
                _tokensForMarketing += fees * earlyMarketingFee / earlyTotalFees;
            } else {
                fees = amount.mul(totalFees).div(100);
                _tokensForLiquidity += fees * _liquidityFee / totalFees;
                _tokensForMarketing += fees * _marketingFee / totalFees;
            }
            
            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
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing;
        
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > swapTokensAtAmount) {
          contractBalance = swapTokensAtAmount;
        }
        
        // 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 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing;
        
        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;

        payable(feeWallet).transfer(ethForMarketing);
                
        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, _tokensForLiquidity);
        }
    }

    function forceSwap() external onlyOwner {
        _swapTokensForEth(address(this).balance);
        payable(feeWallet).transfer(address(this).balance);
    }

    function forceSend() external onlyOwner {
        payable(feeWallet).transfer(address(this).balance);
    }

    receive() external payable {}
}

File 1 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 2 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 3 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 4 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 5 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 6 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 7 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 8 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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"feeWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"blacklisted_","type":"address[]"}],"name":"delBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableEarlySells","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":"earlySellActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwap","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"isSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"blacklisted_","type":"address[]"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","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":"totalFees","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":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateFees","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":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff0219169083151502179055506001601160006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f4d656d6f7269616c20446f6765000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d444f474500000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000ad5565b5080600490805190602001906200011b92919062000ad5565b5050506200013e620001326200059560201b60201c565b6200059d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200066360201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f257600080fd5b505afa15801562000207573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022d919062000b9c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029057600080fd5b505afa158015620002a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cb919062000b9c565b6040518363ffffffff1660e01b8152600401620002ea92919062000c7f565b602060405180830381600087803b1580156200030557600080fd5b505af11580156200031a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000340919062000b9c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003b5600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200066360201b60201c565b620003ea600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200074d60201b60201c565b6000600890506000806d314dc6448d9338c15b0a0000000090506103e860098262000416919062000dd0565b62000422919062000d98565b600c81905550606460028262000439919062000dd0565b62000445919062000d98565b600e81905550612710600f826200045d919062000dd0565b62000469919062000d98565b600d8190555082601381905550816014819055506014546013546200048f919062000d3b565b601281905550620004a5620007ee60201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000507620004f9620007ee60201b60201c565b60016200081860201b60201c565b6200051a3060016200081860201b60201c565b6200052f61dead60016200081860201b60201c565b6200055162000543620007ee60201b60201c565b60016200066360201b60201c565b620005643060016200066360201b60201c565b6200057961dead60016200066360201b60201c565b6200058b33826200095260201b60201c565b5050505062000f58565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006736200059560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000699620007ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e99062000cc9565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008286200059560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200084e620007ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089e9062000cc9565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000946919062000cac565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bc9062000ceb565b60405180910390fd5b620009d96000838362000acb60201b60201c565b8060026000828254620009ed919062000d3b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a44919062000d3b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aab919062000d0d565b60405180910390a362000ac76000838362000ad060201b60201c565b5050565b505050565b505050565b82805462000ae39062000e7b565b90600052602060002090601f01602090048101928262000b07576000855562000b53565b82601f1062000b2257805160ff191683800117855562000b53565b8280016001018555821562000b53579182015b8281111562000b5257825182559160200191906001019062000b35565b5b50905062000b62919062000b66565b5090565b5b8082111562000b8157600081600090555060010162000b67565b5090565b60008151905062000b968162000f3e565b92915050565b60006020828403121562000baf57600080fd5b600062000bbf8482850162000b85565b91505092915050565b62000bd38162000e31565b82525050565b62000be48162000e45565b82525050565b600062000bf960208362000d2a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600062000c3b601f8362000d2a565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000c798162000e71565b82525050565b600060408201905062000c96600083018562000bc8565b62000ca5602083018462000bc8565b9392505050565b600060208201905062000cc3600083018462000bd9565b92915050565b6000602082019050818103600083015262000ce48162000bea565b9050919050565b6000602082019050818103600083015262000d068162000c2c565b9050919050565b600060208201905062000d24600083018462000c6e565b92915050565b600082825260208201905092915050565b600062000d488262000e71565b915062000d558362000e71565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d8d5762000d8c62000eb1565b5b828201905092915050565b600062000da58262000e71565b915062000db28362000e71565b92508262000dc55762000dc462000ee0565b5b828204905092915050565b600062000ddd8262000e71565b915062000dea8362000e71565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e265762000e2562000eb1565b5b828202905092915050565b600062000e3e8262000e51565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000e9457607f821691505b6020821081141562000eab5762000eaa62000f0f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000f498162000e31565b811462000f5557600080fd5b50565b614f888062000f686000396000f3fe60806040526004361061023f5760003560e01c806375c5df911161012e578063c8125e45116100ab578063df778d261161006f578063df778d2614610892578063e2f45605146108a9578063e884f260146108d4578063f2fde38b146108ff578063f8b45b051461092857610246565b8063c8125e4514610799578063c876d0b9146107c2578063c8c8ebe4146107ed578063d257b34f14610818578063dd62ed3e1461085557610246565b8063a457c2d7116100f2578063a457c2d7146106a2578063a9059cbb146106df578063bbc0c7421461071c578063c024666814610747578063c18bc1951461077057610246565b806375c5df91146105e15780638a8c523c1461060c5780638da5cb5b1461062357806395d89b411461064e5780639a7a23d61461067957610246565b8063313ce567116101bc5780636db79437116101805780636db794371461051057806370a0823114610539578063715018a614610576578063751039fc1461058d5780637571336a146105b857610246565b8063313ce5671461041757806339509351146104425780634a62bb651461047f5780634fbee193146104aa57806366718524146104e757610246565b806312b77e8a1161020357806312b77e8a1461034457806313114a9d1461035b57806318160ddd14610386578063203e727e146103b157806323b872dd146103da57610246565b8063056415ca1461024b57806306fdde0314610276578063095ea7b3146102a15780630b559c6f146102de5780630f3a325f1461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610953565b60405161026d91906147c0565b60405180910390f35b34801561028257600080fd5b5061028b6109f3565b60405161029891906147db565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c39190613d1e565b610a85565b6040516102d591906147c0565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190613d5a565b610aa8565b005b34801561031357600080fd5b5061032e60048036038101906103299190613c05565b610d11565b60405161033b91906147c0565b60405180910390f35b34801561035057600080fd5b50610359610d67565b005b34801561036757600080fd5b50610370610e4e565b60405161037d9190614a9d565b60405180910390f35b34801561039257600080fd5b5061039b610e54565b6040516103a89190614a9d565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613d9b565b610e5e565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190613c93565b610f6d565b60405161040e91906147c0565b60405180910390f35b34801561042357600080fd5b5061042c610f9c565b6040516104399190614b49565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613d1e565b610fa5565b60405161047691906147c0565b60405180910390f35b34801561048b57600080fd5b5061049461104f565b6040516104a191906147c0565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613c05565b611062565b6040516104de91906147c0565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613c05565b6110b8565b005b34801561051c57600080fd5b5061053760048036038101906105329190613dc4565b6111f4565b005b34801561054557600080fd5b50610560600480360381019061055b9190613c05565b6112de565b60405161056d9190614a9d565b60405180910390f35b34801561058257600080fd5b5061058b611326565b005b34801561059957600080fd5b506105a26113ae565b6040516105af91906147c0565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613ce2565b61144e565b005b3480156105ed57600080fd5b506105f6611525565b60405161060391906147c0565b60405180910390f35b34801561061857600080fd5b50610621611538565b005b34801561062f57600080fd5b506106386115d8565b6040516106459190614744565b60405180910390f35b34801561065a57600080fd5b50610663611602565b60405161067091906147db565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613ce2565b611694565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613d1e565b6117af565b6040516106d691906147c0565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613d1e565b611899565b60405161071391906147c0565b60405180910390f35b34801561072857600080fd5b506107316118bc565b60405161073e91906147c0565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613ce2565b6118cf565b005b34801561077c57600080fd5b5061079760048036038101906107929190613d9b565b6119f4565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613d5a565b611b03565b005b3480156107ce57600080fd5b506107d7611c3a565b6040516107e491906147c0565b60405180910390f35b3480156107f957600080fd5b50610802611c4d565b60405161080f9190614a9d565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613d9b565b611c53565b60405161084c91906147c0565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613c57565b611da8565b6040516108899190614a9d565b60405180910390f35b34801561089e57600080fd5b506108a7611e2f565b005b3480156108b557600080fd5b506108be611f1f565b6040516108cb9190614a9d565b60405180910390f35b3480156108e057600080fd5b506108e9611f25565b6040516108f691906147c0565b60405180910390f35b34801561090b57600080fd5b5061092660048036038101906109219190613c05565b611fc5565b005b34801561093457600080fd5b5061093d6120bd565b60405161094a9190614a9d565b60405180910390f35b600061095d6120c3565b73ffffffffffffffffffffffffffffffffffffffff1661097b6115d8565b73ffffffffffffffffffffffffffffffffffffffff16146109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c8906149bd565b60405180910390fd5b6000600f60026101000a81548160ff0219169083151502179055506001905090565b606060038054610a0290614dc5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90614dc5565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b600080610a906120c3565b9050610a9d8185856120cb565b600191505092915050565b610ab06120c3565b73ffffffffffffffffffffffffffffffffffffffff16610ace6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b906149bd565b60405180910390fd5b60005b8151811015610d0d57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16828281518110610ba2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614158015610c5c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16828281518110610c3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614155b15610cfa57600060086000848481518110610ca0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080610d0590614df7565b915050610b27565b5050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d6f6120c3565b73ffffffffffffffffffffffffffffffffffffffff16610d8d6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906149bd565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e4b573d6000803e3d6000fd5b50565b60125481565b6000600254905090565b610e666120c3565b73ffffffffffffffffffffffffffffffffffffffff16610e846115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906149bd565b60405180910390fd5b670de0b6b3a76400006103e86001610ef0610e54565b610efa9190614c9d565b610f049190614c6c565b610f0e9190614c6c565b811015610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790614a7d565b60405180910390fd5b670de0b6b3a764000081610f649190614c9d565b600c8190555050565b600080610f786120c3565b9050610f85858285612296565b610f90858585612322565b60019150509392505050565b60006012905090565b600080610fb06120c3565b9050611044818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461103f9190614c16565b6120cb565b600191505092915050565b600f60009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06120c3565b73ffffffffffffffffffffffffffffffffffffffff166110de6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b906149bd565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f5deb5ef622431f0df5a39b72dd556892f68ba42aa0f3aaf0800e166ce866492860405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111fc6120c3565b73ffffffffffffffffffffffffffffffffffffffff1661121a6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611270576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611267906149bd565b60405180910390fd5b816013819055508060148190555060145460135461128e9190614c16565b601281905550600a60125411156112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d19061481d565b60405180910390fd5b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61132e6120c3565b73ffffffffffffffffffffffffffffffffffffffff1661134c6115d8565b73ffffffffffffffffffffffffffffffffffffffff16146113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906149bd565b60405180910390fd5b6113ac6000613137565b565b60006113b86120c3565b73ffffffffffffffffffffffffffffffffffffffff166113d66115d8565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611423906149bd565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b6114566120c3565b73ffffffffffffffffffffffffffffffffffffffff166114746115d8565b73ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906149bd565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f60029054906101000a900460ff1681565b6115406120c3565b73ffffffffffffffffffffffffffffffffffffffff1661155e6115d8565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906149bd565b60405180910390fd5b6001600f60016101000a81548160ff02191690831515021790555042600a81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461161190614dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461163d90614dc5565b801561168a5780601f1061165f5761010080835404028352916020019161168a565b820191906000526020600020905b81548152906001019060200180831161166d57829003601f168201915b5050505050905090565b61169c6120c3565b73ffffffffffffffffffffffffffffffffffffffff166116ba6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611707906149bd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611798906148bd565b60405180910390fd5b6117ab82826131fd565b5050565b6000806117ba6120c3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790614a5d565b60405180910390fd5b61188d82868684036120cb565b60019250505092915050565b6000806118a46120c3565b90506118b1818585612322565b600191505092915050565b600f60019054906101000a900460ff1681565b6118d76120c3565b73ffffffffffffffffffffffffffffffffffffffff166118f56115d8565b73ffffffffffffffffffffffffffffffffffffffff161461194b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611942906149bd565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119e891906147c0565b60405180910390a25050565b6119fc6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611a1a6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a67906149bd565b60405180910390fd5b670de0b6b3a76400006103e86005611a86610e54565b611a909190614c9d565b611a9a9190614c6c565b611aa49190614c6c565b811015611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add9061489d565b60405180910390fd5b670de0b6b3a764000081611afa9190614c9d565b600e8190555050565b611b0b6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611b296115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b76906149bd565b60405180910390fd5b60005b8151811015611c3657600060086000848481518110611bca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611c2e90614df7565b915050611b82565b5050565b601160009054906101000a900460ff1681565b600c5481565b6000611c5d6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611c7b6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906149bd565b60405180910390fd5b620186a06001611cdf610e54565b611ce99190614c9d565b611cf39190614c6c565b821015611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c9061493d565b60405180910390fd5b6103e86005611d42610e54565b611d4c9190614c9d565b611d569190614c6c565b821115611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f9061495d565b60405180910390fd5b81600d8190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e376120c3565b73ffffffffffffffffffffffffffffffffffffffff16611e556115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea2906149bd565b60405180910390fd5b611eb44761329e565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611f1c573d6000803e3d6000fd5b50565b600d5481565b6000611f2f6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906149bd565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611fcd6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611feb6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906149bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a89061485d565b60405180910390fd5b6120ba81613137565b50565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614a1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a29061487d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122899190614a9d565b60405180910390a3505050565b60006122a28484611da8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461231c578181101561230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906148dd565b60405180910390fd5b61231b84848484036120cb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906149dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f9906147fd565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561248f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612486906149fd565b60405180910390fd5b60008114156124a9576124a483836000613562565b613132565b600a54421161250b576001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600f60009054906101000a900460ff1615612c73576125286115d8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561259657506125666115d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125cf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612609575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126225750600960009054906101000a900460ff16155b15612c7257600f60019054906101000a900460ff1661271c57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126dc5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61271b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127129061483d565b60405180910390fd5b5b6000612727836112de565b14801561277357506000601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b156127bd5742601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b601160009054906101000a900460ff1615612989576127da6115d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128635750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129885743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a9061499d565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a2c5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ad357600c54811115612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d9061497d565b60405180910390fd5b600e54612a82836112de565b82612a8d9190614c16565b1115612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac590614a3d565b60405180910390fd5b612c71565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b765750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc557600c54811115612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb79061491d565b60405180910390fd5b612c70565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c6f57600e54612c22836112de565b82612c2d9190614c16565b1115612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6590614a3d565b60405180910390fd5b5b5b5b5b5b6000612c7e306112de565b90506000600d548210159050808015612ca45750600960009054906101000a900460ff16155b8015612cfa5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d505750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612da65750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dea576001600960006101000a81548160ff021916908315150217905550612dce6137e3565b6000600960006101000a81548160ff0219169083151502179055505b6000600960009054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ea05750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612eaa57600090505b6000811561312257601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f175750600f60029054906101000a900460ff165b8015612f6357506000601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b8015612fbc57504262015180601960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fb99190614c16565b10155b1561306d57600080600c90506000612fdd83836139b090919063ffffffff16565b90506130056064612ff7838b6139c690919063ffffffff16565b6139dc90919063ffffffff16565b93508083856130149190614c9d565b61301e9190614c6c565b6016600082825461302f9190614c16565b925050819055508082856130439190614c9d565b61304d9190614c6c565b6015600082825461305e9190614c16565b925050819055505050506130fe565b6130956064613087601254886139c690919063ffffffff16565b6139dc90919063ffffffff16565b9050601254601454826130a89190614c9d565b6130b29190614c6c565b601660008282546130c39190614c16565b92505081905550601254601354826130db9190614c9d565b6130e59190614c6c565b601560008282546130f69190614c16565b925050819055505b600081111561311357613112873083613562565b5b808561311f9190614cf7565b94505b61312d878787613562565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156132e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561330f5781602001602082028036833780820191505090505b509050308160008151811061334d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156133ef57600080fd5b505afa158015613403573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134279190613c2e565b81600181518110613461577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120cb565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352c959493929190614ab8565b600060405180830381600087803b15801561354657600080fd5b505af115801561355a573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c9906149dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613639906147fd565b60405180910390fd5b61364d8383836139f2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ca906148fd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137669190614c16565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137ca9190614a9d565b60405180910390a36137dd8484846139f7565b50505050565b60006137ee306112de565b905060006015546016546138029190614c16565b905060008214806138135750600081145b1561381f5750506139ae565b600d5482111561382f57600d5491505b6000600282601654856138429190614c9d565b61384c9190614c6c565b6138569190614c6c565b9050600061386d82856139fc90919063ffffffff16565b9050600047905061387d8261329e565b600061389282476139fc90919063ffffffff16565b905060006138bd866138af601554856139c690919063ffffffff16565b6139dc90919063ffffffff16565b9050600081836138cd9190614cf7565b905060006016819055506000601581905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613947573d6000803e3d6000fd5b506000861180156139585750600081115b156139a5576139678682613a12565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260165460405161399c93929190614b12565b60405180910390a15b50505050505050505b565b600081836139be9190614c16565b905092915050565b600081836139d49190614c9d565b905092915050565b600081836139ea9190614c6c565b905092915050565b505050565b505050565b60008183613a0a9190614cf7565b905092915050565b613a3f30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120cb565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613a8b6115d8565b426040518863ffffffff1660e01b8152600401613aad9695949392919061475f565b6060604051808303818588803b158015613ac657600080fd5b505af1158015613ada573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613aff9190613e00565b5050505050565b6000613b19613b1484614b95565b614b64565b90508083825260208201905082856020860282011115613b3857600080fd5b60005b85811015613b685781613b4e8882613b72565b845260208401935060208301925050600181019050613b3b565b5050509392505050565b600081359050613b8181614f0d565b92915050565b600081519050613b9681614f0d565b92915050565b600082601f830112613bad57600080fd5b8135613bbd848260208601613b06565b91505092915050565b600081359050613bd581614f24565b92915050565b600081359050613bea81614f3b565b92915050565b600081519050613bff81614f3b565b92915050565b600060208284031215613c1757600080fd5b6000613c2584828501613b72565b91505092915050565b600060208284031215613c4057600080fd5b6000613c4e84828501613b87565b91505092915050565b60008060408385031215613c6a57600080fd5b6000613c7885828601613b72565b9250506020613c8985828601613b72565b9150509250929050565b600080600060608486031215613ca857600080fd5b6000613cb686828701613b72565b9350506020613cc786828701613b72565b9250506040613cd886828701613bdb565b9150509250925092565b60008060408385031215613cf557600080fd5b6000613d0385828601613b72565b9250506020613d1485828601613bc6565b9150509250929050565b60008060408385031215613d3157600080fd5b6000613d3f85828601613b72565b9250506020613d5085828601613bdb565b9150509250929050565b600060208284031215613d6c57600080fd5b600082013567ffffffffffffffff811115613d8657600080fd5b613d9284828501613b9c565b91505092915050565b600060208284031215613dad57600080fd5b6000613dbb84828501613bdb565b91505092915050565b60008060408385031215613dd757600080fd5b6000613de585828601613bdb565b9250506020613df685828601613bdb565b9150509250929050565b600080600060608486031215613e1557600080fd5b6000613e2386828701613bf0565b9350506020613e3486828701613bf0565b9250506040613e4586828701613bf0565b9150509250925092565b6000613e5b8383613e67565b60208301905092915050565b613e7081614d2b565b82525050565b613e7f81614d2b565b82525050565b6000613e9082614bd1565b613e9a8185614bf4565b9350613ea583614bc1565b8060005b83811015613ed6578151613ebd8882613e4f565b9750613ec883614be7565b925050600181019050613ea9565b5085935050505092915050565b613eec81614d3d565b82525050565b613efb81614d80565b82525050565b6000613f0c82614bdc565b613f168185614c05565b9350613f26818560208601614d92565b613f2f81614efc565b840191505092915050565b6000613f47602383614c05565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fad601d83614c05565b91507f4d757374206b656570206665657320617420313025206f72206c6573730000006000830152602082019050919050565b6000613fed601683614c05565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061402d602683614c05565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614093602283614c05565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140f9602483614c05565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061415f603983614c05565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b60006141c5601d83614c05565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000614205602683614c05565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061426b603683614c05565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006142d1603583614c05565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614337603483614c05565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b600061439d603583614c05565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614403604983614c05565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b600061448f602083614c05565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006144cf602583614c05565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614535604d83614c05565b91507f596f7572206164647265737320686173206265656e206d61726b65642061732060008301527f6120736e697065722c20796f752061726520756e61626c6520746f207472616e60208301527f73666572206f7220737761702e000000000000000000000000000000000000006040830152606082019050919050565b60006145c1602483614c05565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614627601383614c05565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614667602583614c05565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146cd602f83614c05565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b61472f81614d69565b82525050565b61473e81614d73565b82525050565b60006020820190506147596000830184613e76565b92915050565b600060c0820190506147746000830189613e76565b6147816020830188614726565b61478e6040830187613ef2565b61479b6060830186613ef2565b6147a86080830185613e76565b6147b560a0830184614726565b979650505050505050565b60006020820190506147d56000830184613ee3565b92915050565b600060208201905081810360008301526147f58184613f01565b905092915050565b6000602082019050818103600083015261481681613f3a565b9050919050565b6000602082019050818103600083015261483681613fa0565b9050919050565b6000602082019050818103600083015261485681613fe0565b9050919050565b6000602082019050818103600083015261487681614020565b9050919050565b6000602082019050818103600083015261489681614086565b9050919050565b600060208201905081810360008301526148b6816140ec565b9050919050565b600060208201905081810360008301526148d681614152565b9050919050565b600060208201905081810360008301526148f6816141b8565b9050919050565b60006020820190508181036000830152614916816141f8565b9050919050565b600060208201905081810360008301526149368161425e565b9050919050565b60006020820190508181036000830152614956816142c4565b9050919050565b600060208201905081810360008301526149768161432a565b9050919050565b6000602082019050818103600083015261499681614390565b9050919050565b600060208201905081810360008301526149b6816143f6565b9050919050565b600060208201905081810360008301526149d681614482565b9050919050565b600060208201905081810360008301526149f6816144c2565b9050919050565b60006020820190508181036000830152614a1681614528565b9050919050565b60006020820190508181036000830152614a36816145b4565b9050919050565b60006020820190508181036000830152614a568161461a565b9050919050565b60006020820190508181036000830152614a768161465a565b9050919050565b60006020820190508181036000830152614a96816146c0565b9050919050565b6000602082019050614ab26000830184614726565b92915050565b600060a082019050614acd6000830188614726565b614ada6020830187613ef2565b8181036040830152614aec8186613e85565b9050614afb6060830185613e76565b614b086080830184614726565b9695505050505050565b6000606082019050614b276000830186614726565b614b346020830185614726565b614b416040830184614726565b949350505050565b6000602082019050614b5e6000830184614735565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b8b57614b8a614ecd565b5b8060405250919050565b600067ffffffffffffffff821115614bb057614baf614ecd565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614c2182614d69565b9150614c2c83614d69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6157614c60614e40565b5b828201905092915050565b6000614c7782614d69565b9150614c8283614d69565b925082614c9257614c91614e6f565b5b828204905092915050565b6000614ca882614d69565b9150614cb383614d69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cec57614ceb614e40565b5b828202905092915050565b6000614d0282614d69565b9150614d0d83614d69565b925082821015614d2057614d1f614e40565b5b828203905092915050565b6000614d3682614d49565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614d8b82614d69565b9050919050565b60005b83811015614db0578082015181840152602081019050614d95565b83811115614dbf576000848401525b50505050565b60006002820490506001821680614ddd57607f821691505b60208210811415614df157614df0614e9e565b5b50919050565b6000614e0282614d69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3557614e34614e40565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614f1681614d2b565b8114614f2157600080fd5b50565b614f2d81614d3d565b8114614f3857600080fd5b50565b614f4481614d69565b8114614f4f57600080fd5b5056fea26469706673582212206994a66ec987be52d6c7b8136e6ff586e6a65e8adac5d712de93f363769f165664736f6c63430008000033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806375c5df911161012e578063c8125e45116100ab578063df778d261161006f578063df778d2614610892578063e2f45605146108a9578063e884f260146108d4578063f2fde38b146108ff578063f8b45b051461092857610246565b8063c8125e4514610799578063c876d0b9146107c2578063c8c8ebe4146107ed578063d257b34f14610818578063dd62ed3e1461085557610246565b8063a457c2d7116100f2578063a457c2d7146106a2578063a9059cbb146106df578063bbc0c7421461071c578063c024666814610747578063c18bc1951461077057610246565b806375c5df91146105e15780638a8c523c1461060c5780638da5cb5b1461062357806395d89b411461064e5780639a7a23d61461067957610246565b8063313ce567116101bc5780636db79437116101805780636db794371461051057806370a0823114610539578063715018a614610576578063751039fc1461058d5780637571336a146105b857610246565b8063313ce5671461041757806339509351146104425780634a62bb651461047f5780634fbee193146104aa57806366718524146104e757610246565b806312b77e8a1161020357806312b77e8a1461034457806313114a9d1461035b57806318160ddd14610386578063203e727e146103b157806323b872dd146103da57610246565b8063056415ca1461024b57806306fdde0314610276578063095ea7b3146102a15780630b559c6f146102de5780630f3a325f1461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610953565b60405161026d91906147c0565b60405180910390f35b34801561028257600080fd5b5061028b6109f3565b60405161029891906147db565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c39190613d1e565b610a85565b6040516102d591906147c0565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190613d5a565b610aa8565b005b34801561031357600080fd5b5061032e60048036038101906103299190613c05565b610d11565b60405161033b91906147c0565b60405180910390f35b34801561035057600080fd5b50610359610d67565b005b34801561036757600080fd5b50610370610e4e565b60405161037d9190614a9d565b60405180910390f35b34801561039257600080fd5b5061039b610e54565b6040516103a89190614a9d565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613d9b565b610e5e565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190613c93565b610f6d565b60405161040e91906147c0565b60405180910390f35b34801561042357600080fd5b5061042c610f9c565b6040516104399190614b49565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613d1e565b610fa5565b60405161047691906147c0565b60405180910390f35b34801561048b57600080fd5b5061049461104f565b6040516104a191906147c0565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613c05565b611062565b6040516104de91906147c0565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613c05565b6110b8565b005b34801561051c57600080fd5b5061053760048036038101906105329190613dc4565b6111f4565b005b34801561054557600080fd5b50610560600480360381019061055b9190613c05565b6112de565b60405161056d9190614a9d565b60405180910390f35b34801561058257600080fd5b5061058b611326565b005b34801561059957600080fd5b506105a26113ae565b6040516105af91906147c0565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613ce2565b61144e565b005b3480156105ed57600080fd5b506105f6611525565b60405161060391906147c0565b60405180910390f35b34801561061857600080fd5b50610621611538565b005b34801561062f57600080fd5b506106386115d8565b6040516106459190614744565b60405180910390f35b34801561065a57600080fd5b50610663611602565b60405161067091906147db565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613ce2565b611694565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613d1e565b6117af565b6040516106d691906147c0565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613d1e565b611899565b60405161071391906147c0565b60405180910390f35b34801561072857600080fd5b506107316118bc565b60405161073e91906147c0565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613ce2565b6118cf565b005b34801561077c57600080fd5b5061079760048036038101906107929190613d9b565b6119f4565b005b3480156107a557600080fd5b506107c060048036038101906107bb9190613d5a565b611b03565b005b3480156107ce57600080fd5b506107d7611c3a565b6040516107e491906147c0565b60405180910390f35b3480156107f957600080fd5b50610802611c4d565b60405161080f9190614a9d565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190613d9b565b611c53565b60405161084c91906147c0565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613c57565b611da8565b6040516108899190614a9d565b60405180910390f35b34801561089e57600080fd5b506108a7611e2f565b005b3480156108b557600080fd5b506108be611f1f565b6040516108cb9190614a9d565b60405180910390f35b3480156108e057600080fd5b506108e9611f25565b6040516108f691906147c0565b60405180910390f35b34801561090b57600080fd5b5061092660048036038101906109219190613c05565b611fc5565b005b34801561093457600080fd5b5061093d6120bd565b60405161094a9190614a9d565b60405180910390f35b600061095d6120c3565b73ffffffffffffffffffffffffffffffffffffffff1661097b6115d8565b73ffffffffffffffffffffffffffffffffffffffff16146109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c8906149bd565b60405180910390fd5b6000600f60026101000a81548160ff0219169083151502179055506001905090565b606060038054610a0290614dc5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90614dc5565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b600080610a906120c3565b9050610a9d8185856120cb565b600191505092915050565b610ab06120c3565b73ffffffffffffffffffffffffffffffffffffffff16610ace6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b906149bd565b60405180910390fd5b60005b8151811015610d0d57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16828281518110610ba2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614158015610c5c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16828281518110610c3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614155b15610cfa57600060086000848481518110610ca0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080610d0590614df7565b915050610b27565b5050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d6f6120c3565b73ffffffffffffffffffffffffffffffffffffffff16610d8d6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906149bd565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e4b573d6000803e3d6000fd5b50565b60125481565b6000600254905090565b610e666120c3565b73ffffffffffffffffffffffffffffffffffffffff16610e846115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906149bd565b60405180910390fd5b670de0b6b3a76400006103e86001610ef0610e54565b610efa9190614c9d565b610f049190614c6c565b610f0e9190614c6c565b811015610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790614a7d565b60405180910390fd5b670de0b6b3a764000081610f649190614c9d565b600c8190555050565b600080610f786120c3565b9050610f85858285612296565b610f90858585612322565b60019150509392505050565b60006012905090565b600080610fb06120c3565b9050611044818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461103f9190614c16565b6120cb565b600191505092915050565b600f60009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06120c3565b73ffffffffffffffffffffffffffffffffffffffff166110de6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b906149bd565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f5deb5ef622431f0df5a39b72dd556892f68ba42aa0f3aaf0800e166ce866492860405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111fc6120c3565b73ffffffffffffffffffffffffffffffffffffffff1661121a6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611270576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611267906149bd565b60405180910390fd5b816013819055508060148190555060145460135461128e9190614c16565b601281905550600a60125411156112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d19061481d565b60405180910390fd5b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61132e6120c3565b73ffffffffffffffffffffffffffffffffffffffff1661134c6115d8565b73ffffffffffffffffffffffffffffffffffffffff16146113a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611399906149bd565b60405180910390fd5b6113ac6000613137565b565b60006113b86120c3565b73ffffffffffffffffffffffffffffffffffffffff166113d66115d8565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611423906149bd565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b6114566120c3565b73ffffffffffffffffffffffffffffffffffffffff166114746115d8565b73ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906149bd565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f60029054906101000a900460ff1681565b6115406120c3565b73ffffffffffffffffffffffffffffffffffffffff1661155e6115d8565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906149bd565b60405180910390fd5b6001600f60016101000a81548160ff02191690831515021790555042600a81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461161190614dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461163d90614dc5565b801561168a5780601f1061165f5761010080835404028352916020019161168a565b820191906000526020600020905b81548152906001019060200180831161166d57829003601f168201915b5050505050905090565b61169c6120c3565b73ffffffffffffffffffffffffffffffffffffffff166116ba6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611710576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611707906149bd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611798906148bd565b60405180910390fd5b6117ab82826131fd565b5050565b6000806117ba6120c3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790614a5d565b60405180910390fd5b61188d82868684036120cb565b60019250505092915050565b6000806118a46120c3565b90506118b1818585612322565b600191505092915050565b600f60019054906101000a900460ff1681565b6118d76120c3565b73ffffffffffffffffffffffffffffffffffffffff166118f56115d8565b73ffffffffffffffffffffffffffffffffffffffff161461194b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611942906149bd565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119e891906147c0565b60405180910390a25050565b6119fc6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611a1a6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a67906149bd565b60405180910390fd5b670de0b6b3a76400006103e86005611a86610e54565b611a909190614c9d565b611a9a9190614c6c565b611aa49190614c6c565b811015611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add9061489d565b60405180910390fd5b670de0b6b3a764000081611afa9190614c9d565b600e8190555050565b611b0b6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611b296115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b76906149bd565b60405180910390fd5b60005b8151811015611c3657600060086000848481518110611bca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611c2e90614df7565b915050611b82565b5050565b601160009054906101000a900460ff1681565b600c5481565b6000611c5d6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611c7b6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906149bd565b60405180910390fd5b620186a06001611cdf610e54565b611ce99190614c9d565b611cf39190614c6c565b821015611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c9061493d565b60405180910390fd5b6103e86005611d42610e54565b611d4c9190614c9d565b611d569190614c6c565b821115611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f9061495d565b60405180910390fd5b81600d8190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e376120c3565b73ffffffffffffffffffffffffffffffffffffffff16611e556115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea2906149bd565b60405180910390fd5b611eb44761329e565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611f1c573d6000803e3d6000fd5b50565b600d5481565b6000611f2f6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906149bd565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b611fcd6120c3565b73ffffffffffffffffffffffffffffffffffffffff16611feb6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906149bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a89061485d565b60405180910390fd5b6120ba81613137565b50565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614a1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a29061487d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122899190614a9d565b60405180910390a3505050565b60006122a28484611da8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461231c578181101561230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906148dd565b60405180910390fd5b61231b84848484036120cb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612389906149dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f9906147fd565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561248f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612486906149fd565b60405180910390fd5b60008114156124a9576124a483836000613562565b613132565b600a54421161250b576001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600f60009054906101000a900460ff1615612c73576125286115d8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561259657506125666115d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125cf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612609575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126225750600960009054906101000a900460ff16155b15612c7257600f60019054906101000a900460ff1661271c57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126dc5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61271b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127129061483d565b60405180910390fd5b5b6000612727836112de565b14801561277357506000601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b156127bd5742601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b601160009054906101000a900460ff1615612989576127da6115d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128635750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129885743601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a9061499d565b60405180910390fd5b43601060003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a2c5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ad357600c54811115612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d9061497d565b60405180910390fd5b600e54612a82836112de565b82612a8d9190614c16565b1115612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac590614a3d565b60405180910390fd5b612c71565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b765750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc557600c54811115612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb79061491d565b60405180910390fd5b612c70565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c6f57600e54612c22836112de565b82612c2d9190614c16565b1115612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6590614a3d565b60405180910390fd5b5b5b5b5b5b6000612c7e306112de565b90506000600d548210159050808015612ca45750600960009054906101000a900460ff16155b8015612cfa5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d505750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612da65750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dea576001600960006101000a81548160ff021916908315150217905550612dce6137e3565b6000600960006101000a81548160ff0219169083151502179055505b6000600960009054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ea05750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612eaa57600090505b6000811561312257601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f175750600f60029054906101000a900460ff165b8015612f6357506000601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b8015612fbc57504262015180601960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fb99190614c16565b10155b1561306d57600080600c90506000612fdd83836139b090919063ffffffff16565b90506130056064612ff7838b6139c690919063ffffffff16565b6139dc90919063ffffffff16565b93508083856130149190614c9d565b61301e9190614c6c565b6016600082825461302f9190614c16565b925050819055508082856130439190614c9d565b61304d9190614c6c565b6015600082825461305e9190614c16565b925050819055505050506130fe565b6130956064613087601254886139c690919063ffffffff16565b6139dc90919063ffffffff16565b9050601254601454826130a89190614c9d565b6130b29190614c6c565b601660008282546130c39190614c16565b92505081905550601254601354826130db9190614c9d565b6130e59190614c6c565b601560008282546130f69190614c16565b925050819055505b600081111561311357613112873083613562565b5b808561311f9190614cf7565b94505b61312d878787613562565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156132e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561330f5781602001602082028036833780820191505090505b509050308160008151811061334d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156133ef57600080fd5b505afa158015613403573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134279190613c2e565b81600181518110613461577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120cb565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352c959493929190614ab8565b600060405180830381600087803b15801561354657600080fd5b505af115801561355a573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c9906149dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613639906147fd565b60405180910390fd5b61364d8383836139f2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ca906148fd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137669190614c16565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137ca9190614a9d565b60405180910390a36137dd8484846139f7565b50505050565b60006137ee306112de565b905060006015546016546138029190614c16565b905060008214806138135750600081145b1561381f5750506139ae565b600d5482111561382f57600d5491505b6000600282601654856138429190614c9d565b61384c9190614c6c565b6138569190614c6c565b9050600061386d82856139fc90919063ffffffff16565b9050600047905061387d8261329e565b600061389282476139fc90919063ffffffff16565b905060006138bd866138af601554856139c690919063ffffffff16565b6139dc90919063ffffffff16565b9050600081836138cd9190614cf7565b905060006016819055506000601581905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015613947573d6000803e3d6000fd5b506000861180156139585750600081115b156139a5576139678682613a12565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260165460405161399c93929190614b12565b60405180910390a15b50505050505050505b565b600081836139be9190614c16565b905092915050565b600081836139d49190614c9d565b905092915050565b600081836139ea9190614c6c565b905092915050565b505050565b505050565b60008183613a0a9190614cf7565b905092915050565b613a3f30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120cb565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613a8b6115d8565b426040518863ffffffff1660e01b8152600401613aad9695949392919061475f565b6060604051808303818588803b158015613ac657600080fd5b505af1158015613ada573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613aff9190613e00565b5050505050565b6000613b19613b1484614b95565b614b64565b90508083825260208201905082856020860282011115613b3857600080fd5b60005b85811015613b685781613b4e8882613b72565b845260208401935060208301925050600181019050613b3b565b5050509392505050565b600081359050613b8181614f0d565b92915050565b600081519050613b9681614f0d565b92915050565b600082601f830112613bad57600080fd5b8135613bbd848260208601613b06565b91505092915050565b600081359050613bd581614f24565b92915050565b600081359050613bea81614f3b565b92915050565b600081519050613bff81614f3b565b92915050565b600060208284031215613c1757600080fd5b6000613c2584828501613b72565b91505092915050565b600060208284031215613c4057600080fd5b6000613c4e84828501613b87565b91505092915050565b60008060408385031215613c6a57600080fd5b6000613c7885828601613b72565b9250506020613c8985828601613b72565b9150509250929050565b600080600060608486031215613ca857600080fd5b6000613cb686828701613b72565b9350506020613cc786828701613b72565b9250506040613cd886828701613bdb565b9150509250925092565b60008060408385031215613cf557600080fd5b6000613d0385828601613b72565b9250506020613d1485828601613bc6565b9150509250929050565b60008060408385031215613d3157600080fd5b6000613d3f85828601613b72565b9250506020613d5085828601613bdb565b9150509250929050565b600060208284031215613d6c57600080fd5b600082013567ffffffffffffffff811115613d8657600080fd5b613d9284828501613b9c565b91505092915050565b600060208284031215613dad57600080fd5b6000613dbb84828501613bdb565b91505092915050565b60008060408385031215613dd757600080fd5b6000613de585828601613bdb565b9250506020613df685828601613bdb565b9150509250929050565b600080600060608486031215613e1557600080fd5b6000613e2386828701613bf0565b9350506020613e3486828701613bf0565b9250506040613e4586828701613bf0565b9150509250925092565b6000613e5b8383613e67565b60208301905092915050565b613e7081614d2b565b82525050565b613e7f81614d2b565b82525050565b6000613e9082614bd1565b613e9a8185614bf4565b9350613ea583614bc1565b8060005b83811015613ed6578151613ebd8882613e4f565b9750613ec883614be7565b925050600181019050613ea9565b5085935050505092915050565b613eec81614d3d565b82525050565b613efb81614d80565b82525050565b6000613f0c82614bdc565b613f168185614c05565b9350613f26818560208601614d92565b613f2f81614efc565b840191505092915050565b6000613f47602383614c05565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fad601d83614c05565b91507f4d757374206b656570206665657320617420313025206f72206c6573730000006000830152602082019050919050565b6000613fed601683614c05565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061402d602683614c05565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614093602283614c05565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140f9602483614c05565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061415f603983614c05565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b60006141c5601d83614c05565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000614205602683614c05565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061426b603683614c05565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006142d1603583614c05565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614337603483614c05565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b600061439d603583614c05565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614403604983614c05565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b600061448f602083614c05565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006144cf602583614c05565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614535604d83614c05565b91507f596f7572206164647265737320686173206265656e206d61726b65642061732060008301527f6120736e697065722c20796f752061726520756e61626c6520746f207472616e60208301527f73666572206f7220737761702e000000000000000000000000000000000000006040830152606082019050919050565b60006145c1602483614c05565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614627601383614c05565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614667602583614c05565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146cd602f83614c05565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b61472f81614d69565b82525050565b61473e81614d73565b82525050565b60006020820190506147596000830184613e76565b92915050565b600060c0820190506147746000830189613e76565b6147816020830188614726565b61478e6040830187613ef2565b61479b6060830186613ef2565b6147a86080830185613e76565b6147b560a0830184614726565b979650505050505050565b60006020820190506147d56000830184613ee3565b92915050565b600060208201905081810360008301526147f58184613f01565b905092915050565b6000602082019050818103600083015261481681613f3a565b9050919050565b6000602082019050818103600083015261483681613fa0565b9050919050565b6000602082019050818103600083015261485681613fe0565b9050919050565b6000602082019050818103600083015261487681614020565b9050919050565b6000602082019050818103600083015261489681614086565b9050919050565b600060208201905081810360008301526148b6816140ec565b9050919050565b600060208201905081810360008301526148d681614152565b9050919050565b600060208201905081810360008301526148f6816141b8565b9050919050565b60006020820190508181036000830152614916816141f8565b9050919050565b600060208201905081810360008301526149368161425e565b9050919050565b60006020820190508181036000830152614956816142c4565b9050919050565b600060208201905081810360008301526149768161432a565b9050919050565b6000602082019050818103600083015261499681614390565b9050919050565b600060208201905081810360008301526149b6816143f6565b9050919050565b600060208201905081810360008301526149d681614482565b9050919050565b600060208201905081810360008301526149f6816144c2565b9050919050565b60006020820190508181036000830152614a1681614528565b9050919050565b60006020820190508181036000830152614a36816145b4565b9050919050565b60006020820190508181036000830152614a568161461a565b9050919050565b60006020820190508181036000830152614a768161465a565b9050919050565b60006020820190508181036000830152614a96816146c0565b9050919050565b6000602082019050614ab26000830184614726565b92915050565b600060a082019050614acd6000830188614726565b614ada6020830187613ef2565b8181036040830152614aec8186613e85565b9050614afb6060830185613e76565b614b086080830184614726565b9695505050505050565b6000606082019050614b276000830186614726565b614b346020830185614726565b614b416040830184614726565b949350505050565b6000602082019050614b5e6000830184614735565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b8b57614b8a614ecd565b5b8060405250919050565b600067ffffffffffffffff821115614bb057614baf614ecd565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614c2182614d69565b9150614c2c83614d69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6157614c60614e40565b5b828201905092915050565b6000614c7782614d69565b9150614c8283614d69565b925082614c9257614c91614e6f565b5b828204905092915050565b6000614ca882614d69565b9150614cb383614d69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cec57614ceb614e40565b5b828202905092915050565b6000614d0282614d69565b9150614d0d83614d69565b925082821015614d2057614d1f614e40565b5b828203905092915050565b6000614d3682614d49565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614d8b82614d69565b9050919050565b60005b83811015614db0578082015181840152602081019050614d95565b83811115614dbf576000848401525b50505050565b60006002820490506001821680614ddd57607f821691505b60208210811415614df157614df0614e9e565b5b50919050565b6000614e0282614d69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3557614e34614e40565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614f1681614d2b565b8114614f2157600080fd5b50565b614f2d81614d3d565b8114614f3857600080fd5b50565b614f4481614d69565b8114614f4f57600080fd5b5056fea26469706673582212206994a66ec987be52d6c7b8136e6ff586e6a65e8adac5d712de93f363769f165664736f6c63430008000033

Deployed Bytecode Sourcemap

270:14530:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4159:127;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2196:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4547:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6815:322:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7364:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14651:109;;;;;;;;;;;;;:::i;:::-;;1073:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3316:108:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4955:232:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5328:295:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3158:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6032:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;720:33:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6678:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6513:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5574:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3487:127:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;3996:121:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5418:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;800:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3817:123;;;;;;;;;;;;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2415:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6061:244:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6775:438:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3820:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;760:33:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5871:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5195:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7149:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1025:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;597:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4561:382;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4076:151:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14483:160:8;;;;;;;;;;;;;:::i;:::-;;639:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4351:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;679:24:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4159:127;4216:4;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4251:5:8::1;4233:15;;:23;;;;;;;;;;;;;;;;;;4274:4;4267:11;;4159:127:::0;:::o;2196:100:1:-;2250:13;2283:5;2276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100;:::o;4547:201::-;4630:4;4647:13;4663:12;:10;:12::i;:::-;4647:28;;4686:32;4695:5;4702:7;4711:6;4686:8;:32::i;:::-;4736:4;4729:11;;;4547:201;;;;:::o;6815:322:8:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:6:8::1;6898:232;6919:12;:19;6915:1;:23;6898:232;;;6983:13;;;;;;;;;;;6964:32;;:12;6977:1;6964:15;;;;;;;;;;;;;;;;;;;;;;:32;;;;:79;;;;;7027:15;;;;;;;;;;;7000:43;;:12;7013:1;7000:15;;;;;;;;;;;;;;;;;;;;;;:43;;;;6964:79;6960:159;;;7098:5;7064:14;:31;7079:12;7092:1;7079:15;;;;;;;;;;;;;;;;;;;;;;7064:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;6960:159;6940:3;;;;;:::i;:::-;;;;6898:232;;;;6815:322:::0;:::o;7364:105::-;7417:4;7441:14;:20;7456:4;7441:20;;;;;;;;;;;;;;;;;;;;;;;;;7434:27;;7364:105;;;:::o;14651:109::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14710:9:8::1;;;;;;;;;;;14702:27;;:50;14730:21;14702:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;14651:109::o:0;1073:24::-;;;;:::o;3316:108:1:-;3377:7;3404:12;;3397:19;;3316:108;:::o;4955:232:8:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5076:4:8::1;5068;5064:1;5048:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;5047:33;;;;:::i;:::-;5037:6;:43;;5029:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5175:4;5166:6;:13;;;;:::i;:::-;5143:20;:36;;;;4955:232:::0;:::o;5328:295:1:-;5459:4;5476:15;5494:12;:10;:12::i;:::-;5476:30;;5517:38;5533:4;5539:7;5548:6;5517:15;:38::i;:::-;5566:27;5576:4;5582:2;5586:6;5566:9;:27::i;:::-;5611:4;5604:11;;;5328:295;;;;;:::o;3158:93::-;3216:5;3241:2;3234:9;;3158:93;:::o;6032:240::-;6120:4;6137:13;6153:12;:10;:12::i;:::-;6137:28;;6176:66;6185:5;6192:7;6231:10;6201:11;:18;6213:5;6201:18;;;;;;;;;;;;;;;:27;6220:7;6201:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;6176:8;:66::i;:::-;6260:4;6253:11;;;6032:240;;;;:::o;720:33:8:-;;;;;;;;;;;;;:::o;6678:125::-;6743:4;6767:19;:28;6787:7;6767:28;;;;;;;;;;;;;;;;;;;;;;;;;6760:35;;6678:125;;;:::o;6513:157::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6620:9:8::1;;;;;;;;;;;6592:38;;6609:9;6592:38;;;;;;;;;;;;6653:9;6641;;:21;;;;;;;;;;;;;;;;;;6513:157:::0;:::o;5574:289::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5684:12:8::1;5668:13;:28;;;;5723:12;5707:13;:28;;;;5774:13;;5758;;:29;;;;:::i;:::-;5746:9;:41;;;;5819:2;5806:9;;:15;;5798:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;5574:289:::0;;:::o;3487:127:1:-;3561:7;3588:9;:18;3598:7;3588:18;;;;;;;;;;;;;;;;3581:25;;3487:127;;;:::o;1714:103:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;3996:121:8:-;4048:4;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4082:5:8::1;4065:14;;:22;;;;;;;;;;;;;;;;;;4105:4;4098:11;;3996:121:::0;:::o;5418:144::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5550:4:8::1;5508:31;:39;5540:6;5508:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;5418:144:::0;;:::o;800:34::-;;;;;;;;;;;;;:::o;3817:123::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3888:4:8::1;3872:13;;:20;;;;;;;;;;;;;;;;;;3917:15;3903:11;:29;;;;3817:123::o:0;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;2415:104:1:-;2471:13;2504:7;2497:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415:104;:::o;6061:244:8:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6168:13:8::1;;;;;;;;;;;6160:21;;:4;:21;;;;6152:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;6256:41;6285:4;6291:5;6256:28;:41::i;:::-;6061:244:::0;;:::o;6775:438:1:-;6868:4;6885:13;6901:12;:10;:12::i;:::-;6885:28;;6924:24;6951:11;:18;6963:5;6951:18;;;;;;;;;;;;;;;:27;6970:7;6951:27;;;;;;;;;;;;;;;;6924:54;;7017:15;6997:16;:35;;6989:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7110:60;7119:5;7126:7;7154:15;7135:16;:34;7110:8;:60::i;:::-;7201:4;7194:11;;;;6775:438;;;;:::o;3820:193::-;3899:4;3916:13;3932:12;:10;:12::i;:::-;3916:28;;3955;3965:5;3972:2;3976:6;3955:9;:28::i;:::-;4001:4;3994:11;;;3820:193;;;;:::o;760:33:8:-;;;;;;;;;;;;;:::o;5871:182::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5987:8:8::1;5956:19;:28;5976:7;5956:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;6027:7;6011:34;;;6036:8;6011:34;;;;;;:::i;:::-;;;;;;;;5871:182:::0;;:::o;5195:211::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5317:4:8::1;5311;5307:1;5291:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;5290:31;;;;:::i;:::-;5280:6;:41;;5272:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;5394:4;5385:6;:13;;;;:::i;:::-;5373:9;:25;;;;5195:211:::0;:::o;7149:203::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7237:6:8::1;7232:113;7253:12;:19;7249:1;:23;7232:113;;;7328:5;7294:14;:31;7309:12;7322:1;7309:15;;;;;;;;;;;;;;;;;;;;;;7294:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;7274:3;;;;;:::i;:::-;;;;7232:113;;;;7149:203:::0;:::o;1025:39::-;;;;;;;;;;;;;:::o;597:35::-;;;;:::o;4561:382::-;4642:4;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4699:6:8::1;4695:1;4679:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;4666:9;:39;;4658:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;4814:4;4810:1;4794:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;4781:9;:37;;4773:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4906:9;4885:18;:30;;;;4932:4;4925:11;;4561:382:::0;;;:::o;4076:151:1:-;4165:7;4192:11;:18;4204:5;4192:18;;;;;;;;;;;;;;;:27;4211:7;4192:27;;;;;;;;;;;;;;;;4185:34;;4076:151;;;;:::o;14483:160:8:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14534:40:8::1;14552:21;14534:17;:40::i;:::-;14593:9;;;;;;;;;;;14585:27;;:50;14613:21;14585:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;14483:160::o:0;639:33::-;;;;:::o;4351:135::-;4411:4;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4451:5:8::1;4428:20;;:28;;;;;;;;;;;;;;;;;;4474:4;4467:11;;4351:135:::0;:::o;1972:201:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;679:24:8:-;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10411:380:1:-;10564:1;10547:19;;:5;:19;;;;10539:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10645:1;10626:21;;:7;:21;;;;10618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10729:6;10699:11;:18;10711:5;10699:18;;;;;;;;;;;;;;;:27;10718:7;10699:27;;;;;;;;;;;;;;;:36;;;;10767:7;10751:32;;10760:5;10751:32;;;10776:6;10751:32;;;;;;:::i;:::-;;;;;;;;10411:380;;;:::o;11078:453::-;11213:24;11240:25;11250:5;11257:7;11240:9;:25::i;:::-;11213:52;;11300:17;11280:16;:37;11276:248;;11362:6;11342:16;:26;;11334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11446:51;11455:5;11462:7;11490:6;11471:16;:25;11446:8;:51::i;:::-;11276:248;11078:453;;;;:::o;7477:4520:8:-;7625:1;7609:18;;:4;:18;;;;7601:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7702:1;7688:16;;:2;:16;;;;7680:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7764:14;:20;7779:4;7764:20;;;;;;;;;;;;;;;;;;;;;;;;;7763:21;7755:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7902:1;7892:6;:11;7888:93;;;7920:28;7936:4;7942:2;7946:1;7920:15;:28::i;:::-;7963:7;;7888:93;8016:11;;7997:15;:30;7993:61;;8050:4;8029:14;:18;8044:2;8029:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;7993:61;8079:14;;;;;;;;;;;8075:2057;;;8140:7;:5;:7::i;:::-;8132:15;;:4;:15;;;;:49;;;;;8174:7;:5;:7::i;:::-;8168:13;;:2;:13;;;;8132:49;:86;;;;;8216:1;8202:16;;:2;:16;;;;8132:86;:128;;;;;8253:6;8239:21;;:2;:21;;;;8132:128;:159;;;;;8282:9;;;;;;;;;;;8281:10;8132:159;8110:2011;;;8331:13;;;;;;;;;;;8326:150;;8377:19;:25;8397:4;8377:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;8406:19;:23;8426:2;8406:23;;;;;;;;;;;;;;;;;;;;;;;;;8377:52;8369:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;8326:150;8566:1;8549:13;8559:2;8549:9;:13::i;:::-;:18;:55;;;;;8603:1;8571:24;:28;8596:2;8571:28;;;;;;;;;;;;;;;;:33;8549:55;8545:150;;;8660:15;8629:24;:28;8654:2;8629:28;;;;;;;;;;;;;;;:46;;;;8545:150;8853:20;;;;;;;;;;;8849:423;;;8907:7;:5;:7::i;:::-;8901:13;;:2;:13;;;;:47;;;;;8932:15;;;;;;;;;;;8918:30;;:2;:30;;;;8901:47;:79;;;;;8966:13;;;;;;;;;;;8952:28;;:2;:28;;;;8901:79;8897:356;;;9058:12;9016:28;:39;9045:9;9016:39;;;;;;;;;;;;;;;;:54;9008:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;9217:12;9175:28;:39;9204:9;9175:39;;;;;;;;;;;;;;;:54;;;;8897:356;8849:423;9342:25;:31;9368:4;9342:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;9378:31;:35;9410:2;9378:35;;;;;;;;;;;;;;;;;;;;;;;;;9377:36;9342:71;9338:768;;;9456:20;;9446:6;:30;;9438:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;9591:9;;9574:13;9584:2;9574:9;:13::i;:::-;9565:6;:22;;;;:::i;:::-;:35;;9557:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9338:768;;;9719:25;:29;9745:2;9719:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;9753:31;:37;9785:4;9753:37;;;;;;;;;;;;;;;;;;;;;;;;;9752:38;9719:71;9715:391;;;9833:20;;9823:6;:30;;9815:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;9715:391;;;9960:31;:35;9992:2;9960:35;;;;;;;;;;;;;;;;;;;;;;;;;9955:151;;10053:9;;10036:13;10046:2;10036:9;:13::i;:::-;10027:6;:22;;;;:::i;:::-;:35;;10019:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9955:151;9715:391;9338:768;8110:2011;8075:2057;10146:28;10177:24;10195:4;10177:9;:24::i;:::-;10146:55;;10212:12;10251:18;;10227:20;:42;;10212:57;;10298:7;:34;;;;;10323:9;;;;;;;;;;;10322:10;10298:34;:83;;;;;10350:25;:31;10376:4;10350:31;;;;;;;;;;;;;;;;;;;;;;;;;10349:32;10298:83;:126;;;;;10399:19;:25;10419:4;10399:25;;;;;;;;;;;;;;;;;;;;;;;;;10398:26;10298:126;:167;;;;;10442:19;:23;10462:2;10442:23;;;;;;;;;;;;;;;;;;;;;;;;;10441:24;10298:167;10280:297;;;10504:4;10492:9;;:16;;;;;;;;;;;;;;;;;;10523:10;:8;:10::i;:::-;10560:5;10548:9;;:17;;;;;;;;;;;;;;;;;;10280:297;10589:12;10605:9;;;;;;;;;;;10604:10;10589:25;;10716:19;:25;10736:4;10716:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;10745:19;:23;10765:2;10745:23;;;;;;;;;;;;;;;;;;;;;;;;;10716:52;10712:100;;;10795:5;10785:15;;10712:100;10824:12;10855:7;10851:1093;;;10901:25;:29;10927:2;10901:29;;;;;;;;;;;;;;;;;;;;;;;;;:66;;;;;10952:15;;;;;;;;;;;10901:66;:122;;;;;11022:1;10988:24;:30;11013:4;10988:30;;;;;;;;;;;;;;;;:35;;10901:122;:208;;;;;11093:15;11080:8;11046:24;:30;11071:4;11046:30;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:62;;10901:208;10879:898;;;11144:25;11192;11220:2;11192:30;;11241:22;11266:40;11288:17;11266;:21;;:40;;;;:::i;:::-;11241:65;;11334:35;11365:3;11334:26;11345:14;11334:6;:10;;:26;;;;:::i;:::-;:30;;:35;;;;:::i;:::-;11327:42;;11438:14;11418:17;11411:4;:24;;;;:::i;:::-;:41;;;;:::i;:::-;11388:19;;:64;;;;;;;:::i;:::-;;;;;;;;11521:14;11501:17;11494:4;:24;;;;:::i;:::-;:41;;;;:::i;:::-;11471:19;;:64;;;;;;;:::i;:::-;;;;;;;;10879:898;;;;;;11583:30;11609:3;11583:21;11594:9;;11583:6;:10;;:21;;;;:::i;:::-;:25;;:30;;;;:::i;:::-;11576:37;;11678:9;;11662:13;;11655:4;:20;;;;:::i;:::-;:32;;;;:::i;:::-;11632:19;;:55;;;;;;;:::i;:::-;;;;;;;;11752:9;;11736:13;;11729:4;:20;;;;:::i;:::-;:32;;;;:::i;:::-;11706:19;;:55;;;;;;;:::i;:::-;;;;;;;;10879:898;11816:1;11809:4;:8;11805:91;;;11838:42;11854:4;11868;11875;11838:15;:42::i;:::-;11805:91;11928:4;11918:14;;;;;:::i;:::-;;;10851:1093;11956:33;11972:4;11978:2;11982:6;11956:15;:33::i;:::-;7477:4520;;;;;;;;:::o;2333:191:9:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2333:191;;:::o;6313:188:8:-;6430:5;6396:25;:31;6422:4;6396:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;6487:5;6453:40;;6481:4;6453:40;;;;;;;;;;;;6313:188;;:::o;12005:590::-;12132:21;12170:1;12156:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12132:40;;12201:4;12183;12188:1;12183:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12227:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12217:4;12222:1;12217:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;12262:62;12279:4;12294:15;;;;;;;;;;;12312:11;12262:8;:62::i;:::-;12363:15;;;;;;;;;;;:66;;;12444:11;12470:1;12514:4;12541;12561:15;12363:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12005:590;;:::o;7692:671:1:-;7839:1;7823:18;;:4;:18;;;;7815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7916:1;7902:16;;:2;:16;;;;7894:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7971:38;7992:4;7998:2;8002:6;7971:20;:38::i;:::-;8022:19;8044:9;:15;8054:4;8044:15;;;;;;;;;;;;;;;;8022:37;;8093:6;8078:11;:21;;8070:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8210:6;8196:11;:20;8178:9;:15;8188:4;8178:15;;;;;;;;;;;;;;;:38;;;;8255:6;8238:9;:13;8248:2;8238:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8294:2;8279:26;;8288:4;8279:26;;;8298:6;8279:26;;;;;;:::i;:::-;;;;;;;;8318:37;8338:4;8344:2;8348:6;8318:19;:37::i;:::-;7692:671;;;;:::o;13129:1346:8:-;13168:23;13194:24;13212:4;13194:9;:24::i;:::-;13168:50;;13229:25;13279:19;;13257;;:41;;;;:::i;:::-;13229:69;;13342:1;13323:15;:20;:46;;;;13368:1;13347:17;:22;13323:46;13319:59;;;13371:7;;;;13319:59;13410:18;;13392:15;:36;13388:103;;;13461:18;;13443:36;;13388:103;13560:23;13646:1;13626:17;13604:19;;13586:15;:37;;;;:::i;:::-;:57;;;;:::i;:::-;:61;;;;:::i;:::-;13560:87;;13658:26;13687:36;13707:15;13687;:19;;:36;;;;:::i;:::-;13658:65;;13744:25;13772:21;13744:49;;13806:37;13824:18;13806:17;:37::i;:::-;13865:18;13886:44;13912:17;13886:21;:25;;:44;;;;:::i;:::-;13865:65;;13941:23;13967:58;14007:17;13967:35;13982:19;;13967:10;:14;;:35;;;;:::i;:::-;:39;;:58;;;;:::i;:::-;13941:84;;14036:23;14075:15;14062:10;:28;;;;:::i;:::-;14036:54;;14133:1;14111:19;:23;;;;14167:1;14145:19;:23;;;;14189:9;;;;;;;;;;;14181:27;;:44;14209:15;14181:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14276:1;14258:15;:19;:42;;;;;14299:1;14281:15;:19;14258:42;14254:214;;;14317:47;14331:15;14348;14317:13;:47::i;:::-;14384:72;14399:18;14419:15;14436:19;;14384:72;;;;;;;;:::i;:::-;;;;;;;;14254:214;13129:1346;;;;;;;;;:::o;2833:98:10:-;2891:7;2922:1;2918;:5;;;;:::i;:::-;2911:12;;2833:98;;;;:::o;3571:::-;3629:7;3660:1;3656;:5;;;;:::i;:::-;3649:12;;3571:98;;;;:::o;3970:::-;4028:7;4059:1;4055;:5;;;;:::i;:::-;4048:12;;3970:98;;;;:::o;12131:125:1:-;;;;:::o;12860:124::-;;;;:::o;3214:98:10:-;3272:7;3303:1;3299;:5;;;;:::i;:::-;3292:12;;3214:98;;;;:::o;12607:514:8:-;12756:62;12773:4;12788:15;;;;;;;;;;;12806:11;12756:8;:62::i;:::-;12861:15;;;;;;;;;;;:31;;;12900:9;12933:4;12953:11;12979:1;13022;13065:7;:5;:7::i;:::-;13087:15;12861:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;12607:514;;:::o;24:622:11:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:139::-;;736:6;723:20;714:29;;752:33;779:5;752:33;:::i;:::-;704:87;;;;:::o;797:143::-;;885:6;879:13;870:22;;901:33;928:5;901:33;:::i;:::-;860:80;;;;:::o;963:303::-;;1083:3;1076:4;1068:6;1064:17;1060:27;1050:2;;1101:1;1098;1091:12;1050:2;1141:6;1128:20;1166:94;1256:3;1248:6;1241:4;1233:6;1229:17;1166:94;:::i;:::-;1157:103;;1040:226;;;;;:::o;1272:133::-;;1353:6;1340:20;1331:29;;1369:30;1393:5;1369:30;:::i;:::-;1321:84;;;;:::o;1411:139::-;;1495:6;1482:20;1473:29;;1511:33;1538:5;1511:33;:::i;:::-;1463:87;;;;:::o;1556:143::-;;1644:6;1638:13;1629:22;;1660:33;1687:5;1660:33;:::i;:::-;1619:80;;;;:::o;1705:262::-;;1813:2;1801:9;1792:7;1788:23;1784:32;1781:2;;;1829:1;1826;1819:12;1781:2;1872:1;1897:53;1942:7;1933:6;1922:9;1918:22;1897:53;:::i;:::-;1887:63;;1843:117;1771:196;;;;:::o;1973:284::-;;2092:2;2080:9;2071:7;2067:23;2063:32;2060:2;;;2108:1;2105;2098:12;2060:2;2151:1;2176:64;2232:7;2223:6;2212:9;2208:22;2176:64;:::i;:::-;2166:74;;2122:128;2050:207;;;;:::o;2263:407::-;;;2388:2;2376:9;2367:7;2363:23;2359:32;2356:2;;;2404:1;2401;2394:12;2356:2;2447:1;2472:53;2517:7;2508:6;2497:9;2493:22;2472:53;:::i;:::-;2462:63;;2418:117;2574:2;2600:53;2645:7;2636:6;2625:9;2621:22;2600:53;:::i;:::-;2590:63;;2545:118;2346:324;;;;;:::o;2676:552::-;;;;2818:2;2806:9;2797:7;2793:23;2789:32;2786:2;;;2834:1;2831;2824:12;2786:2;2877:1;2902:53;2947:7;2938:6;2927:9;2923:22;2902:53;:::i;:::-;2892:63;;2848:117;3004:2;3030:53;3075:7;3066:6;3055:9;3051:22;3030:53;:::i;:::-;3020:63;;2975:118;3132:2;3158:53;3203:7;3194:6;3183:9;3179:22;3158:53;:::i;:::-;3148:63;;3103:118;2776:452;;;;;:::o;3234:401::-;;;3356:2;3344:9;3335:7;3331:23;3327:32;3324:2;;;3372:1;3369;3362:12;3324:2;3415:1;3440:53;3485:7;3476:6;3465:9;3461:22;3440:53;:::i;:::-;3430:63;;3386:117;3542:2;3568:50;3610:7;3601:6;3590:9;3586:22;3568:50;:::i;:::-;3558:60;;3513:115;3314:321;;;;;:::o;3641:407::-;;;3766:2;3754:9;3745:7;3741:23;3737:32;3734:2;;;3782:1;3779;3772:12;3734:2;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;3724:324;;;;;:::o;4054:405::-;;4187:2;4175:9;4166:7;4162:23;4158:32;4155:2;;;4203:1;4200;4193:12;4155:2;4274:1;4263:9;4259:17;4246:31;4304:18;4296:6;4293:30;4290:2;;;4336:1;4333;4326:12;4290:2;4364:78;4434:7;4425:6;4414:9;4410:22;4364:78;:::i;:::-;4354:88;;4217:235;4145:314;;;;:::o;4465:262::-;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4531:196;;;;:::o;4733:407::-;;;4858:2;4846:9;4837:7;4833:23;4829:32;4826:2;;;4874:1;4871;4864:12;4826:2;4917:1;4942:53;4987:7;4978:6;4967:9;4963:22;4942:53;:::i;:::-;4932:63;;4888:117;5044:2;5070:53;5115:7;5106:6;5095:9;5091:22;5070:53;:::i;:::-;5060:63;;5015:118;4816:324;;;;;:::o;5146:596::-;;;;5299:2;5287:9;5278:7;5274:23;5270:32;5267:2;;;5315:1;5312;5305:12;5267:2;5358:1;5383:64;5439:7;5430:6;5419:9;5415:22;5383:64;:::i;:::-;5373:74;;5329:128;5496:2;5522:64;5578:7;5569:6;5558:9;5554:22;5522:64;:::i;:::-;5512:74;;5467:129;5635:2;5661:64;5717:7;5708:6;5697:9;5693:22;5661:64;:::i;:::-;5651:74;;5606:129;5257:485;;;;;:::o;5748:179::-;;5838:46;5880:3;5872:6;5838:46;:::i;:::-;5916:4;5911:3;5907:14;5893:28;;5828:99;;;;:::o;5933:108::-;6010:24;6028:5;6010:24;:::i;:::-;6005:3;5998:37;5988:53;;:::o;6047:118::-;6134:24;6152:5;6134:24;:::i;:::-;6129:3;6122:37;6112:53;;:::o;6201:732::-;;6349:54;6397:5;6349:54;:::i;:::-;6419:86;6498:6;6493:3;6419:86;:::i;:::-;6412:93;;6529:56;6579:5;6529:56;:::i;:::-;6608:7;6639:1;6624:284;6649:6;6646:1;6643:13;6624:284;;;6725:6;6719:13;6752:63;6811:3;6796:13;6752:63;:::i;:::-;6745:70;;6838:60;6891:6;6838:60;:::i;:::-;6828:70;;6684:224;6671:1;6668;6664:9;6659:14;;6624:284;;;6628:14;6924:3;6917:10;;6325:608;;;;;;;:::o;6939:109::-;7020:21;7035:5;7020:21;:::i;:::-;7015:3;7008:34;6998:50;;:::o;7054:147::-;7149:45;7188:5;7149:45;:::i;:::-;7144:3;7137:58;7127:74;;:::o;7207:364::-;;7323:39;7356:5;7323:39;:::i;:::-;7378:71;7442:6;7437:3;7378:71;:::i;:::-;7371:78;;7458:52;7503:6;7498:3;7491:4;7484:5;7480:16;7458:52;:::i;:::-;7535:29;7557:6;7535:29;:::i;:::-;7530:3;7526:39;7519:46;;7299:272;;;;;:::o;7577:367::-;;7740:67;7804:2;7799:3;7740:67;:::i;:::-;7733:74;;7837:34;7833:1;7828:3;7824:11;7817:55;7903:5;7898:2;7893:3;7889:12;7882:27;7935:2;7930:3;7926:12;7919:19;;7723:221;;;:::o;7950:327::-;;8113:67;8177:2;8172:3;8113:67;:::i;:::-;8106:74;;8210:31;8206:1;8201:3;8197:11;8190:52;8268:2;8263:3;8259:12;8252:19;;8096:181;;;:::o;8283:320::-;;8446:67;8510:2;8505:3;8446:67;:::i;:::-;8439:74;;8543:24;8539:1;8534:3;8530:11;8523:45;8594:2;8589:3;8585:12;8578:19;;8429:174;;;:::o;8609:370::-;;8772:67;8836:2;8831:3;8772:67;:::i;:::-;8765:74;;8869:34;8865:1;8860:3;8856:11;8849:55;8935:8;8930:2;8925:3;8921:12;8914:30;8970:2;8965:3;8961:12;8954:19;;8755:224;;;:::o;8985:366::-;;9148:67;9212:2;9207:3;9148:67;:::i;:::-;9141:74;;9245:34;9241:1;9236:3;9232:11;9225:55;9311:4;9306:2;9301:3;9297:12;9290:26;9342:2;9337:3;9333:12;9326:19;;9131:220;;;:::o;9357:368::-;;9520:67;9584:2;9579:3;9520:67;:::i;:::-;9513:74;;9617:34;9613:1;9608:3;9604:11;9597:55;9683:6;9678:2;9673:3;9669:12;9662:28;9716:2;9711:3;9707:12;9700:19;;9503:222;;;:::o;9731:389::-;;9894:67;9958:2;9953:3;9894:67;:::i;:::-;9887:74;;9991:34;9987:1;9982:3;9978:11;9971:55;10057:27;10052:2;10047:3;10043:12;10036:49;10111:2;10106:3;10102:12;10095:19;;9877:243;;;:::o;10126:327::-;;10289:67;10353:2;10348:3;10289:67;:::i;:::-;10282:74;;10386:31;10382:1;10377:3;10373:11;10366:52;10444:2;10439:3;10435:12;10428:19;;10272:181;;;:::o;10459:370::-;;10622:67;10686:2;10681:3;10622:67;:::i;:::-;10615:74;;10719:34;10715:1;10710:3;10706:11;10699:55;10785:8;10780:2;10775:3;10771:12;10764:30;10820:2;10815:3;10811:12;10804:19;;10605:224;;;:::o;10835:386::-;;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11095:34;11091:1;11086:3;11082:11;11075:55;11161:24;11156:2;11151:3;11147:12;11140:46;11212:2;11207:3;11203:12;11196:19;;10981:240;;;:::o;11227:385::-;;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11487:34;11483:1;11478:3;11474:11;11467:55;11553:23;11548:2;11543:3;11539:12;11532:45;11603:2;11598:3;11594:12;11587:19;;11373:239;;;:::o;11618:384::-;;11781:67;11845:2;11840:3;11781:67;:::i;:::-;11774:74;;11878:34;11874:1;11869:3;11865:11;11858:55;11944:22;11939:2;11934:3;11930:12;11923:44;11993:2;11988:3;11984:12;11977:19;;11764:238;;;:::o;12008:385::-;;12171:67;12235:2;12230:3;12171:67;:::i;:::-;12164:74;;12268:34;12264:1;12259:3;12255:11;12248:55;12334:23;12329:2;12324:3;12320:12;12313:45;12384:2;12379:3;12375:12;12368:19;;12154:239;;;:::o;12399:439::-;;12562:67;12626:2;12621:3;12562:67;:::i;:::-;12555:74;;12659:34;12655:1;12650:3;12646:11;12639:55;12725:34;12720:2;12715:3;12711:12;12704:56;12791:11;12786:2;12781:3;12777:12;12770:33;12829:2;12824:3;12820:12;12813:19;;12545:293;;;:::o;12844:330::-;;13007:67;13071:2;13066:3;13007:67;:::i;:::-;13000:74;;13104:34;13100:1;13095:3;13091:11;13084:55;13165:2;13160:3;13156:12;13149:19;;12990:184;;;:::o;13180:369::-;;13343:67;13407:2;13402:3;13343:67;:::i;:::-;13336:74;;13440:34;13436:1;13431:3;13427:11;13420:55;13506:7;13501:2;13496:3;13492:12;13485:29;13540:2;13535:3;13531:12;13524:19;;13326:223;;;:::o;13555:443::-;;13718:67;13782:2;13777:3;13718:67;:::i;:::-;13711:74;;13815:34;13811:1;13806:3;13802:11;13795:55;13881:34;13876:2;13871:3;13867:12;13860:56;13947:15;13942:2;13937:3;13933:12;13926:37;13989:2;13984:3;13980:12;13973:19;;13701:297;;;:::o;14004:368::-;;14167:67;14231:2;14226:3;14167:67;:::i;:::-;14160:74;;14264:34;14260:1;14255:3;14251:11;14244:55;14330:6;14325:2;14320:3;14316:12;14309:28;14363:2;14358:3;14354:12;14347:19;;14150:222;;;:::o;14378:317::-;;14541:67;14605:2;14600:3;14541:67;:::i;:::-;14534:74;;14638:21;14634:1;14629:3;14625:11;14618:42;14686:2;14681:3;14677:12;14670:19;;14524:171;;;:::o;14701:369::-;;14864:67;14928:2;14923:3;14864:67;:::i;:::-;14857:74;;14961:34;14957:1;14952:3;14948:11;14941:55;15027:7;15022:2;15017:3;15013:12;15006:29;15061:2;15056:3;15052:12;15045:19;;14847:223;;;:::o;15076:379::-;;15239:67;15303:2;15298:3;15239:67;:::i;:::-;15232:74;;15336:34;15332:1;15327:3;15323:11;15316:55;15402:17;15397:2;15392:3;15388:12;15381:39;15446:2;15441:3;15437:12;15430:19;;15222:233;;;:::o;15461:118::-;15548:24;15566:5;15548:24;:::i;:::-;15543:3;15536:37;15526:53;;:::o;15585:112::-;15668:22;15684:5;15668:22;:::i;:::-;15663:3;15656:35;15646:51;;:::o;15703:222::-;;15834:2;15823:9;15819:18;15811:26;;15847:71;15915:1;15904:9;15900:17;15891:6;15847:71;:::i;:::-;15801:124;;;;:::o;15931:807::-;;16218:3;16207:9;16203:19;16195:27;;16232:71;16300:1;16289:9;16285:17;16276:6;16232:71;:::i;:::-;16313:72;16381:2;16370:9;16366:18;16357:6;16313:72;:::i;:::-;16395:80;16471:2;16460:9;16456:18;16447:6;16395:80;:::i;:::-;16485;16561:2;16550:9;16546:18;16537:6;16485:80;:::i;:::-;16575:73;16643:3;16632:9;16628:19;16619:6;16575:73;:::i;:::-;16658;16726:3;16715:9;16711:19;16702:6;16658:73;:::i;:::-;16185:553;;;;;;;;;:::o;16744:210::-;;16869:2;16858:9;16854:18;16846:26;;16882:65;16944:1;16933:9;16929:17;16920:6;16882:65;:::i;:::-;16836:118;;;;:::o;16960:313::-;;17111:2;17100:9;17096:18;17088:26;;17160:9;17154:4;17150:20;17146:1;17135:9;17131:17;17124:47;17188:78;17261:4;17252:6;17188:78;:::i;:::-;17180:86;;17078:195;;;;:::o;17279:419::-;;17483:2;17472:9;17468:18;17460:26;;17532:9;17526:4;17522:20;17518:1;17507:9;17503:17;17496:47;17560:131;17686:4;17560:131;:::i;:::-;17552:139;;17450:248;;;:::o;17704:419::-;;17908:2;17897:9;17893:18;17885:26;;17957:9;17951:4;17947:20;17943:1;17932:9;17928:17;17921:47;17985:131;18111:4;17985:131;:::i;:::-;17977:139;;17875:248;;;:::o;18129:419::-;;18333:2;18322:9;18318:18;18310:26;;18382:9;18376:4;18372:20;18368:1;18357:9;18353:17;18346:47;18410:131;18536:4;18410:131;:::i;:::-;18402:139;;18300:248;;;:::o;18554:419::-;;18758:2;18747:9;18743:18;18735:26;;18807:9;18801:4;18797:20;18793:1;18782:9;18778:17;18771:47;18835:131;18961:4;18835:131;:::i;:::-;18827:139;;18725:248;;;:::o;18979:419::-;;19183:2;19172:9;19168:18;19160:26;;19232:9;19226:4;19222:20;19218:1;19207:9;19203:17;19196:47;19260:131;19386:4;19260:131;:::i;:::-;19252:139;;19150:248;;;:::o;19404:419::-;;19608:2;19597:9;19593:18;19585:26;;19657:9;19651:4;19647:20;19643:1;19632:9;19628:17;19621:47;19685:131;19811:4;19685:131;:::i;:::-;19677:139;;19575:248;;;:::o;19829:419::-;;20033:2;20022:9;20018:18;20010:26;;20082:9;20076:4;20072:20;20068:1;20057:9;20053:17;20046:47;20110:131;20236:4;20110:131;:::i;:::-;20102:139;;20000:248;;;:::o;20254:419::-;;20458:2;20447:9;20443:18;20435:26;;20507:9;20501:4;20497:20;20493:1;20482:9;20478:17;20471:47;20535:131;20661:4;20535:131;:::i;:::-;20527:139;;20425:248;;;:::o;20679:419::-;;20883:2;20872:9;20868:18;20860:26;;20932:9;20926:4;20922:20;20918:1;20907:9;20903:17;20896:47;20960:131;21086:4;20960:131;:::i;:::-;20952:139;;20850:248;;;:::o;21104:419::-;;21308:2;21297:9;21293:18;21285:26;;21357:9;21351:4;21347:20;21343:1;21332:9;21328:17;21321:47;21385:131;21511:4;21385:131;:::i;:::-;21377:139;;21275:248;;;:::o;21529:419::-;;21733:2;21722:9;21718:18;21710:26;;21782:9;21776:4;21772:20;21768:1;21757:9;21753:17;21746:47;21810:131;21936:4;21810:131;:::i;:::-;21802:139;;21700:248;;;:::o;21954:419::-;;22158:2;22147:9;22143:18;22135:26;;22207:9;22201:4;22197:20;22193:1;22182:9;22178:17;22171:47;22235:131;22361:4;22235:131;:::i;:::-;22227:139;;22125:248;;;:::o;22379:419::-;;22583:2;22572:9;22568:18;22560:26;;22632:9;22626:4;22622:20;22618:1;22607:9;22603:17;22596:47;22660:131;22786:4;22660:131;:::i;:::-;22652:139;;22550:248;;;:::o;22804:419::-;;23008:2;22997:9;22993:18;22985:26;;23057:9;23051:4;23047:20;23043:1;23032:9;23028:17;23021:47;23085:131;23211:4;23085:131;:::i;:::-;23077:139;;22975:248;;;:::o;23229:419::-;;23433:2;23422:9;23418:18;23410:26;;23482:9;23476:4;23472:20;23468:1;23457:9;23453:17;23446:47;23510:131;23636:4;23510:131;:::i;:::-;23502:139;;23400:248;;;:::o;23654:419::-;;23858:2;23847:9;23843:18;23835:26;;23907:9;23901:4;23897:20;23893:1;23882:9;23878:17;23871:47;23935:131;24061:4;23935:131;:::i;:::-;23927:139;;23825:248;;;:::o;24079:419::-;;24283:2;24272:9;24268:18;24260:26;;24332:9;24326:4;24322:20;24318:1;24307:9;24303:17;24296:47;24360:131;24486:4;24360:131;:::i;:::-;24352:139;;24250:248;;;:::o;24504:419::-;;24708:2;24697:9;24693:18;24685:26;;24757:9;24751:4;24747:20;24743:1;24732:9;24728:17;24721:47;24785:131;24911:4;24785:131;:::i;:::-;24777:139;;24675:248;;;:::o;24929:419::-;;25133:2;25122:9;25118:18;25110:26;;25182:9;25176:4;25172:20;25168:1;25157:9;25153:17;25146:47;25210:131;25336:4;25210:131;:::i;:::-;25202:139;;25100:248;;;:::o;25354:419::-;;25558:2;25547:9;25543:18;25535:26;;25607:9;25601:4;25597:20;25593:1;25582:9;25578:17;25571:47;25635:131;25761:4;25635:131;:::i;:::-;25627:139;;25525:248;;;:::o;25779:419::-;;25983:2;25972:9;25968:18;25960:26;;26032:9;26026:4;26022:20;26018:1;26007:9;26003:17;25996:47;26060:131;26186:4;26060:131;:::i;:::-;26052:139;;25950:248;;;:::o;26204:222::-;;26335:2;26324:9;26320:18;26312:26;;26348:71;26416:1;26405:9;26401:17;26392:6;26348:71;:::i;:::-;26302:124;;;;:::o;26432:831::-;;26733:3;26722:9;26718:19;26710:27;;26747:71;26815:1;26804:9;26800:17;26791:6;26747:71;:::i;:::-;26828:80;26904:2;26893:9;26889:18;26880:6;26828:80;:::i;:::-;26955:9;26949:4;26945:20;26940:2;26929:9;26925:18;26918:48;26983:108;27086:4;27077:6;26983:108;:::i;:::-;26975:116;;27101:72;27169:2;27158:9;27154:18;27145:6;27101:72;:::i;:::-;27183:73;27251:3;27240:9;27236:19;27227:6;27183:73;:::i;:::-;26700:563;;;;;;;;:::o;27269:442::-;;27456:2;27445:9;27441:18;27433:26;;27469:71;27537:1;27526:9;27522:17;27513:6;27469:71;:::i;:::-;27550:72;27618:2;27607:9;27603:18;27594:6;27550:72;:::i;:::-;27632;27700:2;27689:9;27685:18;27676:6;27632:72;:::i;:::-;27423:288;;;;;;:::o;27717:214::-;;27844:2;27833:9;27829:18;27821:26;;27857:67;27921:1;27910:9;27906:17;27897:6;27857:67;:::i;:::-;27811:120;;;;:::o;27937:283::-;;28003:2;27997:9;27987:19;;28045:4;28037:6;28033:17;28152:6;28140:10;28137:22;28116:18;28104:10;28101:34;28098:62;28095:2;;;28163:18;;:::i;:::-;28095:2;28203:10;28199:2;28192:22;27977:243;;;;:::o;28226:311::-;;28393:18;28385:6;28382:30;28379:2;;;28415:18;;:::i;:::-;28379:2;28465:4;28457:6;28453:17;28445:25;;28525:4;28519;28515:15;28507:23;;28308:229;;;:::o;28543:132::-;;28633:3;28625:11;;28663:4;28658:3;28654:14;28646:22;;28615:60;;;:::o;28681:114::-;;28782:5;28776:12;28766:22;;28755:40;;;:::o;28801:99::-;;28887:5;28881:12;28871:22;;28860:40;;;:::o;28906:113::-;;29008:4;29003:3;28999:14;28991:22;;28981:38;;;:::o;29025:184::-;;29158:6;29153:3;29146:19;29198:4;29193:3;29189:14;29174:29;;29136:73;;;;:::o;29215:169::-;;29333:6;29328:3;29321:19;29373:4;29368:3;29364:14;29349:29;;29311:73;;;;:::o;29390:305::-;;29449:20;29467:1;29449:20;:::i;:::-;29444:25;;29483:20;29501:1;29483:20;:::i;:::-;29478:25;;29637:1;29569:66;29565:74;29562:1;29559:81;29556:2;;;29643:18;;:::i;:::-;29556:2;29687:1;29684;29680:9;29673:16;;29434:261;;;;:::o;29701:185::-;;29758:20;29776:1;29758:20;:::i;:::-;29753:25;;29792:20;29810:1;29792:20;:::i;:::-;29787:25;;29831:1;29821:2;;29836:18;;:::i;:::-;29821:2;29878:1;29875;29871:9;29866:14;;29743:143;;;;:::o;29892:348::-;;29955:20;29973:1;29955:20;:::i;:::-;29950:25;;29989:20;30007:1;29989:20;:::i;:::-;29984:25;;30177:1;30109:66;30105:74;30102:1;30099:81;30094:1;30087:9;30080:17;30076:105;30073:2;;;30184:18;;:::i;:::-;30073:2;30232:1;30229;30225:9;30214:20;;29940:300;;;;:::o;30246:191::-;;30306:20;30324:1;30306:20;:::i;:::-;30301:25;;30340:20;30358:1;30340:20;:::i;:::-;30335:25;;30379:1;30376;30373:8;30370:2;;;30384:18;;:::i;:::-;30370:2;30429:1;30426;30422:9;30414:17;;30291:146;;;;:::o;30443:96::-;;30509:24;30527:5;30509:24;:::i;:::-;30498:35;;30488:51;;;:::o;30545:90::-;;30622:5;30615:13;30608:21;30597:32;;30587:48;;;:::o;30641:126::-;;30718:42;30711:5;30707:54;30696:65;;30686:81;;;:::o;30773:77::-;;30839:5;30828:16;;30818:32;;;:::o;30856:86::-;;30931:4;30924:5;30920:16;30909:27;;30899:43;;;:::o;30948:121::-;;31039:24;31057:5;31039:24;:::i;:::-;31026:37;;31016:53;;;:::o;31075:307::-;31143:1;31153:113;31167:6;31164:1;31161:13;31153:113;;;31252:1;31247:3;31243:11;31237:18;31233:1;31228:3;31224:11;31217:39;31189:2;31186:1;31182:10;31177:15;;31153:113;;;31284:6;31281:1;31278:13;31275:2;;;31364:1;31355:6;31350:3;31346:16;31339:27;31275:2;31124:258;;;;:::o;31388:320::-;;31469:1;31463:4;31459:12;31449:22;;31516:1;31510:4;31506:12;31537:18;31527:2;;31593:4;31585:6;31581:17;31571:27;;31527:2;31655;31647:6;31644:14;31624:18;31621:38;31618:2;;;31674:18;;:::i;:::-;31618:2;31439:269;;;;:::o;31714:233::-;;31776:24;31794:5;31776:24;:::i;:::-;31767:33;;31822:66;31815:5;31812:77;31809:2;;;31892:18;;:::i;:::-;31809:2;31939:1;31932:5;31928:13;31921:20;;31757:190;;;:::o;31953:180::-;32001:77;31998:1;31991:88;32098:4;32095:1;32088:15;32122:4;32119:1;32112:15;32139:180;32187:77;32184:1;32177:88;32284:4;32281:1;32274:15;32308:4;32305:1;32298:15;32325:180;32373:77;32370:1;32363:88;32470:4;32467:1;32460:15;32494:4;32491:1;32484:15;32511:180;32559:77;32556:1;32549:88;32656:4;32653:1;32646:15;32680:4;32677:1;32670:15;32697:102;;32789:2;32785:7;32780:2;32773:5;32769:14;32765:28;32755:38;;32745:54;;;:::o;32805:122::-;32878:24;32896:5;32878:24;:::i;:::-;32871:5;32868:35;32858:2;;32917:1;32914;32907:12;32858:2;32848:79;:::o;32933:116::-;33003:21;33018:5;33003:21;:::i;:::-;32996:5;32993:32;32983:2;;33039:1;33036;33029:12;32983:2;32973:76;:::o;33055:122::-;33128:24;33146:5;33128:24;:::i;:::-;33121:5;33118:35;33108:2;;33167:1;33164;33157:12;33108:2;33098:79;:::o

Swarm Source

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