ETH Price: $2,573.05 (-1.45%)

Token

MoonPrinter (BRRR)
 

Overview

Max Total Supply

30,910,653,454,809.9999997986000294 BRRR

Holders

190

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,012,570,724.105843765046089508 BRRR

Value
$0.00
0xd25b75933c728334684316293a7418d82f789160
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:
MoonPrinter

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : MoonPrinter.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.15;

/*
https://t.me/Moonprinter_Entry
twitter.com/Brrrrtweets
*/

import "./MoonPrinterDividendPayingToken.sol";

contract MoonPrinter is ERC20, Ownable {
    DividendTracker public dividendTracker;

    IRouter public router;
    address public pair;

    address public treasuryWallet = 0x68BAFF11d48f3a120b1dBf442fD4F0344526820A;
    address public devWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxWallet;
    uint256 public TotalBuyBacks;
    uint256 public totalBurned;

    mapping(address => bool) public _isBot;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;
    mapping(address => bool) public automatedMarketMakerPairs;

    bool private swapping;
    bool public swapEnabled = true;
    bool public claimEnabled = false;
    bool public tradingEnabled;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );

    event SendDividends(uint256 tokensSwapped, uint256 amount);

    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );
    struct Taxes {
        uint256 treasury; //buyback
        uint256 dev; //marketing
    }

    Taxes public buyTaxes;
    Taxes public sellTaxes;
    uint256 public totalBuyTax;
    uint256 public totalSellTax;

    constructor(address _devWallet) ERC20("MoonPrinter", "BRRR") {
        dividendTracker = new DividendTracker();
        setSwapTokensAtAmount(4000000000); //
        setDevWallet(_devWallet);
        updateMaxWalletAmount(200000000000);
        setMaxBuy(200000000000);
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //0xD99D1c33F9fC3444f8101754aBC46c52416550D1 // 0x10ED43C718714eb63d5aA57B78B54704E256024E
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;

        totalBuyTax = 15;
        totalSellTax = 45;
        buyTaxes = Taxes(15, 0);
        sellTaxes = Taxes(45, 0);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(0xe98C6C863cCF6BD76AE201b7f9389b41b7cd1e0B, true);
        excludeFromFees(address(dividendTracker), true);
        excludeFromFees(treasuryWallet, true);

        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(_pair, true);
        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(0), true);
        excludeFromMaxWallet(treasuryWallet, true);
        excludeFromMaxWallet(devWallet, true);
        excludeFromMaxWallet(address(dividendTracker), true);

        _setAutomatedMarketMakerPair(_pair, true);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(0), true);
        dividendTracker.excludeFromDividends(address(_router), true);

        /*
            _mint is an internal function that is only called here,
            and cannot be called ever again
        */
        _mint(treasuryWallet, 2340000000000 * (10**18));
        _mint(owner(), 29600000000000 * (10**18));
    }

    receive() external payable {}

    function AddAirdropRewardsFromContract(uint256 amount) public onlyOwner {
        if (amount > 0) {
            IERC20 token = IERC20(address(this));
            bool success = token.transfer(address(dividendTracker), amount);
            if (success) {
                dividendTracker.distributeDividends(amount);
            }
        }
    }

    function AddAirdropRewardsFromOwner(uint256 amount) public onlyOwner {
        //make sure to approve the contract, and dividend token to pull balance
        if (amount > 0) {
            IERC20 token = IERC20(address(this));
            bool success = token.transferFrom(
                msg.sender,
                address(dividendTracker),
                amount
            );
            if (success) {
                dividendTracker.distributeDividends(amount);
            }
        }
    }

    function burn(uint256 amountTokens) public {
        address sender = msg.sender;
        require(
            balanceOf(sender) >= amountTokens,
            "ERC20: Burn Amount exceeds account balance"
        );
        require(sender != address(0), "ERC20: Invalid sender address");
        require(amountTokens > 0, "ERC20: Enter some amount to burn");
        totalBurned = totalBurned + amountTokens;
        uint256 AmountToBurn = amountTokens;
        _burn(sender, AmountToBurn);
    }

    /// @param bot The bot address
    /// @param value "true" to blacklist, "false" to unblacklist
    function setBot(address bot, bool value) external onlyOwner {
        require(_isBot[bot] != value);
        _isBot[bot] = value;
    }

    function setBulkBot(address[] memory bots, bool value) external onlyOwner {
        for (uint256 i; i < bots.length; i++) {
            _isBot[bots[i]] = value;
        }
    }

    function normalizeTax() public onlyOwner {
        totalBuyTax = 5;
        totalSellTax = 7;
        buyTaxes = Taxes(3, 2);
        sellTaxes = Taxes(4, 3);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded);
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    /// @dev "true" to exclude, "false" to include
    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, value);
    }

    function setTreasuryWallet(address newtreasury) public onlyOwner {
        require(newtreasury != treasuryWallet, "this wallet is already set");
        treasuryWallet = newtreasury;
    }

    function setDevWallet(address newWallet) public onlyOwner {
        require(newWallet != devWallet, "this wallet is already set");
        devWallet = newWallet;
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        maxWallet = newNum * (10**18);
    }

    function setMaxBuy(uint256 maxBuy) public onlyOwner {
        maxBuyAmount = maxBuy * 10**18;
    }

    function setDiv_Token(address _token) external onlyOwner {
        dividendTracker.updateLP_Token(_token);
    }

    /// @notice Update the threshold to swap tokens for liquidity,
    ///   treasury and dividends.
    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        require(amount < 3200000000000);
        swapTokensAtAmount = amount * 10**18;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled() external onlyOwner {
        swapEnabled = !swapEnabled;
    }

    /// @notice Manual claim the dividends
    function claim() external {
        require(claimEnabled, "Claim not enabled");
        dividendTracker.processAccount(payable(msg.sender));
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function rescueETH20Tokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @notice Send remaining ETH to treasuryWallet
    /// @dev It will send all ETH to treasuryWallet
    function forceSend() external onlyOwner {
        (bool success, ) = payable(devWallet).call{
            value: address(this).balance
        }("");
        require(success, "Failed to send ETH to dev wallet");
    }

    function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner {
        dividendTracker.trackerRescueETH20Tokens(owner(), tokenAddress);
    }

    function trackerForceSend() external onlyOwner {
        dividendTracker.trackerForceSend(owner());
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IRouter(newRouter);
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
    }

    function setClaimEnabled() external onlyOwner {
        claimEnabled = !claimEnabled;
    }

    function SetDividends(address account) external onlyOwner {
        dividendTracker.setBalance(account, balanceOf(account));
    }


    function ClaimedByUser(address account) public view returns (uint256) {
        return dividendTracker.TotalClaimedByUser(account);
    }

    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(automatedMarketMakerPairs[newPair] != value);
        automatedMarketMakerPairs[newPair] = value;

        if (value) {
            dividendTracker.excludeFromDividends(newPair, true);
        }

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.balanceOf(account);
    }

    function getAccountInfo(address account)
        external
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

    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(!_isBot[from] && !_isBot[to], "Bye Bye Bot");

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            if (totalSellTax > 0 && swapTokensAtAmount > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

        if (takeFee && !_isExcludedFromFees[from]) {
            uint256 feeAmt;

            if (automatedMarketMakerPairs[to]) {
                // Sell transaction: Charge sell tax
                feeAmt = (amount * totalSellTax) / 100;
            } else if (automatedMarketMakerPairs[from]) {
                // Buy transaction: Charge buy tax
                feeAmt = (amount * totalBuyTax) / 100;
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
                require(amount <= maxBuyAmount, "Unable to exceed Max buy");
                if (to == treasuryWallet) {
                    TotalBuyBacks = TotalBuyBacks + amount;
                }
            } else {
                // General transfer: Charge buy tax
                feeAmt = (amount * totalBuyTax) / 100;
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }

            amount = amount - feeAmt;

            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);

        try dividendTracker.setBalance(from, balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(to, balanceOf(to)) {} catch {}
    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 toSwap = tokens;

        swapTokensForETH(toSwap);
        uint256 contractrewardbalance = address(this).balance;
        uint256 totalTax = (totalSellTax);

        uint256 devAmt = (contractrewardbalance * sellTaxes.dev) / totalTax;
        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success, "Failed to send ETH to dev wallet");
        }

        uint256 treasuryAmt = (contractrewardbalance * sellTaxes.treasury) /
            totalTax;

        if (treasuryAmt > 0) {
            (bool success, ) = payable(treasuryWallet).call{value: treasuryAmt}(
                ""
            );
            require(success, "Failed to send ETH to treasury wallet");
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

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

contract DividendTracker is Ownable, DividendPayingToken {
    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;
    mapping(address => uint256) public TotalClaimedByUser;

    event ExcludeFromDividends(address indexed account, bool value);
    event Claim(address indexed account, uint256 amount);

    constructor()
        DividendPayingToken(
            "MoonPrinter_DividendToken",
            "MoonPrinter_DividendToken"
        )
    {}

    function trackerRescueETH20Tokens(address recipient, address tokenAddress)
        external
        onlyOwner
    {
        IERC20(tokenAddress).transfer(
            recipient,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    function trackerForceSend(address recipient) external onlyOwner {
        (bool success, ) = payable(recipient).call{
            value: address(this).balance
        }("");
        require(success, "Failed to send ETH to wallet");
    }

    function _transfer(
        address,
        address,
        uint256
    ) internal pure override {
        require(false, "Dividend_Tracker: No transfers allowed");
    }

    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        require(excludedFromDividends[account] != value);
        excludedFromDividends[account] = value;
        if (value == true) {
            _setBalance(account, 0);
        } else {
            _setBalance(account, balanceOf(account));
        }
        emit ExcludeFromDividends(account, value);
    }

    function getAccount(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

    function setBalance(address account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        _setBalance(account, newBalance);
    }

    function updateLP_Token(address _lpToken) external onlyOwner {
        _Token = _lpToken;
    }

    function processAccount(address payable account)
        external
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);

        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            TotalClaimedByUser[account] = TotalClaimedByUser[account] + amount;
            emit Claim(account, amount);
            return true;
        }
        return false;
    }
}

File 2 of 9 : MoonPrinterDividendPayingToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./DividendPayingTokenInterface.sol";
import "./IDEX.sol";


library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}



library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public _Token;


  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;
  uint256 public totalDividendsWithdrawn;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}

  function distributeDividends(uint256 amount) public onlyOwner{
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
 function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      totalDividendsWithdrawn += _withdrawableDividend;
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(_Token).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        totalDividendsWithdrawn -= _withdrawableDividend;
        return 0;
      }

      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}

File 3 of 9 : IDEX.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;



interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

File 4 of 9 : DividendPayingTokenInterface.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;


/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;
  
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);


  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
  
}

File 5 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 6 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 7 of 9 : 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 8 of 9 : 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 9 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddAirdropRewardsFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddAirdropRewardsFromOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"ClaimedByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"SetDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TotalBuyBacks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountTokens","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","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":"normalizeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"treasury","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBulkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setDiv_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtreasury","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","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":"trackerForceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040527368baff11d48f3a120b1dbf442fd4f0344526820a600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055503480156200009c57600080fd5b506040516200a9243803806200a9248339818101604052810190620000c2919062001225565b6040518060400160405280600b81526020017f4d6f6f6e5072696e7465720000000000000000000000000000000000000000008152506040518060400160405280600481526020017f425252520000000000000000000000000000000000000000000000000000000081525081600390816200013f9190620014d1565b508060049081620001519190620014d1565b505050620001746200016862000a0960201b60201c565b62000a1160201b60201c565b6040516200018290620011ad565b604051809103906000f0801580156200019f573d6000803e3d6000fd5b50600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f563ee6b280062000ad760201b60201c565b620002068162000b1960201b60201c565b6200021c642e90edd00062000c0060201b60201c565b62000232642e90edd00062000c2f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000299573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bf919062001225565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000327573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034d919062001225565b6040518363ffffffff1660e01b81526004016200036c929190620015c9565b6020604051808303816000875af11580156200038c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b2919062001225565b905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f601981905550602d601a819055506040518060400160405280600f81526020016000815250601560008201518160000155602082015181600101559050506040518060400160405280602d8152602001600081525060176000820151816000015560208201518160010155905050620004c8620004ba62000c5e60201b60201c565b600162000c8860201b60201c565b620004db30600162000c8860201b60201c565b6200050273e98c6c863ccf6bd76ae201b7f9389b41b7cd1e0b600162000c8860201b60201c565b62000537600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000c8860201b60201c565b6200056c600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000c8860201b60201c565b6200057f30600162000da060201b60201c565b6200059281600162000da060201b60201c565b620005b4620005a662000c5e60201b60201c565b600162000da060201b60201c565b620005c86000600162000da060201b60201c565b620005fd600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000da060201b60201c565b62000632600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000da060201b60201c565b62000667600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000da060201b60201c565b6200067a81600162000e0b60201b60201c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401620006fc92919062001613565b600060405180830381600087803b1580156200071757600080fd5b505af11580156200072c573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b81526004016200079092919062001613565b600060405180830381600087803b158015620007ab57600080fd5b505af1158015620007c0573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a06200081262000c5e60201b60201c565b60016040518363ffffffff1660e01b81526004016200083392919062001613565b600060405180830381600087803b1580156200084e57600080fd5b505af115801562000863573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600060016040518363ffffffff1660e01b8152600401620008c892919062001613565b600060405180830381600087803b158015620008e357600080fd5b505af1158015620008f8573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b81526004016200095c92919062001613565b600060405180830381600087803b1580156200097757600080fd5b505af11580156200098c573d6000803e3d6000fd5b50505050620009d1600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166c1d88f2a224cdd42cb8a000000062000fa560201b60201c565b62000a00620009e562000c5e60201b60201c565b6d01759ac221ae8beb82490000000062000fa560201b60201c565b505050620018df565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000ae76200111260201b60201c565b6502e90edd0000811062000afa57600080fd5b670de0b6b3a76400008162000b1091906200166f565b600b8190555050565b62000b296200111260201b60201c565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000bbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bb39062001731565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000c106200111260201b60201c565b670de0b6b3a76400008162000c2691906200166f565b600d8190555050565b62000c3f6200111260201b60201c565b670de0b6b3a76400008162000c5591906200166f565b600c8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000c986200111260201b60201c565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000cf557600080fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000d94919062001753565b60405180910390a25050565b62000db06200111260201b60201c565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000e6857600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000f5b57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000f2692919062001613565b600060405180830381600087803b15801562000f4157600080fd5b505af115801562000f56573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001017576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200100e90620017c0565b60405180910390fd5b6200102b60008383620011a360201b60201c565b80600260008282546200103f9190620017e2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620010f2919062001850565b60405180910390a36200110e60008383620011a860201b60201c565b5050565b6200112262000a0960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200114862000c5e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620011a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200119890620018bd565b60405180910390fd5b565b505050565b505050565b61365a80620072ca83390190565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011ed82620011c0565b9050919050565b620011ff81620011e0565b81146200120b57600080fd5b50565b6000815190506200121f81620011f4565b92915050565b6000602082840312156200123e576200123d620011bb565b5b60006200124e848285016200120e565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012d957607f821691505b602082108103620012ef57620012ee62001291565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620013597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200131a565b6200136586836200131a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620013b2620013ac620013a6846200137d565b62001387565b6200137d565b9050919050565b6000819050919050565b620013ce8362001391565b620013e6620013dd82620013b9565b84845462001327565b825550505050565b600090565b620013fd620013ee565b6200140a818484620013c3565b505050565b5b81811015620014325762001426600082620013f3565b60018101905062001410565b5050565b601f82111562001481576200144b81620012f5565b62001456846200130a565b8101602085101562001466578190505b6200147e62001475856200130a565b8301826200140f565b50505b505050565b600082821c905092915050565b6000620014a66000198460080262001486565b1980831691505092915050565b6000620014c1838362001493565b9150826002028217905092915050565b620014dc8262001257565b67ffffffffffffffff811115620014f857620014f762001262565b5b620015048254620012c0565b6200151182828562001436565b600060209050601f83116001811462001549576000841562001534578287015190505b620015408582620014b3565b865550620015b0565b601f1984166200155986620012f5565b60005b8281101562001583578489015182556001820191506020850194506020810190506200155c565b86831015620015a357848901516200159f601f89168262001493565b8355505b6001600288020188555050505b505050505050565b620015c381620011e0565b82525050565b6000604082019050620015e06000830185620015b8565b620015ef6020830184620015b8565b9392505050565b60008115159050919050565b6200160d81620015f6565b82525050565b60006040820190506200162a6000830185620015b8565b62001639602083018462001602565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200167c826200137d565b915062001689836200137d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620016c557620016c462001640565b5b828202905092915050565b600082825260208201905092915050565b7f746869732077616c6c657420697320616c726561647920736574000000000000600082015250565b600062001719601a83620016d0565b91506200172682620016e1565b602082019050919050565b600060208201905081810360008301526200174c816200170a565b9050919050565b60006020820190506200176a600083018462001602565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620017a8601f83620016d0565b9150620017b58262001770565b602082019050919050565b60006020820190508181036000830152620017db8162001799565b9050919050565b6000620017ef826200137d565b9150620017fc836200137d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001834576200183362001640565b5b828201905092915050565b6200184a816200137d565b82525050565b60006020820190506200186760008301846200183f565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620018a5602083620016d0565b9150620018b2826200186d565b602082019050919050565b60006020820190508181036000830152620018d88162001896565b9050919050565b6159db80620018ef6000396000f3fe6080604052600436106103dd5760003560e01c8063864701a5116101fd578063be825b5211610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610e63578063f53bc83514610e8c578063f66895a314610eb5578063f887ea4014610ee1578063f8b45b0514610f0c576103e4565b8063dd62ed3e14610da7578063de31a94b14610de4578063e11c336814610e21578063e2f4560514610e38576103e4565b8063c851cc32116100e7578063c851cc3214610d13578063cf1cca3214610d3c578063d2fcc00114610d53578063d89135cd14610d7c576103e4565b8063be825b5214610c6f578063c024666814610c98578063c18bc19514610cc1578063c492f04614610cea576103e4565b8063a8602fea11610190578063abb810521161015f578063abb8105214610ba3578063afa4f3b214610be0578063b62496f514610c09578063b83b297f14610c46576103e4565b8063a8602fea14610ad5578063a8aa1b3114610afe578063a8b9d24014610b29578063a9059cbb14610b66576103e4565b80638ea5220f116101cc5780638ea5220f14610a1957806395d89b4114610a445780639a7a23d614610a6f578063a457c2d714610a98576103e4565b8063864701a51461096e57806388e765ff1461099a5780638c9684f9146109c55780638da5cb5b146109ee576103e4565b8063313ce567116102f85780634dc933121161028b5780636ddd17131161025a5780636ddd17131461088557806370a08231146108b057806370ec81f1146108ed578063715018a6146109165780637b510fe81461092d576103e4565b80634dc93312146107cb5780634e71d92d146107f45780634fbee1931461080b5780636843cd8414610848576103e4565b80634626402b116102c75780634626402b1461073357806346469afb1461075e5780634ada218b146107895780634c1b0b6b146107b4576103e4565b8063313ce56714610679578063342aa8b5146106a457806339509351146106cd57806342966c681461070a576103e4565b806318160ddd1161037057806323b872dd1161033f57806323b872dd146105bb5780632866ed21146105f85780632c1f52161461062357806330bb4cff1461064e576103e4565b806318160ddd146105115780631bff78981461053c5780631f53ac021461056757806321b7702914610590576103e4565b80630bd05b69116103ac5780630bd05b69146104a35780630be6c2f0146104ba5780630d1d5a7d146104d157806312b77e8a146104fa576103e4565b80630483f7a0146103e957806306fdde0314610412578063095ea7b31461043d5780630a78097d1461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b50610410600480360381019061040b91906140dc565b610f37565b005b34801561041e57600080fd5b50610427610fd2565b60405161043491906141b5565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f919061420d565b611064565b604051610471919061425c565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190614277565b611087565b005b3480156104af57600080fd5b506104b8611191565b005b3480156104c657600080fd5b506104cf611206565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906142a4565b61123a565b005b34801561050657600080fd5b5061050f61138e565b005b34801561051d57600080fd5b50610526611467565b60405161053391906142e0565b60405180910390f35b34801561054857600080fd5b50610551611471565b60405161055e91906142e0565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190614277565b611477565b005b34801561059c57600080fd5b506105a5611553565b6040516105b291906142e0565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906142fb565b611559565b6040516105ef919061425c565b60405180910390f35b34801561060457600080fd5b5061060d611588565b60405161061a919061425c565b60405180910390f35b34801561062f57600080fd5b5061063861159b565b60405161064591906143ad565b60405180910390f35b34801561065a57600080fd5b506106636115c1565b60405161067091906142e0565b60405180910390f35b34801561068557600080fd5b5061068e611659565b60405161069b91906143e4565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906140dc565b611662565b005b3480156106d957600080fd5b506106f460048036038101906106ef919061420d565b611721565b604051610701919061425c565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906142a4565b611758565b005b34801561073f57600080fd5b50610748611882565b604051610755919061440e565b60405180910390f35b34801561076a57600080fd5b506107736118a8565b60405161078091906142e0565b60405180910390f35b34801561079557600080fd5b5061079e6118ae565b6040516107ab919061425c565b60405180910390f35b3480156107c057600080fd5b506107c96118c1565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190614277565b61193b565b005b34801561080057600080fd5b506108096119dd565b005b34801561081757600080fd5b50610832600480360381019061082d9190614277565b611acd565b60405161083f919061425c565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190614277565b611b23565b60405161087c91906142e0565b60405180910390f35b34801561089157600080fd5b5061089a611bc8565b6040516108a7919061425c565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190614277565b611bdb565b6040516108e491906142e0565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f91906142a4565b611c23565b005b34801561092257600080fd5b5061092b611d79565b005b34801561093957600080fd5b50610954600480360381019061094f9190614277565b611d8d565b604051610965959493929190614429565b60405180910390f35b34801561097a57600080fd5b50610983611e44565b60405161099192919061447c565b60405180910390f35b3480156109a657600080fd5b506109af611e56565b6040516109bc91906142e0565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190614277565b611e5c565b005b3480156109fa57600080fd5b50610a03611efd565b604051610a10919061440e565b60405180910390f35b348015610a2557600080fd5b50610a2e611f27565b604051610a3b919061440e565b60405180910390f35b348015610a5057600080fd5b50610a59611f4d565b604051610a6691906141b5565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906140dc565b611fdf565b005b348015610aa457600080fd5b50610abf6004803603810190610aba919061420d565b611ff5565b604051610acc919061425c565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190614277565b61206c565b005b348015610b0a57600080fd5b50610b13612148565b604051610b20919061440e565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b9190614277565b61216e565b604051610b5d91906142e0565b60405180910390f35b348015610b7257600080fd5b50610b8d6004803603810190610b88919061420d565b612213565b604051610b9a919061425c565b60405180910390f35b348015610baf57600080fd5b50610bca6004803603810190610bc59190614277565b612236565b604051610bd7919061425c565b60405180910390f35b348015610bec57600080fd5b50610c076004803603810190610c0291906142a4565b612256565b005b348015610c1557600080fd5b50610c306004803603810190610c2b9190614277565b61228d565b604051610c3d919061425c565b60405180910390f35b348015610c5257600080fd5b50610c6d6004803603810190610c6891906145ed565b6122ad565b005b348015610c7b57600080fd5b50610c966004803603810190610c919190614277565b61234a565b005b348015610ca457600080fd5b50610cbf6004803603810190610cba91906140dc565b6123e2565b005b348015610ccd57600080fd5b50610ce86004803603810190610ce391906142a4565b6124ef565b005b348015610cf657600080fd5b50610d116004803603810190610d0c91906146a4565b612514565b005b348015610d1f57600080fd5b50610d3a6004803603810190610d359190614277565b6125fc565b005b348015610d4857600080fd5b50610d51612648565b005b348015610d5f57600080fd5b50610d7a6004803603810190610d7591906140dc565b61267c565b005b348015610d8857600080fd5b50610d916126df565b604051610d9e91906142e0565b60405180910390f35b348015610db357600080fd5b50610dce6004803603810190610dc99190614704565b6126e5565b604051610ddb91906142e0565b60405180910390f35b348015610df057600080fd5b50610e0b6004803603810190610e069190614277565b61276c565b604051610e1891906142e0565b60405180910390f35b348015610e2d57600080fd5b50610e36612811565b005b348015610e4457600080fd5b50610e4d6128af565b604051610e5a91906142e0565b60405180910390f35b348015610e6f57600080fd5b50610e8a6004803603810190610e859190614277565b6128b5565b005b348015610e9857600080fd5b50610eb36004803603810190610eae91906142a4565b612938565b005b348015610ec157600080fd5b50610eca61295d565b604051610ed892919061447c565b60405180910390f35b348015610eed57600080fd5b50610ef661296f565b604051610f039190614765565b60405180910390f35b348015610f1857600080fd5b50610f21612995565b604051610f2e91906142e0565b60405180910390f35b610f3f61299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610f9c929190614780565b600060405180830381600087803b158015610fb657600080fd5b505af1158015610fca573d6000803e3d6000fd5b505050505050565b606060038054610fe1906147d8565b80601f016020809104026020016040519081016040528092919081815260200182805461100d906147d8565b801561105a5780601f1061102f5761010080835404028352916020019161105a565b820191906000526020600020905b81548152906001019060200180831161103d57829003601f168201915b5050505050905090565b60008061106f612a19565b905061107c818585612a21565b600191505092915050565b61108f61299b565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6110b3611efd565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110ec919061440e565b602060405180830381865afa158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d919061481e565b6040518363ffffffff1660e01b815260040161114a92919061484b565b6020604051808303816000875af1158015611169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118d9190614889565b5050565b61119961299b565b601460039054906101000a900460ff16156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614902565b60405180910390fd5b6001601460036101000a81548160ff021916908315150217905550565b61120e61299b565b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b61124261299b565b600081111561138b57600030905060008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b81526004016112af92919061484b565b6020604051808303816000875af11580156112ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f29190614889565b9050801561138857600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b815260040161135591906142e0565b600060405180830381600087803b15801561136f57600080fd5b505af1158015611383573d6000803e3d6000fd5b505050505b50505b50565b61139661299b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113de90614953565b60006040518083038185875af1925050503d806000811461141b576040519150601f19603f3d011682016040523d82523d6000602084013e611420565b606091505b5050905080611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906149b4565b60405180910390fd5b50565b6000600254905090565b601a5481565b61147f61299b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614a20565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b600080611564612a19565b9050611571858285612bea565b61157c858585612c76565b60019150509392505050565b601460029054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611630573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611654919061481e565b905090565b60006012905090565b61166a61299b565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036116c657600080fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061172c612a19565b905061174d81858561173e85896126e5565b6117489190614a6f565b612a21565b600191505092915050565b60003390508161176782611bdb565b10156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614b37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90614ba3565b60405180910390fd5b6000821161185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614c0f565b60405180910390fd5b81600f546118689190614a6f565b600f81905550600082905061187d8282613534565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b601460039054906101000a900460ff1681565b6118c961299b565b60056019819055506007601a81905550604051806040016040528060038152602001600281525060156000820151816000015560208201518160010155905050604051806040016040528060048152602001600381525060176000820151816000015560208201518160010155905050565b61194361299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8261198b84611bdb565b6040518363ffffffff1660e01b81526004016119a892919061484b565b600060405180830381600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b5050505050565b601460029054906101000a900460ff16611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614c7b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611a879190614cbc565b6020604051808303816000875af1158015611aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aca9190614889565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611b80919061440e565b602060405180830381865afa158015611b9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc1919061481e565b9050919050565b601460019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c2b61299b565b6000811115611d7657600030905060008173ffffffffffffffffffffffffffffffffffffffff166323b872dd33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b8152600401611c9a93929190614cd7565b6020604051808303816000875af1158015611cb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cdd9190614889565b90508015611d7357600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b8152600401611d4091906142e0565b600060405180830381600087803b158015611d5a57600080fd5b505af1158015611d6e573d6000803e3d6000fd5b505050505b50505b50565b611d8161299b565b611d8b6000613701565b565b6000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611df0919061440e565b60a060405180830381865afa158015611e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e319190614d23565b9450945094509450945091939590929450565b60158060000154908060010154905082565b600c5481565b611e6461299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823611eaa611efd565b836040518363ffffffff1660e01b8152600401611ec8929190614d9e565b600060405180830381600087803b158015611ee257600080fd5b505af1158015611ef6573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611f5c906147d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611f88906147d8565b8015611fd55780601f10611faa57610100808354040283529160200191611fd5565b820191906000526020600020905b815481529060010190602001808311611fb857829003601f168201915b5050505050905090565b611fe761299b565b611ff182826137c7565b5050565b600080612000612a19565b9050600061200e82866126e5565b905083811015612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614e39565b60405180910390fd5b6120608286868403612a21565b60019250505092915050565b61207461299b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614a20565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016121cb919061440e565b602060405180830381865afa1580156121e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220c919061481e565b9050919050565b60008061221e612a19565b905061222b818585612c76565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b61225e61299b565b6502e90edd0000811061227057600080fd5b670de0b6b3a7640000816122849190614e59565b600b8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6122b561299b565b60005b82518110156123455781601060008584815181106122d9576122d8614eb3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061233d90614ee2565b9150506122b8565b505050565b61235261299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b81526004016123ad919061440e565b600060405180830381600087803b1580156123c757600080fd5b505af11580156123db573d6000803e3d6000fd5b5050505050565b6123ea61299b565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361244657600080fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516124e3919061425c565b60405180910390a25050565b6124f761299b565b670de0b6b3a76400008161250b9190614e59565b600d8190555050565b61251c61299b565b60005b838390508110156125bb57816011600086868581811061254257612541614eb3565b5b90506020020160208101906125579190614277565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125b390614ee2565b91505061251f565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516125ef93929190614fed565b60405180910390a1505050565b61260461299b565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61265061299b565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61268461299b565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c2ac16c836040518263ffffffff1660e01b81526004016127c9919061440e565b602060405180830381865afa1580156127e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061280a919061481e565b9050919050565b61281961299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633b36a1d761285f611efd565b6040518263ffffffff1660e01b815260040161287b919061440e565b600060405180830381600087803b15801561289557600080fd5b505af11580156128a9573d6000803e3d6000fd5b50505050565b600b5481565b6128bd61299b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361292c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292390615091565b60405180910390fd5b61293581613701565b50565b61294061299b565b670de0b6b3a7640000816129549190614e59565b600c8190555050565b60178060000154908060010154905082565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6129a3612a19565b73ffffffffffffffffffffffffffffffffffffffff166129c1611efd565b73ffffffffffffffffffffffffffffffffffffffff1614612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906150fd565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a879061518f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af690615221565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612bdd91906142e0565b60405180910390a3505050565b6000612bf684846126e5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612c705781811015612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c599061528d565b60405180910390fd5b612c6f8484848403612a21565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc9061531f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4b906153b1565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612df85750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2e9061541d565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612edb5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ef45750601460009054906101000a900460ff16155b15612f4957601460039054906101000a900460ff16612f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3f90615489565b60405180910390fd5b5b60008103612f6257612f5d8383600061395b565b61352f565b6000612f6d30611bdb565b90506000600b548210159050808015612f935750601460009054906101000a900460ff16155b8015612fab5750601460019054906101000a900460ff165b80156130005750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130565750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ac5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561310d576001601460006101000a81548160ff0219169083151502179055506000601a541180156130e057506000600b54115b156130f1576130f0600b54613bd1565b5b6000601460006101000a81548160ff0219169083151502179055505b6000601460009054906101000a900460ff161590508080156131795750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fe576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131f3576064601a54866131e29190614e59565b6131ec91906154d8565b90506133e3565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561336d576064601954866132559190614e59565b61325f91906154d8565b9050600d5461326d87611bdb565b866132789190614a6f565b11156132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b090615555565b60405180910390fd5b600c548511156132fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f5906155c1565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036133685784600e546133619190614a6f565b600e819055505b6133e2565b60646019548661337d9190614e59565b61338791906154d8565b9050600d5461339587611bdb565b866133a09190614a6f565b11156133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d890615555565b60405180910390fd5b5b5b80856133ef91906155e1565b94506133fc87308361395b565b505b61340986868661395b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761345189611bdb565b6040518363ffffffff1660e01b815260040161346e92919061484b565b600060405180830381600087803b15801561348857600080fd5b505af1925050508015613499575060015b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866134e288611bdb565b6040518363ffffffff1660e01b81526004016134ff92919061484b565b600060405180830381600087803b15801561351957600080fd5b505af192505050801561352a575060015b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359a90615687565b60405180910390fd5b6135af82600083613de5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362c90615719565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136e891906142e0565b60405180910390a36136fc83600084613dea565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361382357600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801561391157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b81526004016138de929190614780565b600060405180830381600087803b1580156138f857600080fd5b505af115801561390c573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036139ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c19061531f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a30906153b1565b60405180910390fd5b613a44838383613de5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac1906157ab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bb891906142e0565b60405180910390a3613bcb848484613dea565b50505050565b6000819050613bdf81613def565b60004790506000601a54905060008160176001015484613bff9190614e59565b613c0991906154d8565b90506000811115613ce4576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5c90614953565b60006040518083038185875af1925050503d8060008114613c99576040519150601f19603f3d011682016040523d82523d6000602084013e613c9e565b606091505b5050905080613ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd9906149b4565b60405180910390fd5b505b60008260176000015485613cf89190614e59565b613d0291906154d8565b90506000811115613ddd576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d5590614953565b60006040518083038185875af1925050503d8060008114613d92576040519150601f19603f3d011682016040523d82523d6000602084013e613d97565b606091505b5050905080613ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd29061583d565b60405180910390fd5b505b505050505050565b505050565b505050565b6000600267ffffffffffffffff811115613e0c57613e0b6144aa565b5b604051908082528060200260200182016040528015613e3a5781602001602082028036833780820191505090505b5090503081600081518110613e5257613e51614eb3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f1d919061585d565b81600181518110613f3157613f30614eb3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f9830600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612a21565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ffc95949392919061594b565b600060405180830381600087803b15801561401657600080fd5b505af115801561402a573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061407182614046565b9050919050565b61408181614066565b811461408c57600080fd5b50565b60008135905061409e81614078565b92915050565b60008115159050919050565b6140b9816140a4565b81146140c457600080fd5b50565b6000813590506140d6816140b0565b92915050565b600080604083850312156140f3576140f261403c565b5b60006141018582860161408f565b9250506020614112858286016140c7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561415657808201518184015260208101905061413b565b83811115614165576000848401525b50505050565b6000601f19601f8301169050919050565b60006141878261411c565b6141918185614127565b93506141a1818560208601614138565b6141aa8161416b565b840191505092915050565b600060208201905081810360008301526141cf818461417c565b905092915050565b6000819050919050565b6141ea816141d7565b81146141f557600080fd5b50565b600081359050614207816141e1565b92915050565b600080604083850312156142245761422361403c565b5b60006142328582860161408f565b9250506020614243858286016141f8565b9150509250929050565b614256816140a4565b82525050565b6000602082019050614271600083018461424d565b92915050565b60006020828403121561428d5761428c61403c565b5b600061429b8482850161408f565b91505092915050565b6000602082840312156142ba576142b961403c565b5b60006142c8848285016141f8565b91505092915050565b6142da816141d7565b82525050565b60006020820190506142f560008301846142d1565b92915050565b6000806000606084860312156143145761431361403c565b5b60006143228682870161408f565b93505060206143338682870161408f565b9250506040614344868287016141f8565b9150509250925092565b6000819050919050565b600061437361436e61436984614046565b61434e565b614046565b9050919050565b600061438582614358565b9050919050565b60006143978261437a565b9050919050565b6143a78161438c565b82525050565b60006020820190506143c2600083018461439e565b92915050565b600060ff82169050919050565b6143de816143c8565b82525050565b60006020820190506143f960008301846143d5565b92915050565b61440881614066565b82525050565b600060208201905061442360008301846143ff565b92915050565b600060a08201905061443e60008301886143ff565b61444b60208301876142d1565b61445860408301866142d1565b61446560608301856142d1565b61447260808301846142d1565b9695505050505050565b600060408201905061449160008301856142d1565b61449e60208301846142d1565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144e28261416b565b810181811067ffffffffffffffff82111715614501576145006144aa565b5b80604052505050565b6000614514614032565b905061452082826144d9565b919050565b600067ffffffffffffffff8211156145405761453f6144aa565b5b602082029050602081019050919050565b600080fd5b600061456961456484614525565b61450a565b9050808382526020820190506020840283018581111561458c5761458b614551565b5b835b818110156145b557806145a1888261408f565b84526020840193505060208101905061458e565b5050509392505050565b600082601f8301126145d4576145d36144a5565b5b81356145e4848260208601614556565b91505092915050565b600080604083850312156146045761460361403c565b5b600083013567ffffffffffffffff81111561462257614621614041565b5b61462e858286016145bf565b925050602061463f858286016140c7565b9150509250929050565b600080fd5b60008083601f840112614664576146636144a5565b5b8235905067ffffffffffffffff81111561468157614680614649565b5b60208301915083602082028301111561469d5761469c614551565b5b9250929050565b6000806000604084860312156146bd576146bc61403c565b5b600084013567ffffffffffffffff8111156146db576146da614041565b5b6146e78682870161464e565b935093505060206146fa868287016140c7565b9150509250925092565b6000806040838503121561471b5761471a61403c565b5b60006147298582860161408f565b925050602061473a8582860161408f565b9150509250929050565b600061474f8261437a565b9050919050565b61475f81614744565b82525050565b600060208201905061477a6000830184614756565b92915050565b600060408201905061479560008301856143ff565b6147a2602083018461424d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147f057607f821691505b602082108103614803576148026147a9565b5b50919050565b600081519050614818816141e1565b92915050565b6000602082840312156148345761483361403c565b5b600061484284828501614809565b91505092915050565b600060408201905061486060008301856143ff565b61486d60208301846142d1565b9392505050565b600081519050614883816140b0565b92915050565b60006020828403121561489f5761489e61403c565b5b60006148ad84828501614874565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006148ec601783614127565b91506148f7826148b6565b602082019050919050565b6000602082019050818103600083015261491b816148df565b9050919050565b600081905092915050565b50565b600061493d600083614922565b91506149488261492d565b600082019050919050565b600061495e82614930565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b600061499e602083614127565b91506149a982614968565b602082019050919050565b600060208201905081810360008301526149cd81614991565b9050919050565b7f746869732077616c6c657420697320616c726561647920736574000000000000600082015250565b6000614a0a601a83614127565b9150614a15826149d4565b602082019050919050565b60006020820190508181036000830152614a39816149fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a7a826141d7565b9150614a85836141d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aba57614ab9614a40565b5b828201905092915050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b6000614b21602a83614127565b9150614b2c82614ac5565b604082019050919050565b60006020820190508181036000830152614b5081614b14565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b6000614b8d601d83614127565b9150614b9882614b57565b602082019050919050565b60006020820190508181036000830152614bbc81614b80565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b6000614bf9602083614127565b9150614c0482614bc3565b602082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b6000614c65601183614127565b9150614c7082614c2f565b602082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b6000614ca682614046565b9050919050565b614cb681614c9b565b82525050565b6000602082019050614cd16000830184614cad565b92915050565b6000606082019050614cec60008301866143ff565b614cf960208301856143ff565b614d0660408301846142d1565b949350505050565b600081519050614d1d81614078565b92915050565b600080600080600060a08688031215614d3f57614d3e61403c565b5b6000614d4d88828901614d0e565b9550506020614d5e88828901614809565b9450506040614d6f88828901614809565b9350506060614d8088828901614809565b9250506080614d9188828901614809565b9150509295509295909350565b6000604082019050614db360008301856143ff565b614dc060208301846143ff565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e23602583614127565b9150614e2e82614dc7565b604082019050919050565b60006020820190508181036000830152614e5281614e16565b9050919050565b6000614e64826141d7565b9150614e6f836141d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ea857614ea7614a40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614eed826141d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f1f57614f1e614a40565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b614f4e81614066565b82525050565b6000614f608383614f45565b60208301905092915050565b6000614f7b602084018461408f565b905092915050565b6000602082019050919050565b6000614f9c8385614f2a565b9350614fa782614f3b565b8060005b85811015614fe057614fbd8284614f6c565b614fc78882614f54565b9750614fd283614f83565b925050600181019050614fab565b5085925050509392505050565b60006040820190508181036000830152615008818587614f90565b9050615017602083018461424d565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061507b602683614127565b91506150868261501f565b604082019050919050565b600060208201905081810360008301526150aa8161506e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006150e7602083614127565b91506150f2826150b1565b602082019050919050565b60006020820190508181036000830152615116816150da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615179602483614127565b91506151848261511d565b604082019050919050565b600060208201905081810360008301526151a88161516c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061520b602283614127565b9150615216826151af565b604082019050919050565b6000602082019050818103600083015261523a816151fe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615277601d83614127565b915061528282615241565b602082019050919050565b600060208201905081810360008301526152a68161526a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615309602583614127565b9150615314826152ad565b604082019050919050565b60006020820190508181036000830152615338816152fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061539b602383614127565b91506153a68261533f565b604082019050919050565b600060208201905081810360008301526153ca8161538e565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b6000615407600b83614127565b9150615412826153d1565b602082019050919050565b60006020820190508181036000830152615436816153fa565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000615473601283614127565b915061547e8261543d565b602082019050919050565b600060208201905081810360008301526154a281615466565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006154e3826141d7565b91506154ee836141d7565b9250826154fe576154fd6154a9565b5b828204905092915050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061553f601b83614127565b915061554a82615509565b602082019050919050565b6000602082019050818103600083015261556e81615532565b9050919050565b7f556e61626c6520746f20657863656564204d6178206275790000000000000000600082015250565b60006155ab601883614127565b91506155b682615575565b602082019050919050565b600060208201905081810360008301526155da8161559e565b9050919050565b60006155ec826141d7565b91506155f7836141d7565b92508282101561560a57615609614a40565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615671602183614127565b915061567c82615615565b604082019050919050565b600060208201905081810360008301526156a081615664565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615703602283614127565b915061570e826156a7565b604082019050919050565b60006020820190508181036000830152615732816156f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615795602683614127565b91506157a082615739565b604082019050919050565b600060208201905081810360008301526157c481615788565b9050919050565b7f4661696c656420746f2073656e642045544820746f207472656173757279207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b6000615827602583614127565b9150615832826157cb565b604082019050919050565b600060208201905081810360008301526158568161581a565b9050919050565b6000602082840312156158735761587261403c565b5b600061588184828501614d0e565b91505092915050565b6000819050919050565b60006158af6158aa6158a58461588a565b61434e565b6141d7565b9050919050565b6158bf81615894565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006158f8826158c5565b6159028185614f2a565b935061590d836158d0565b8060005b8381101561593e5781516159258882614f54565b9750615930836158e0565b925050600181019050615911565b5085935050505092915050565b600060a08201905061596060008301886142d1565b61596d60208301876158b6565b818103604083015261597f81866158ed565b905061598e60608301856143ff565b61599b60808301846142d1565b969550505050505056fea264697066735822122099280299c9a2ef8abbf1e17dc003c6f93d44140beef5a45e0a756b12f686009a64736f6c634300080f003360806040523480156200001157600080fd5b506040518060400160405280601981526020017f4d6f6f6e5072696e7465725f4469766964656e64546f6b656e000000000000008152506040518060400160405280601981526020017f4d6f6f6e5072696e7465725f4469766964656e64546f6b656e000000000000008152508181816003908162000091919062000416565b508060049081620000a3919062000416565b505050620000c6620000ba620000ce60201b60201c565b620000d660201b60201c565b5050620004fd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021e57607f821691505b602082108103620002345762000233620001d6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025f565b620002aa86836200025f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f7620002f1620002eb84620002c2565b620002cc565b620002c2565b9050919050565b6000819050919050565b6200031383620002d6565b6200032b6200032282620002fe565b8484546200026c565b825550505050565b600090565b6200034262000333565b6200034f81848462000308565b505050565b5b8181101562000377576200036b60008262000338565b60018101905062000355565b5050565b601f821115620003c65762000390816200023a565b6200039b846200024f565b81016020851015620003ab578190505b620003c3620003ba856200024f565b83018262000354565b50505b505050565b600082821c905092915050565b6000620003eb60001984600802620003cb565b1980831691505092915050565b6000620004068383620003d8565b9150826002028217905092915050565b62000421826200019c565b67ffffffffffffffff8111156200043d576200043c620001a7565b5b62000449825462000205565b620004568282856200037b565b600060209050601f8311600181146200048e576000841562000479578287015190505b620004858582620003f8565b865550620004f5565b601f1984166200049e866200023a565b60005b82811015620004c857848901518255600182019150602085019450602081019050620004a1565b86831015620004e85784890151620004e4601f891682620003d8565b8355505b6001600288020188555050505b505050505050565b61314d806200050d6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a457c2d7116100ad578063dceeeae01161007c578063dceeeae014610612578063dd62ed3e14610630578063e30443bc14610660578063f2fde38b1461067c578063fbcbc0f114610698576101fb565b8063a457c2d714610552578063a8b9d24014610582578063a9059cbb146105b2578063aafd847a146105e2576101fb565b80638da5cb5b116100e95780638da5cb5b146104c857806391b89fba146104e657806395d89b41146105165780639e1e066114610534576101fb565b8063715018a614610440578063807ab4f71461044a57806385a6b3ae1461047a5780638c2ac16c14610498576101fb565b80633243c79111610192578063497ec82311610161578063497ec823146103ba5780634e7b827f146103d65780636a4740021461040657806370a0823114610410576101fb565b80633243c7911461033657806339509351146103525780633b36a1d71461038257806344b6bd9e1461039e576101fb565b8063226cfa3d116101ce578063226cfa3d1461028857806323b872dd146102b857806327ce0147146102e8578063313ce56714610318576101fb565b80630483f7a01461020057806306fdde031461021c578063095ea7b31461023a57806318160ddd1461026a575b600080fd5b61021a6004803603810190610215919061221a565b6106cc565b005b610224610808565b60405161023191906122f3565b60405180910390f35b610254600480360381019061024f919061234b565b61089a565b604051610261919061239a565b60405180910390f35b6102726108bd565b60405161027f91906123c4565b60405180910390f35b6102a2600480360381019061029d91906123df565b6108c7565b6040516102af91906123c4565b60405180910390f35b6102d260048036038101906102cd919061240c565b6108df565b6040516102df919061239a565b60405180910390f35b61030260048036038101906102fd91906123df565b61090e565b60405161030f91906123c4565b60405180910390f35b6103206109b1565b60405161032d919061247b565b60405180910390f35b610350600480360381019061034b9190612496565b6109ba565b005b61036c6004803603810190610367919061234b565b610a9c565b604051610379919061239a565b60405180910390f35b61039c600480360381019061039791906123df565b610ad3565b005b6103b860048036038101906103b391906123df565b610b8b565b005b6103d460048036038101906103cf91906124c3565b610bd7565b005b6103f060048036038101906103eb91906123df565b610cdb565b6040516103fd919061239a565b60405180910390f35b61040e610cfb565b005b61042a600480360381019061042591906123df565b610d07565b60405161043791906123c4565b60405180910390f35b610448610d4f565b005b610464600480360381019061045f9190612541565b610d63565b604051610471919061239a565b60405180910390f35b610482610eb8565b60405161048f91906123c4565b60405180910390f35b6104b260048036038101906104ad91906123df565b610ebe565b6040516104bf91906123c4565b60405180910390f35b6104d0610ed6565b6040516104dd919061257d565b60405180910390f35b61050060048036038101906104fb91906123df565b610f00565b60405161050d91906123c4565b60405180910390f35b61051e610f12565b60405161052b91906122f3565b60405180910390f35b61053c610fa4565b60405161054991906123c4565b60405180910390f35b61056c6004803603810190610567919061234b565b610faa565b604051610579919061239a565b60405180910390f35b61059c600480360381019061059791906123df565b611021565b6040516105a991906123c4565b60405180910390f35b6105cc60048036038101906105c7919061234b565b611084565b6040516105d9919061239a565b60405180910390f35b6105fc60048036038101906105f791906123df565b6110a7565b60405161060991906123c4565b60405180910390f35b61061a6110f0565b604051610627919061257d565b60405180910390f35b61064a600480360381019061064591906124c3565b611116565b60405161065791906123c4565b60405180910390f35b61067a6004803603810190610675919061234b565b61119d565b005b610696600480360381019061069191906123df565b611205565b005b6106b260048036038101906106ad91906123df565b611288565b6040516106c3959493929190612598565b60405180910390f35b6106d4611368565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361073057600080fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515811515036107a35761079e8260006113e6565b6107b6565b6107b5826107b084610d07565b6113e6565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516107fc919061239a565b60405180910390a25050565b6060600380546108179061261a565b80601f01602080910402602001604051908101604052809291908181526020018280546108439061261a565b80156108905780601f1061086557610100808354040283529160200191610890565b820191906000526020600020905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b6000806108a5611453565b90506108b281858561145b565b600191505092915050565b6000600254905090565b600d6020528060005260406000206000915090505481565b6000806108ea611453565b90506108f7858285611624565b6109028585856116b0565b60019150509392505050565b60007001000000000000000000000000000000006109a061099b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461098d61098861097788610d07565b6007546116f690919063ffffffff16565b611770565b61178d90919063ffffffff16565b6117d8565b6109aa91906126a9565b9050919050565b60006012905090565b6109c2611368565b60006109cc6108bd565b116109d657600080fd5b6000811115610a9957610a296109ea6108bd565b610a0e700100000000000000000000000000000000846116f690919063ffffffff16565b610a1891906126a9565b6007546117ef90919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651182604051610a7591906123c4565b60405180910390a2610a9281600a546117ef90919063ffffffff16565b600a819055505b50565b600080610aa7611453565b9050610ac8818585610ab98589611116565b610ac391906126da565b61145b565b600191505092915050565b610adb611368565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610b0190612761565b60006040518083038185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e906127c2565b60405180910390fd5b5050565b610b93611368565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610bdf611368565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c35919061257d565b602060405180830381865afa158015610c52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7691906127f7565b6040518363ffffffff1660e01b8152600401610c93929190612824565b6020604051808303816000875af1158015610cb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd69190612862565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610d043361184d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d57611368565b610d616000611ad7565b565b6000610d6d611368565b6000610d788361184d565b90506000811115610ead5742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1291906126da565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610e9b91906123c4565b60405180910390a26001915050610eb3565b60009150505b919050565b600a5481565b600e6020528060005260406000206000915090505481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610f0b82611021565b9050919050565b606060048054610f219061261a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4d9061261a565b8015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b5050505050905090565b600b5481565b600080610fb5611453565b90506000610fc38286611116565b905083811015611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90612901565b60405180910390fd5b611015828686840361145b565b60019250505092915050565b600061107d600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106f8461090e565b611b9d90919063ffffffff16565b9050919050565b60008061108f611453565b905061109c8185856116b0565b600191505092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111a5611368565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112015761120082826113e6565b5b5050565b61120d611368565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612993565b60405180910390fd5b61128581611ad7565b50565b6000806000806000611298612141565b86816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506112d987611021565b8160200181815250506112eb8761090e565b816040018181525050600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548160600181815250508060000151816020015182604001518360600151600b54955095509550955095505091939590929450565b611370611453565b73ffffffffffffffffffffffffffffffffffffffff1661138e610ed6565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906129ff565b60405180910390fd5b565b60006113f183610d07565b9050808211156114225760006114108284611b9d90919063ffffffff16565b905061141c8482611be7565b5061144e565b8082101561144d57600061143f8383611b9d90919063ffffffff16565b905061144b8482611ca6565b505b5b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190612a91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090612b23565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161161791906123c4565b60405180910390a3505050565b60006116308484611116565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116aa578181101561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390612b8f565b60405180910390fd5b6116a9848484840361145b565b5b50505050565b60006116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e890612c21565b60405180910390fd5b505050565b6000808303611708576000905061176a565b600082846117169190612c41565b905082848261172591906126a9565b14611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90612d0d565b60405180910390fd5b809150505b92915050565b600080829050600081121561178457600080fd5b80915050919050565b600080828461179c9190612d37565b9050600083121580156117af5750838112155b806117c557506000831280156117c457508381125b5b6117ce57600080fd5b8091505092915050565b6000808212156117e757600080fd5b819050919050565b60008082846117fe91906126da565b905083811015611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90612e17565b60405180910390fd5b8091505092915050565b60008061185983611021565b90506000811115611acc576118b681600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ef90919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b600082825461190b91906126da565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161195891906123c4565b60405180910390a26000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016119bf929190612e96565b6020604051808303816000875af11580156119de573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a029190612862565b905080611ac257611a5b82600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9d90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600b6000828254611ab09190612ebf565b92505081905550600092505050611ad2565b8192505050611ad2565b60009150505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611bdf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d65565b905092915050565b611bf18282611dc9565b611c5f611c11611c0c836007546116f690919063ffffffff16565b611770565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611cb08282611f6a565b611d1e611cd0611ccb836007546116f690919063ffffffff16565b611770565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461178d90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000838311158290611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da491906122f3565b60405180910390fd5b5060008385611dbc9190612ebf565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f90612f3f565b60405180910390fd5b611e4460008383612137565b8060026000828254611e5691906126da565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611f0791906123c4565b60405180910390a3611f1b6000838361213c565b5050565b6000808284611f2e9190612f5f565b905060008312158015611f415750838113155b80611f575750600083128015611f5657508381135b5b611f6057600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613065565b60405180910390fd5b611fe582600083612137565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612062906130f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161211e91906123c4565b60405180910390a36121328360008461213c565b505050565b505050565b505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121af82612184565b9050919050565b6121bf816121a4565b81146121ca57600080fd5b50565b6000813590506121dc816121b6565b92915050565b60008115159050919050565b6121f7816121e2565b811461220257600080fd5b50565b600081359050612214816121ee565b92915050565b600080604083850312156122315761223061217f565b5b600061223f858286016121cd565b925050602061225085828601612205565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612294578082015181840152602081019050612279565b838111156122a3576000848401525b50505050565b6000601f19601f8301169050919050565b60006122c58261225a565b6122cf8185612265565b93506122df818560208601612276565b6122e8816122a9565b840191505092915050565b6000602082019050818103600083015261230d81846122ba565b905092915050565b6000819050919050565b61232881612315565b811461233357600080fd5b50565b6000813590506123458161231f565b92915050565b600080604083850312156123625761236161217f565b5b6000612370858286016121cd565b925050602061238185828601612336565b9150509250929050565b612394816121e2565b82525050565b60006020820190506123af600083018461238b565b92915050565b6123be81612315565b82525050565b60006020820190506123d960008301846123b5565b92915050565b6000602082840312156123f5576123f461217f565b5b6000612403848285016121cd565b91505092915050565b6000806000606084860312156124255761242461217f565b5b6000612433868287016121cd565b9350506020612444868287016121cd565b925050604061245586828701612336565b9150509250925092565b600060ff82169050919050565b6124758161245f565b82525050565b6000602082019050612490600083018461246c565b92915050565b6000602082840312156124ac576124ab61217f565b5b60006124ba84828501612336565b91505092915050565b600080604083850312156124da576124d961217f565b5b60006124e8858286016121cd565b92505060206124f9858286016121cd565b9150509250929050565b600061250e82612184565b9050919050565b61251e81612503565b811461252957600080fd5b50565b60008135905061253b81612515565b92915050565b6000602082840312156125575761255661217f565b5b60006125658482850161252c565b91505092915050565b612577816121a4565b82525050565b6000602082019050612592600083018461256e565b92915050565b600060a0820190506125ad600083018861256e565b6125ba60208301876123b5565b6125c760408301866123b5565b6125d460608301856123b5565b6125e160808301846123b5565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061263257607f821691505b602082108103612645576126446125eb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126b482612315565b91506126bf83612315565b9250826126cf576126ce61264b565b5b828204905092915050565b60006126e582612315565b91506126f083612315565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127255761272461267a565b5b828201905092915050565b600081905092915050565b50565b600061274b600083612730565b91506127568261273b565b600082019050919050565b600061276c8261273e565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f2077616c6c657400000000600082015250565b60006127ac601c83612265565b91506127b782612776565b602082019050919050565b600060208201905081810360008301526127db8161279f565b9050919050565b6000815190506127f18161231f565b92915050565b60006020828403121561280d5761280c61217f565b5b600061281b848285016127e2565b91505092915050565b6000604082019050612839600083018561256e565b61284660208301846123b5565b9392505050565b60008151905061285c816121ee565b92915050565b6000602082840312156128785761287761217f565b5b60006128868482850161284d565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006128eb602583612265565b91506128f68261288f565b604082019050919050565b6000602082019050818103600083015261291a816128de565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061297d602683612265565b915061298882612921565b604082019050919050565b600060208201905081810360008301526129ac81612970565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129e9602083612265565b91506129f4826129b3565b602082019050919050565b60006020820190508181036000830152612a18816129dc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a7b602483612265565b9150612a8682612a1f565b604082019050919050565b60006020820190508181036000830152612aaa81612a6e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b0d602283612265565b9150612b1882612ab1565b604082019050919050565b60006020820190508181036000830152612b3c81612b00565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b79601d83612265565b9150612b8482612b43565b602082019050919050565b60006020820190508181036000830152612ba881612b6c565b9050919050565b7f4469766964656e645f547261636b65723a204e6f207472616e7366657273206160008201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b6000612c0b602683612265565b9150612c1682612baf565b604082019050919050565b60006020820190508181036000830152612c3a81612bfe565b9050919050565b6000612c4c82612315565b9150612c5783612315565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c9057612c8f61267a565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cf7602183612265565b9150612d0282612c9b565b604082019050919050565b60006020820190508181036000830152612d2681612cea565b9050919050565b6000819050919050565b6000612d4282612d2d565b9150612d4d83612d2d565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615612d8857612d8761267a565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615612dc057612dbf61267a565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612e01601b83612265565b9150612e0c82612dcb565b602082019050919050565b60006020820190508181036000830152612e3081612df4565b9050919050565b6000819050919050565b6000612e5c612e57612e5284612184565b612e37565b612184565b9050919050565b6000612e6e82612e41565b9050919050565b6000612e8082612e63565b9050919050565b612e9081612e75565b82525050565b6000604082019050612eab6000830185612e87565b612eb860208301846123b5565b9392505050565b6000612eca82612315565b9150612ed583612315565b925082821015612ee857612ee761267a565b5b828203905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612f29601f83612265565b9150612f3482612ef3565b602082019050919050565b60006020820190508181036000830152612f5881612f1c565b9050919050565b6000612f6a82612d2d565b9150612f7583612d2d565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615612fb057612faf61267a565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615612fe857612fe761267a565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061304f602183612265565b915061305a82612ff3565b604082019050919050565b6000602082019050818103600083015261307e81613042565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006130e1602283612265565b91506130ec82613085565b604082019050919050565b60006020820190508181036000830152613110816130d4565b905091905056fea26469706673582212203846ed3d69dd0cd1bb263b39da20be46c6eace0bdd54b1c6f2b79e039201ecc764736f6c634300080f0033000000000000000000000000f7c350bb664f1269e1885ba3bf2cffc048ed427f

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c8063864701a5116101fd578063be825b5211610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610e63578063f53bc83514610e8c578063f66895a314610eb5578063f887ea4014610ee1578063f8b45b0514610f0c576103e4565b8063dd62ed3e14610da7578063de31a94b14610de4578063e11c336814610e21578063e2f4560514610e38576103e4565b8063c851cc32116100e7578063c851cc3214610d13578063cf1cca3214610d3c578063d2fcc00114610d53578063d89135cd14610d7c576103e4565b8063be825b5214610c6f578063c024666814610c98578063c18bc19514610cc1578063c492f04614610cea576103e4565b8063a8602fea11610190578063abb810521161015f578063abb8105214610ba3578063afa4f3b214610be0578063b62496f514610c09578063b83b297f14610c46576103e4565b8063a8602fea14610ad5578063a8aa1b3114610afe578063a8b9d24014610b29578063a9059cbb14610b66576103e4565b80638ea5220f116101cc5780638ea5220f14610a1957806395d89b4114610a445780639a7a23d614610a6f578063a457c2d714610a98576103e4565b8063864701a51461096e57806388e765ff1461099a5780638c9684f9146109c55780638da5cb5b146109ee576103e4565b8063313ce567116102f85780634dc933121161028b5780636ddd17131161025a5780636ddd17131461088557806370a08231146108b057806370ec81f1146108ed578063715018a6146109165780637b510fe81461092d576103e4565b80634dc93312146107cb5780634e71d92d146107f45780634fbee1931461080b5780636843cd8414610848576103e4565b80634626402b116102c75780634626402b1461073357806346469afb1461075e5780634ada218b146107895780634c1b0b6b146107b4576103e4565b8063313ce56714610679578063342aa8b5146106a457806339509351146106cd57806342966c681461070a576103e4565b806318160ddd1161037057806323b872dd1161033f57806323b872dd146105bb5780632866ed21146105f85780632c1f52161461062357806330bb4cff1461064e576103e4565b806318160ddd146105115780631bff78981461053c5780631f53ac021461056757806321b7702914610590576103e4565b80630bd05b69116103ac5780630bd05b69146104a35780630be6c2f0146104ba5780630d1d5a7d146104d157806312b77e8a146104fa576103e4565b80630483f7a0146103e957806306fdde0314610412578063095ea7b31461043d5780630a78097d1461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b50610410600480360381019061040b91906140dc565b610f37565b005b34801561041e57600080fd5b50610427610fd2565b60405161043491906141b5565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f919061420d565b611064565b604051610471919061425c565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190614277565b611087565b005b3480156104af57600080fd5b506104b8611191565b005b3480156104c657600080fd5b506104cf611206565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906142a4565b61123a565b005b34801561050657600080fd5b5061050f61138e565b005b34801561051d57600080fd5b50610526611467565b60405161053391906142e0565b60405180910390f35b34801561054857600080fd5b50610551611471565b60405161055e91906142e0565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190614277565b611477565b005b34801561059c57600080fd5b506105a5611553565b6040516105b291906142e0565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906142fb565b611559565b6040516105ef919061425c565b60405180910390f35b34801561060457600080fd5b5061060d611588565b60405161061a919061425c565b60405180910390f35b34801561062f57600080fd5b5061063861159b565b60405161064591906143ad565b60405180910390f35b34801561065a57600080fd5b506106636115c1565b60405161067091906142e0565b60405180910390f35b34801561068557600080fd5b5061068e611659565b60405161069b91906143e4565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906140dc565b611662565b005b3480156106d957600080fd5b506106f460048036038101906106ef919061420d565b611721565b604051610701919061425c565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906142a4565b611758565b005b34801561073f57600080fd5b50610748611882565b604051610755919061440e565b60405180910390f35b34801561076a57600080fd5b506107736118a8565b60405161078091906142e0565b60405180910390f35b34801561079557600080fd5b5061079e6118ae565b6040516107ab919061425c565b60405180910390f35b3480156107c057600080fd5b506107c96118c1565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190614277565b61193b565b005b34801561080057600080fd5b506108096119dd565b005b34801561081757600080fd5b50610832600480360381019061082d9190614277565b611acd565b60405161083f919061425c565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190614277565b611b23565b60405161087c91906142e0565b60405180910390f35b34801561089157600080fd5b5061089a611bc8565b6040516108a7919061425c565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190614277565b611bdb565b6040516108e491906142e0565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f91906142a4565b611c23565b005b34801561092257600080fd5b5061092b611d79565b005b34801561093957600080fd5b50610954600480360381019061094f9190614277565b611d8d565b604051610965959493929190614429565b60405180910390f35b34801561097a57600080fd5b50610983611e44565b60405161099192919061447c565b60405180910390f35b3480156109a657600080fd5b506109af611e56565b6040516109bc91906142e0565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190614277565b611e5c565b005b3480156109fa57600080fd5b50610a03611efd565b604051610a10919061440e565b60405180910390f35b348015610a2557600080fd5b50610a2e611f27565b604051610a3b919061440e565b60405180910390f35b348015610a5057600080fd5b50610a59611f4d565b604051610a6691906141b5565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906140dc565b611fdf565b005b348015610aa457600080fd5b50610abf6004803603810190610aba919061420d565b611ff5565b604051610acc919061425c565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190614277565b61206c565b005b348015610b0a57600080fd5b50610b13612148565b604051610b20919061440e565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b9190614277565b61216e565b604051610b5d91906142e0565b60405180910390f35b348015610b7257600080fd5b50610b8d6004803603810190610b88919061420d565b612213565b604051610b9a919061425c565b60405180910390f35b348015610baf57600080fd5b50610bca6004803603810190610bc59190614277565b612236565b604051610bd7919061425c565b60405180910390f35b348015610bec57600080fd5b50610c076004803603810190610c0291906142a4565b612256565b005b348015610c1557600080fd5b50610c306004803603810190610c2b9190614277565b61228d565b604051610c3d919061425c565b60405180910390f35b348015610c5257600080fd5b50610c6d6004803603810190610c6891906145ed565b6122ad565b005b348015610c7b57600080fd5b50610c966004803603810190610c919190614277565b61234a565b005b348015610ca457600080fd5b50610cbf6004803603810190610cba91906140dc565b6123e2565b005b348015610ccd57600080fd5b50610ce86004803603810190610ce391906142a4565b6124ef565b005b348015610cf657600080fd5b50610d116004803603810190610d0c91906146a4565b612514565b005b348015610d1f57600080fd5b50610d3a6004803603810190610d359190614277565b6125fc565b005b348015610d4857600080fd5b50610d51612648565b005b348015610d5f57600080fd5b50610d7a6004803603810190610d7591906140dc565b61267c565b005b348015610d8857600080fd5b50610d916126df565b604051610d9e91906142e0565b60405180910390f35b348015610db357600080fd5b50610dce6004803603810190610dc99190614704565b6126e5565b604051610ddb91906142e0565b60405180910390f35b348015610df057600080fd5b50610e0b6004803603810190610e069190614277565b61276c565b604051610e1891906142e0565b60405180910390f35b348015610e2d57600080fd5b50610e36612811565b005b348015610e4457600080fd5b50610e4d6128af565b604051610e5a91906142e0565b60405180910390f35b348015610e6f57600080fd5b50610e8a6004803603810190610e859190614277565b6128b5565b005b348015610e9857600080fd5b50610eb36004803603810190610eae91906142a4565b612938565b005b348015610ec157600080fd5b50610eca61295d565b604051610ed892919061447c565b60405180910390f35b348015610eed57600080fd5b50610ef661296f565b604051610f039190614765565b60405180910390f35b348015610f1857600080fd5b50610f21612995565b604051610f2e91906142e0565b60405180910390f35b610f3f61299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610f9c929190614780565b600060405180830381600087803b158015610fb657600080fd5b505af1158015610fca573d6000803e3d6000fd5b505050505050565b606060038054610fe1906147d8565b80601f016020809104026020016040519081016040528092919081815260200182805461100d906147d8565b801561105a5780601f1061102f5761010080835404028352916020019161105a565b820191906000526020600020905b81548152906001019060200180831161103d57829003601f168201915b5050505050905090565b60008061106f612a19565b905061107c818585612a21565b600191505092915050565b61108f61299b565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6110b3611efd565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110ec919061440e565b602060405180830381865afa158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d919061481e565b6040518363ffffffff1660e01b815260040161114a92919061484b565b6020604051808303816000875af1158015611169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118d9190614889565b5050565b61119961299b565b601460039054906101000a900460ff16156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614902565b60405180910390fd5b6001601460036101000a81548160ff021916908315150217905550565b61120e61299b565b601460029054906101000a900460ff1615601460026101000a81548160ff021916908315150217905550565b61124261299b565b600081111561138b57600030905060008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b81526004016112af92919061484b565b6020604051808303816000875af11580156112ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f29190614889565b9050801561138857600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b815260040161135591906142e0565b600060405180830381600087803b15801561136f57600080fd5b505af1158015611383573d6000803e3d6000fd5b505050505b50505b50565b61139661299b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113de90614953565b60006040518083038185875af1925050503d806000811461141b576040519150601f19603f3d011682016040523d82523d6000602084013e611420565b606091505b5050905080611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906149b4565b60405180910390fd5b50565b6000600254905090565b601a5481565b61147f61299b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614a20565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b600080611564612a19565b9050611571858285612bea565b61157c858585612c76565b60019150509392505050565b601460029054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611630573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611654919061481e565b905090565b60006012905090565b61166a61299b565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036116c657600080fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008061172c612a19565b905061174d81858561173e85896126e5565b6117489190614a6f565b612a21565b600191505092915050565b60003390508161176782611bdb565b10156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614b37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90614ba3565b60405180910390fd5b6000821161185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614c0f565b60405180910390fd5b81600f546118689190614a6f565b600f81905550600082905061187d8282613534565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b601460039054906101000a900460ff1681565b6118c961299b565b60056019819055506007601a81905550604051806040016040528060038152602001600281525060156000820151816000015560208201518160010155905050604051806040016040528060048152602001600381525060176000820151816000015560208201518160010155905050565b61194361299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8261198b84611bdb565b6040518363ffffffff1660e01b81526004016119a892919061484b565b600060405180830381600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b5050505050565b601460029054906101000a900460ff16611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614c7b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611a879190614cbc565b6020604051808303816000875af1158015611aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aca9190614889565b50565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611b80919061440e565b602060405180830381865afa158015611b9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc1919061481e565b9050919050565b601460019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c2b61299b565b6000811115611d7657600030905060008173ffffffffffffffffffffffffffffffffffffffff166323b872dd33600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b8152600401611c9a93929190614cd7565b6020604051808303816000875af1158015611cb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cdd9190614889565b90508015611d7357600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633243c791846040518263ffffffff1660e01b8152600401611d4091906142e0565b600060405180830381600087803b158015611d5a57600080fd5b505af1158015611d6e573d6000803e3d6000fd5b505050505b50505b50565b611d8161299b565b611d8b6000613701565b565b6000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611df0919061440e565b60a060405180830381865afa158015611e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e319190614d23565b9450945094509450945091939590929450565b60158060000154908060010154905082565b600c5481565b611e6461299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823611eaa611efd565b836040518363ffffffff1660e01b8152600401611ec8929190614d9e565b600060405180830381600087803b158015611ee257600080fd5b505af1158015611ef6573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611f5c906147d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611f88906147d8565b8015611fd55780601f10611faa57610100808354040283529160200191611fd5565b820191906000526020600020905b815481529060010190602001808311611fb857829003601f168201915b5050505050905090565b611fe761299b565b611ff182826137c7565b5050565b600080612000612a19565b9050600061200e82866126e5565b905083811015612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614e39565b60405180910390fd5b6120608286868403612a21565b60019250505092915050565b61207461299b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614a20565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016121cb919061440e565b602060405180830381865afa1580156121e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220c919061481e565b9050919050565b60008061221e612a19565b905061222b818585612c76565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b61225e61299b565b6502e90edd0000811061227057600080fd5b670de0b6b3a7640000816122849190614e59565b600b8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6122b561299b565b60005b82518110156123455781601060008584815181106122d9576122d8614eb3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061233d90614ee2565b9150506122b8565b505050565b61235261299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b81526004016123ad919061440e565b600060405180830381600087803b1580156123c757600080fd5b505af11580156123db573d6000803e3d6000fd5b5050505050565b6123ea61299b565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361244657600080fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516124e3919061425c565b60405180910390a25050565b6124f761299b565b670de0b6b3a76400008161250b9190614e59565b600d8190555050565b61251c61299b565b60005b838390508110156125bb57816011600086868581811061254257612541614eb3565b5b90506020020160208101906125579190614277565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125b390614ee2565b91505061251f565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516125ef93929190614fed565b60405180910390a1505050565b61260461299b565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61265061299b565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b61268461299b565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c2ac16c836040518263ffffffff1660e01b81526004016127c9919061440e565b602060405180830381865afa1580156127e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061280a919061481e565b9050919050565b61281961299b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633b36a1d761285f611efd565b6040518263ffffffff1660e01b815260040161287b919061440e565b600060405180830381600087803b15801561289557600080fd5b505af11580156128a9573d6000803e3d6000fd5b50505050565b600b5481565b6128bd61299b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361292c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292390615091565b60405180910390fd5b61293581613701565b50565b61294061299b565b670de0b6b3a7640000816129549190614e59565b600c8190555050565b60178060000154908060010154905082565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6129a3612a19565b73ffffffffffffffffffffffffffffffffffffffff166129c1611efd565b73ffffffffffffffffffffffffffffffffffffffff1614612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906150fd565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a879061518f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af690615221565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612bdd91906142e0565b60405180910390a3505050565b6000612bf684846126e5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612c705781811015612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c599061528d565b60405180910390fd5b612c6f8484848403612a21565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc9061531f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4b906153b1565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612df85750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2e9061541d565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612edb5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ef45750601460009054906101000a900460ff16155b15612f4957601460039054906101000a900460ff16612f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3f90615489565b60405180910390fd5b5b60008103612f6257612f5d8383600061395b565b61352f565b6000612f6d30611bdb565b90506000600b548210159050808015612f935750601460009054906101000a900460ff16155b8015612fab5750601460019054906101000a900460ff165b80156130005750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130565750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ac5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561310d576001601460006101000a81548160ff0219169083151502179055506000601a541180156130e057506000600b54115b156130f1576130f0600b54613bd1565b5b6000601460006101000a81548160ff0219169083151502179055505b6000601460009054906101000a900460ff161590508080156131795750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fe576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131f3576064601a54866131e29190614e59565b6131ec91906154d8565b90506133e3565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561336d576064601954866132559190614e59565b61325f91906154d8565b9050600d5461326d87611bdb565b866132789190614a6f565b11156132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b090615555565b60405180910390fd5b600c548511156132fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f5906155c1565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036133685784600e546133619190614a6f565b600e819055505b6133e2565b60646019548661337d9190614e59565b61338791906154d8565b9050600d5461339587611bdb565b866133a09190614a6f565b11156133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d890615555565b60405180910390fd5b5b5b80856133ef91906155e1565b94506133fc87308361395b565b505b61340986868661395b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8761345189611bdb565b6040518363ffffffff1660e01b815260040161346e92919061484b565b600060405180830381600087803b15801561348857600080fd5b505af1925050508015613499575060015b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866134e288611bdb565b6040518363ffffffff1660e01b81526004016134ff92919061484b565b600060405180830381600087803b15801561351957600080fd5b505af192505050801561352a575060015b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359a90615687565b60405180910390fd5b6135af82600083613de5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362c90615719565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136e891906142e0565b60405180910390a36136fc83600084613dea565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361382357600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801561391157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b81526004016138de929190614780565b600060405180830381600087803b1580156138f857600080fd5b505af115801561390c573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036139ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c19061531f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a30906153b1565b60405180910390fd5b613a44838383613de5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac1906157ab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bb891906142e0565b60405180910390a3613bcb848484613dea565b50505050565b6000819050613bdf81613def565b60004790506000601a54905060008160176001015484613bff9190614e59565b613c0991906154d8565b90506000811115613ce4576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c5c90614953565b60006040518083038185875af1925050503d8060008114613c99576040519150601f19603f3d011682016040523d82523d6000602084013e613c9e565b606091505b5050905080613ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd9906149b4565b60405180910390fd5b505b60008260176000015485613cf89190614e59565b613d0291906154d8565b90506000811115613ddd576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d5590614953565b60006040518083038185875af1925050503d8060008114613d92576040519150601f19603f3d011682016040523d82523d6000602084013e613d97565b606091505b5050905080613ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd29061583d565b60405180910390fd5b505b505050505050565b505050565b505050565b6000600267ffffffffffffffff811115613e0c57613e0b6144aa565b5b604051908082528060200260200182016040528015613e3a5781602001602082028036833780820191505090505b5090503081600081518110613e5257613e51614eb3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f1d919061585d565b81600181518110613f3157613f30614eb3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f9830600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612a21565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ffc95949392919061594b565b600060405180830381600087803b15801561401657600080fd5b505af115801561402a573d6000803e3d6000fd5b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061407182614046565b9050919050565b61408181614066565b811461408c57600080fd5b50565b60008135905061409e81614078565b92915050565b60008115159050919050565b6140b9816140a4565b81146140c457600080fd5b50565b6000813590506140d6816140b0565b92915050565b600080604083850312156140f3576140f261403c565b5b60006141018582860161408f565b9250506020614112858286016140c7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561415657808201518184015260208101905061413b565b83811115614165576000848401525b50505050565b6000601f19601f8301169050919050565b60006141878261411c565b6141918185614127565b93506141a1818560208601614138565b6141aa8161416b565b840191505092915050565b600060208201905081810360008301526141cf818461417c565b905092915050565b6000819050919050565b6141ea816141d7565b81146141f557600080fd5b50565b600081359050614207816141e1565b92915050565b600080604083850312156142245761422361403c565b5b60006142328582860161408f565b9250506020614243858286016141f8565b9150509250929050565b614256816140a4565b82525050565b6000602082019050614271600083018461424d565b92915050565b60006020828403121561428d5761428c61403c565b5b600061429b8482850161408f565b91505092915050565b6000602082840312156142ba576142b961403c565b5b60006142c8848285016141f8565b91505092915050565b6142da816141d7565b82525050565b60006020820190506142f560008301846142d1565b92915050565b6000806000606084860312156143145761431361403c565b5b60006143228682870161408f565b93505060206143338682870161408f565b9250506040614344868287016141f8565b9150509250925092565b6000819050919050565b600061437361436e61436984614046565b61434e565b614046565b9050919050565b600061438582614358565b9050919050565b60006143978261437a565b9050919050565b6143a78161438c565b82525050565b60006020820190506143c2600083018461439e565b92915050565b600060ff82169050919050565b6143de816143c8565b82525050565b60006020820190506143f960008301846143d5565b92915050565b61440881614066565b82525050565b600060208201905061442360008301846143ff565b92915050565b600060a08201905061443e60008301886143ff565b61444b60208301876142d1565b61445860408301866142d1565b61446560608301856142d1565b61447260808301846142d1565b9695505050505050565b600060408201905061449160008301856142d1565b61449e60208301846142d1565b9392505050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144e28261416b565b810181811067ffffffffffffffff82111715614501576145006144aa565b5b80604052505050565b6000614514614032565b905061452082826144d9565b919050565b600067ffffffffffffffff8211156145405761453f6144aa565b5b602082029050602081019050919050565b600080fd5b600061456961456484614525565b61450a565b9050808382526020820190506020840283018581111561458c5761458b614551565b5b835b818110156145b557806145a1888261408f565b84526020840193505060208101905061458e565b5050509392505050565b600082601f8301126145d4576145d36144a5565b5b81356145e4848260208601614556565b91505092915050565b600080604083850312156146045761460361403c565b5b600083013567ffffffffffffffff81111561462257614621614041565b5b61462e858286016145bf565b925050602061463f858286016140c7565b9150509250929050565b600080fd5b60008083601f840112614664576146636144a5565b5b8235905067ffffffffffffffff81111561468157614680614649565b5b60208301915083602082028301111561469d5761469c614551565b5b9250929050565b6000806000604084860312156146bd576146bc61403c565b5b600084013567ffffffffffffffff8111156146db576146da614041565b5b6146e78682870161464e565b935093505060206146fa868287016140c7565b9150509250925092565b6000806040838503121561471b5761471a61403c565b5b60006147298582860161408f565b925050602061473a8582860161408f565b9150509250929050565b600061474f8261437a565b9050919050565b61475f81614744565b82525050565b600060208201905061477a6000830184614756565b92915050565b600060408201905061479560008301856143ff565b6147a2602083018461424d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147f057607f821691505b602082108103614803576148026147a9565b5b50919050565b600081519050614818816141e1565b92915050565b6000602082840312156148345761483361403c565b5b600061484284828501614809565b91505092915050565b600060408201905061486060008301856143ff565b61486d60208301846142d1565b9392505050565b600081519050614883816140b0565b92915050565b60006020828403121561489f5761489e61403c565b5b60006148ad84828501614874565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b60006148ec601783614127565b91506148f7826148b6565b602082019050919050565b6000602082019050818103600083015261491b816148df565b9050919050565b600081905092915050565b50565b600061493d600083614922565b91506149488261492d565b600082019050919050565b600061495e82614930565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b600061499e602083614127565b91506149a982614968565b602082019050919050565b600060208201905081810360008301526149cd81614991565b9050919050565b7f746869732077616c6c657420697320616c726561647920736574000000000000600082015250565b6000614a0a601a83614127565b9150614a15826149d4565b602082019050919050565b60006020820190508181036000830152614a39816149fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a7a826141d7565b9150614a85836141d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aba57614ab9614a40565b5b828201905092915050565b7f45524332303a204275726e20416d6f756e742065786365656473206163636f7560008201527f6e742062616c616e636500000000000000000000000000000000000000000000602082015250565b6000614b21602a83614127565b9150614b2c82614ac5565b604082019050919050565b60006020820190508181036000830152614b5081614b14565b9050919050565b7f45524332303a20496e76616c69642073656e6465722061646472657373000000600082015250565b6000614b8d601d83614127565b9150614b9882614b57565b602082019050919050565b60006020820190508181036000830152614bbc81614b80565b9050919050565b7f45524332303a20456e74657220736f6d6520616d6f756e7420746f206275726e600082015250565b6000614bf9602083614127565b9150614c0482614bc3565b602082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b6000614c65601183614127565b9150614c7082614c2f565b602082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b6000614ca682614046565b9050919050565b614cb681614c9b565b82525050565b6000602082019050614cd16000830184614cad565b92915050565b6000606082019050614cec60008301866143ff565b614cf960208301856143ff565b614d0660408301846142d1565b949350505050565b600081519050614d1d81614078565b92915050565b600080600080600060a08688031215614d3f57614d3e61403c565b5b6000614d4d88828901614d0e565b9550506020614d5e88828901614809565b9450506040614d6f88828901614809565b9350506060614d8088828901614809565b9250506080614d9188828901614809565b9150509295509295909350565b6000604082019050614db360008301856143ff565b614dc060208301846143ff565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e23602583614127565b9150614e2e82614dc7565b604082019050919050565b60006020820190508181036000830152614e5281614e16565b9050919050565b6000614e64826141d7565b9150614e6f836141d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ea857614ea7614a40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614eed826141d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f1f57614f1e614a40565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b614f4e81614066565b82525050565b6000614f608383614f45565b60208301905092915050565b6000614f7b602084018461408f565b905092915050565b6000602082019050919050565b6000614f9c8385614f2a565b9350614fa782614f3b565b8060005b85811015614fe057614fbd8284614f6c565b614fc78882614f54565b9750614fd283614f83565b925050600181019050614fab565b5085925050509392505050565b60006040820190508181036000830152615008818587614f90565b9050615017602083018461424d565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061507b602683614127565b91506150868261501f565b604082019050919050565b600060208201905081810360008301526150aa8161506e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006150e7602083614127565b91506150f2826150b1565b602082019050919050565b60006020820190508181036000830152615116816150da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615179602483614127565b91506151848261511d565b604082019050919050565b600060208201905081810360008301526151a88161516c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061520b602283614127565b9150615216826151af565b604082019050919050565b6000602082019050818103600083015261523a816151fe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000615277601d83614127565b915061528282615241565b602082019050919050565b600060208201905081810360008301526152a68161526a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615309602583614127565b9150615314826152ad565b604082019050919050565b60006020820190508181036000830152615338816152fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061539b602383614127565b91506153a68261533f565b604082019050919050565b600060208201905081810360008301526153ca8161538e565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b6000615407600b83614127565b9150615412826153d1565b602082019050919050565b60006020820190508181036000830152615436816153fa565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000615473601283614127565b915061547e8261543d565b602082019050919050565b600060208201905081810360008301526154a281615466565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006154e3826141d7565b91506154ee836141d7565b9250826154fe576154fd6154a9565b5b828204905092915050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b600061553f601b83614127565b915061554a82615509565b602082019050919050565b6000602082019050818103600083015261556e81615532565b9050919050565b7f556e61626c6520746f20657863656564204d6178206275790000000000000000600082015250565b60006155ab601883614127565b91506155b682615575565b602082019050919050565b600060208201905081810360008301526155da8161559e565b9050919050565b60006155ec826141d7565b91506155f7836141d7565b92508282101561560a57615609614a40565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615671602183614127565b915061567c82615615565b604082019050919050565b600060208201905081810360008301526156a081615664565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615703602283614127565b915061570e826156a7565b604082019050919050565b60006020820190508181036000830152615732816156f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615795602683614127565b91506157a082615739565b604082019050919050565b600060208201905081810360008301526157c481615788565b9050919050565b7f4661696c656420746f2073656e642045544820746f207472656173757279207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b6000615827602583614127565b9150615832826157cb565b604082019050919050565b600060208201905081810360008301526158568161581a565b9050919050565b6000602082840312156158735761587261403c565b5b600061588184828501614d0e565b91505092915050565b6000819050919050565b60006158af6158aa6158a58461588a565b61434e565b6141d7565b9050919050565b6158bf81615894565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006158f8826158c5565b6159028185614f2a565b935061590d836158d0565b8060005b8381101561593e5781516159258882614f54565b9750615930836158e0565b925050600181019050615911565b5085935050505092915050565b600060a08201905061596060008301886142d1565b61596d60208301876158b6565b818103604083015261597f81866158ed565b905061598e60608301856143ff565b61599b60808301846142d1565b969550505050505056fea264697066735822122099280299c9a2ef8abbf1e17dc003c6f93d44140beef5a45e0a756b12f686009a64736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f7c350bb664f1269e1885ba3bf2cffc048ed427f

-----Decoded View---------------
Arg [0] : _devWallet (address): 0xF7c350BB664F1269E1885Ba3bf2cFFc048eD427F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f7c350bb664f1269e1885ba3bf2cffc048ed427f


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.