ETH Price: $3,460.88 (+1.85%)
Gas: 9 Gwei

Token

FacTAO (FAC)
 

Overview

Max Total Supply

10,000,000 FAC

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
99,049.607767905990445001 FAC

Value
$0.00
0x90f1b8a98ceab965b8b4c7157de8610a64894311
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:
FAC

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.12;

import {Ownable} from "openzeppelin/access/Ownable.sol";
import {ERC20} from "openzeppelin/token/ERC20/ERC20.sol";
import {IERC20} from "openzeppelin/token/ERC20/IERC20.sol";
import {SafeMath} from "openzeppelin/utils/math/SafeMath.sol";

import {IUniswapV2Factory} from "./interfaces/IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol";

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

    IUniswapV2Router02 public immutable uniswapRouter;
    address public uniswapV2Pair;

    bool private swapping;

    address public treasuryWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;

    uint256 public tokensForTreasury;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("FacTAO", "FAC") {
        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

        excludeFromMaxTransaction(address(_uniswapRouter), true);
        uniswapRouter = _uniswapRouter;

        uint256 _buyTreasuryFee = 30;
        uint256 _sellTreasuryFee = 80;

        uint256 totalSupply = 10_000_000 * 1e18;

        maxTransactionAmount = 100_000 * 1e18; 
        maxWallet = 100_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyTreasuryFee = _buyTreasuryFee;
        buyTotalFees = buyTreasuryFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellTotalFees = sellTreasuryFee;

        treasuryWallet = address(0xf8A8aCa98971Facbd6FA5B456084A6B04edb99be);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

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

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function createPair() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory())
            .createPair(address(this), uniswapRouter.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyTotalFees = buyTreasuryFee;
    }

    function updateSellFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellTotalFees = sellTreasuryFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateTreasuryWallet(address newWallet) external onlyOwner {
        emit treasuryWalletUpdated(newWallet, treasuryWallet);
        treasuryWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[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(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForTreasury += (fees * buyTreasuryFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForTreasury;
        bool success;

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

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


        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        tokensForTreasury = 0;

        (success, ) = address(treasuryWallet).call{value: ethBalance}("");
    }

    function withdrawTAS() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawETH(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

File 2 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 3 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 4 of 9 : SafeMath.sol
pragma solidity ^0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 9 : IERC20.sol
pragma solidity ^0.8.0; 

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 6 of 9 : 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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 7 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.19;

import {Context} from "../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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.19;

/**
 * @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 9 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTAS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff02191690831515021790555034801562000078575f80fd5b506040518060400160405280600681526020017f46616354414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46414300000000000000000000000000000000000000000000000000000000008152508160039081620000f69190620009d1565b508060049081620001089190620009d1565b5050506200012b6200011f620002e360201b60201c565b620002ea60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000156816001620003ad60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505f601e90505f605090505f6a084595161401484a000000905069152d02c7e14af680000060088190555069152d02c7e14af6800000600a81905550612710600582620001d7919062000ae2565b620001e3919062000b59565b60098190555082600e81905550600e54600d8190555081601081905550601054600f8190555073f8a8aca98971facbd6fa5b456084a6b04edb99be60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200027f620002716200049460201b60201c565b6001620004bc60201b60201c565b62000292306001620004bc60201b60201c565b620002b4620002a66200049460201b60201c565b6001620003ad60201b60201c565b620002c7306001620003ad60201b60201c565b620002d93382620005f360201b60201c565b5050505062000d19565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003bd620002e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003e36200049460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200043c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004339062000bee565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004cc620002e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004f26200049460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200054b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005429062000bee565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620005e7919062000c2a565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000664576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065b9062000c93565b60405180910390fd5b620006775f83836200076360201b60201c565b8060025f8282546200068a919062000cb3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620006de919062000cb3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000744919062000cfe565b60405180910390a36200075f5f83836200076860201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007e957607f821691505b602082108103620007ff57620007fe620007a4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000826565b6200086f868362000826565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008b9620008b3620008ad8462000887565b62000890565b62000887565b9050919050565b5f819050919050565b620008d48362000899565b620008ec620008e382620008c0565b84845462000832565b825550505050565b5f90565b62000902620008f4565b6200090f818484620008c9565b505050565b5b8181101562000936576200092a5f82620008f8565b60018101905062000915565b5050565b601f82111562000985576200094f8162000805565b6200095a8462000817565b810160208510156200096a578190505b62000982620009798562000817565b83018262000914565b50505b505050565b5f82821c905092915050565b5f620009a75f19846008026200098a565b1980831691505092915050565b5f620009c1838362000996565b9150826002028217905092915050565b620009dc826200076d565b67ffffffffffffffff811115620009f857620009f762000777565b5b62000a048254620007d1565b62000a118282856200093a565b5f60209050601f83116001811462000a47575f841562000a32578287015190505b62000a3e8582620009b4565b86555062000aad565b601f19841662000a578662000805565b5f5b8281101562000a805784890151825560018201915060208501945060208101905062000a59565b8683101562000aa0578489015162000a9c601f89168262000996565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000aee8262000887565b915062000afb8362000887565b925082820262000b0b8162000887565b9150828204841483151762000b255762000b2462000ab5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000b658262000887565b915062000b728362000887565b92508262000b855762000b8462000b2c565b5b828204905092915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000bd660208362000b90565b915062000be38262000ba0565b602082019050919050565b5f6020820190508181035f83015262000c078162000bc8565b9050919050565b5f8115159050919050565b62000c248162000c0e565b82525050565b5f60208201905062000c3f5f83018462000c19565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c7b601f8362000b90565b915062000c888262000c45565b602082019050919050565b5f6020820190508181035f83015262000cac8162000c6d565b9050919050565b5f62000cbf8262000887565b915062000ccc8362000887565b925082820190508082111562000ce75762000ce662000ab5565b5b92915050565b62000cf88162000887565b82525050565b5f60208201905062000d135f83018462000ced565b92915050565b60805161525162000d555f395f818161172001528181611e5c01528181611f0501528181613d1701528181613df60152613e1d01526152515ff3fe60806040526004361061031d575f3560e01c80637571336a116101aa578063c0246668116100f6578063e19b282311610094578063f2fde38b1161006e578063f2fde38b14610b7a578063f8b45b0514610ba2578063f9f92be414610bcc578063fe575a8714610bf457610324565b8063e19b282314610b00578063e2f4560514610b28578063eba4c33314610b5257610324565b8063cc2ffe7c116100d0578063cc2ffe7c14610a34578063d257b34f14610a5e578063d85ba06314610a9a578063dd62ed3e14610ac457610324565b8063c0246668146109ba578063c18bc195146109e2578063c8c8ebe414610a0a57610324565b806395d89b4111610163578063a457c2d71161013d578063a457c2d7146108dc578063a9059cbb14610918578063b62496f514610954578063bbc0c7421461099057610324565b806395d89b41146108745780639a7a23d61461089e5780639e78fb4f146108c657610324565b80637571336a1461079457806375e3661e146107bc578063809d458d146107e45780638a8c523c1461080c5780638da5cb5b14610822578063924de9b71461084c57610324565b80634a62bb65116102695780636b2fb12411610222578063715018a6116101fc578063715018a61461070257806371fc468814610718578063735de9f714610740578063751039fc1461076a57610324565b80636b2fb124146106725780636ddd17131461069c57806370a08231146106c657610324565b80634a62bb651461057a5780634fbee193146105a45780635c068a8c146105e05780635f1893611461060a578063690d8320146106205780636a486a8e1461064857610324565b8063313ce567116102d65780633dc599ff116102b05780633dc599ff146104e6578063411702ab146105105780634626402b1461052657806349bd5a5e1461055057610324565b8063313ce5671461045857806339509351146104825780633aeac4e1146104be57610324565b806306fdde0314610328578063095ea7b31461035257806310d5de531461038e57806318160ddd146103ca578063203e727e146103f457806323b872dd1461041c57610324565b3661032457005b5f80fd5b348015610333575f80fd5b5061033c610c30565b6040516103499190613f4c565b60405180910390f35b34801561035d575f80fd5b5061037860048036038101906103739190613ffd565b610cc0565b6040516103859190614055565b60405180910390f35b348015610399575f80fd5b506103b460048036038101906103af919061406e565b610cdd565b6040516103c19190614055565b60405180910390f35b3480156103d5575f80fd5b506103de610cfa565b6040516103eb91906140a8565b60405180910390f35b3480156103ff575f80fd5b5061041a600480360381019061041591906140c1565b610d03565b005b348015610427575f80fd5b50610442600480360381019061043d91906140ec565b610e12565b60405161044f9190614055565b60405180910390f35b348015610463575f80fd5b5061046c610f04565b6040516104799190614157565b60405180910390f35b34801561048d575f80fd5b506104a860048036038101906104a39190613ffd565b610f0c565b6040516104b59190614055565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190614170565b610fb3565b005b3480156104f1575f80fd5b506104fa611199565b6040516105079190614055565b60405180910390f35b34801561051b575f80fd5b506105246111ac565b005b348015610531575f80fd5b5061053a611366565b60405161054791906141bd565b60405180910390f35b34801561055b575f80fd5b5061056461138b565b60405161057191906141bd565b60405180910390f35b348015610585575f80fd5b5061058e6113b0565b60405161059b9190614055565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c5919061406e565b6113c2565b6040516105d79190614055565b60405180910390f35b3480156105eb575f80fd5b506105f4611414565b60405161060191906140a8565b60405180910390f35b348015610615575f80fd5b5061061e61141a565b005b34801561062b575f80fd5b506106466004803603810190610641919061406e565b6114b3565b005b348015610653575f80fd5b5061065c6115a4565b60405161066991906140a8565b60405180910390f35b34801561067d575f80fd5b506106866115aa565b60405161069391906140a8565b60405180910390f35b3480156106a7575f80fd5b506106b06115b0565b6040516106bd9190614055565b60405180910390f35b3480156106d1575f80fd5b506106ec60048036038101906106e7919061406e565b6115c3565b6040516106f991906140a8565b60405180910390f35b34801561070d575f80fd5b50610716611608565b005b348015610723575f80fd5b5061073e600480360381019061073991906140c1565b61168f565b005b34801561074b575f80fd5b5061075461171e565b6040516107619190614231565b60405180910390f35b348015610775575f80fd5b5061077e611742565b60405161078b9190614055565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190614274565b6117df565b005b3480156107c7575f80fd5b506107e260048036038101906107dd919061406e565b6118b3565b005b3480156107ef575f80fd5b5061080a6004803603810190610805919061406e565b611986565b005b348015610817575f80fd5b50610820611ac0565b005b34801561082d575f80fd5b50610836611b74565b60405161084391906141bd565b60405180910390f35b348015610857575f80fd5b50610872600480360381019061086d91906142b2565b611b9c565b005b34801561087f575f80fd5b50610888611c35565b6040516108959190613f4c565b60405180910390f35b3480156108a9575f80fd5b506108c460048036038101906108bf9190614274565b611cc5565b005b3480156108d1575f80fd5b506108da611dde565b005b3480156108e7575f80fd5b5061090260048036038101906108fd9190613ffd565b612086565b60405161090f9190614055565b60405180910390f35b348015610923575f80fd5b5061093e60048036038101906109399190613ffd565b61216c565b60405161094b9190614055565b60405180910390f35b34801561095f575f80fd5b5061097a6004803603810190610975919061406e565b612189565b6040516109879190614055565b60405180910390f35b34801561099b575f80fd5b506109a46121a6565b6040516109b19190614055565b60405180910390f35b3480156109c5575f80fd5b506109e060048036038101906109db9190614274565b6121b9565b005b3480156109ed575f80fd5b50610a086004803603810190610a0391906140c1565b6122db565b005b348015610a15575f80fd5b50610a1e6123ea565b604051610a2b91906140a8565b60405180910390f35b348015610a3f575f80fd5b50610a486123f0565b604051610a5591906140a8565b60405180910390f35b348015610a69575f80fd5b50610a846004803603810190610a7f91906140c1565b6123f6565b604051610a919190614055565b60405180910390f35b348015610aa5575f80fd5b50610aae612483565b604051610abb91906140a8565b60405180910390f35b348015610acf575f80fd5b50610aea6004803603810190610ae59190614170565b612489565b604051610af791906140a8565b60405180910390f35b348015610b0b575f80fd5b50610b266004803603810190610b21919061406e565b61250b565b005b348015610b33575f80fd5b50610b3c61270b565b604051610b4991906140a8565b60405180910390f35b348015610b5d575f80fd5b50610b786004803603810190610b7391906140c1565b612711565b005b348015610b85575f80fd5b50610ba06004803603810190610b9b919061406e565b6127a0565b005b348015610bad575f80fd5b50610bb6612896565b604051610bc391906140a8565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed919061406e565b61289c565b005b348015610bff575f80fd5b50610c1a6004803603810190610c15919061406e565b612a9c565b604051610c279190614055565b60405180910390f35b606060038054610c3f9061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b9061430a565b8015610cb65780601f10610c8d57610100808354040283529160200191610cb6565b820191905f5260205f20905b815481529060010190602001808311610c9957829003601f168201915b5050505050905090565b5f610cd3610ccc612aee565b8484612af5565b6001905092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b610d0b612aee565b73ffffffffffffffffffffffffffffffffffffffff16610d29611b74565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690614384565b60405180910390fd5b670de0b6b3a76400006103e86005610d95610cfa565b610d9f91906143cf565b610da9919061443d565b610db3919061443d565b811015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec906144dd565b60405180910390fd5b670de0b6b3a764000081610e0991906143cf565b60088190555050565b5f610e1e848484612cb8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610e65612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb9061456b565b60405180910390fd5b610ef885610ef0612aee565b858403612af5565b60019150509392505050565b5f6012905090565b5f610fa9610f18612aee565b848460015f610f25612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fa49190614589565b612af5565b6001905092915050565b610fbb612aee565b73ffffffffffffffffffffffffffffffffffffffff16610fd9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614606565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110d791906141bd565b602060405180830381865afa1580156110f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111169190614638565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611153929190614663565b6020604051808303815f875af115801561116f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611193919061469e565b50505050565b600b60039054906101000a900460ff1681565b6111b4612aee565b73ffffffffffffffffffffffffffffffffffffffff166111d2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90614384565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161126291906141bd565b602060405180830381865afa15801561127d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a19190614638565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016112de929190614663565b6020604051808303815f875af11580156112fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131e919061469e565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611362573d5f803e3d5ffd5b5050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900460ff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600e5481565b611422612aee565b73ffffffffffffffffffffffffffffffffffffffff16611440611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90614384565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b6114bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166114d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614384565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff1647604051611554906146f6565b5f6040518083038185875af1925050503d805f811461158e576040519150601f19603f3d011682016040523d82523d5f602084013e611593565b606091505b50509050806115a0575f80fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611610612aee565b73ffffffffffffffffffffffffffffffffffffffff1661162e611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614384565b60405180910390fd5b61168d5f61375a565b565b611697612aee565b73ffffffffffffffffffffffffffffffffffffffff166116b5611b74565b73ffffffffffffffffffffffffffffffffffffffff161461170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290614384565b60405180910390fd5b80600e81905550600e54600d8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f61174b612aee565b73ffffffffffffffffffffffffffffffffffffffff16611769611b74565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614384565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6117e7612aee565b73ffffffffffffffffffffffffffffffffffffffff16611805611b74565b73ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614384565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6118bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166118d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614384565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61198e612aee565b73ffffffffffffffffffffffffffffffffffffffff166119ac611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990614384565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ac8612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390614384565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba4612aee565b73ffffffffffffffffffffffffffffffffffffffff16611bc2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90614384565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c449061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c709061430a565b8015611cbb5780601f10611c9257610100808354040283529160200191611cbb565b820191905f5260205f20905b815481529060010190602001808311611c9e57829003601f168201915b5050505050905090565b611ccd612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ceb611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614384565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061477a565b60405180910390fd5b611dda828261381d565b5050565b611de6612aee565b73ffffffffffffffffffffffffffffffffffffffff16611e04611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614384565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee791906147ac565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9091906147ac565b6040518363ffffffff1660e01b8152600401611fad9291906147d7565b6020604051808303815f875af1158015611fc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fed91906147ac565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061205860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016117df565b61208460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161381d565b565b5f8060015f612093612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121449061486e565b60405180910390fd5b612161612158612aee565b85858403612af5565b600191505092915050565b5f61217f612178612aee565b8484612cb8565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6121c1612aee565b73ffffffffffffffffffffffffffffffffffffffff166121df611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614384565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122cf9190614055565b60405180910390a25050565b6122e3612aee565b73ffffffffffffffffffffffffffffffffffffffff16612301611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614384565b60405180910390fd5b670de0b6b3a76400006103e8600a61236d610cfa565b61237791906143cf565b612381919061443d565b61238b919061443d565b8110156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906148fc565b60405180910390fd5b670de0b6b3a7640000816123e191906143cf565b600a8190555050565b60085481565b60115481565b5f6123ff612aee565b73ffffffffffffffffffffffffffffffffffffffff1661241d611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614384565b60405180910390fd5b8160098190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612513612aee565b73ffffffffffffffffffffffffffffffffffffffff16612531611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614384565b60405180910390fd5b600b60039054906101000a900460ff16156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126745750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b612719612aee565b73ffffffffffffffffffffffffffffffffffffffff16612737611b74565b73ffffffffffffffffffffffffffffffffffffffff161461278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614384565b60405180910390fd5b80601081905550601054600f8190555050565b6127a8612aee565b73ffffffffffffffffffffffffffffffffffffffff166127c6611b74565b73ffffffffffffffffffffffffffffffffffffffff161461281c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281390614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361288a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288190614aa6565b60405180910390fd5b6128938161375a565b50565b600a5481565b6128a4612aee565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614384565b60405180910390fd5b600b60039054906101000a900460ff1615612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612a055750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90614b34565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc890614bc2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612cab91906140a8565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90614cde565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1590614d46565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f90614dae565b60405180910390fd5b5f8103612ebf57612eba83835f6138bb565b613755565b600b5f9054906101000a900460ff161561336957612edb611b74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f495750612f19611b74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f8157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f9a5750600660149054906101000a900460ff16155b1561336857600b60019054906101000a900460ff1661308e5760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061304e575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61308d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308490614e16565b60405180910390fd5b5b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561312b575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131d257600854811115613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614ea4565b60405180910390fd5b600a54613181836115c3565b8261318c9190614589565b11156131cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c490614f0c565b60405180910390fd5b613367565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561326f575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156132be576008548111156132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b090614f9a565b60405180910390fd5b613366565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661336557600a54613318836115c3565b826133239190614589565b1115613364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335b90614f0c565b60405180910390fd5b5b5b5b5b5b5f613373306115c3565b90505f60095482101590508080156133975750600b60029054906101000a900460ff165b80156133b05750600660149054906101000a900460ff16155b8015613403575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613456575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134a9575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156134ec576001600660146101000a81548160ff0219169083151502179055506134d1613b30565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061359b575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135a4575f90505b5f81156137455760145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561360257505f600f54115b156136685761362f6064613621600f5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600f546010548261364291906143cf565b61364c919061443d565b60115f82825461365c9190614589565b92505081905550613722565b60145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136bf57505f600d54115b15613721576136ec60646136de600d5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600d54600e54826136ff91906143cf565b613709919061443d565b60115f8282546137199190614589565b925050819055505b5b5f811115613736576137358730836138bb565b5b80856137429190614fb8565b94505b6137508787876138bb565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392090614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398e90614cde565b60405180910390fd5b6139a2838383613c70565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1c9061505b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ab39190614589565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b1791906140a8565b60405180910390a3613b2a848484613c75565b50505050565b5f613b3a306115c3565b90505f60115490505f80831480613b5057505f82145b15613b5d57505050613c44565b6014600954613b6c91906143cf565b831115613b85576014600954613b8291906143cf565b92505b5f8390505f479050613b9682613c7a565b5f613baa8247613ead90919063ffffffff16565b90505f60118190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613bf8906146f6565b5f6040518083038185875af1925050503d805f8114613c32576040519150601f19603f3d011682016040523d82523d5f602084013e613c37565b606091505b5050809450505050505050505b565b5f8183613c5391906143cf565b905092915050565b5f8183613c68919061443d565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115613c9657613c95615079565b5b604051908082528060200260200182016040528015613cc45781602001602082028036833780820191505090505b50905030815f81518110613cdb57613cda6150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da291906147ac565b81600181518110613db657613db56150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e1b307f000000000000000000000000000000000000000000000000000000000000000084612af5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613e7c9594939291906151c3565b5f604051808303815f87803b158015613e93575f80fd5b505af1158015613ea5573d5f803e3d5ffd5b505050505050565b5f8183613eba9190614fb8565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613ef9578082015181840152602081019050613ede565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613f1e82613ec2565b613f288185613ecc565b9350613f38818560208601613edc565b613f4181613f04565b840191505092915050565b5f6020820190508181035f830152613f648184613f14565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613f9982613f70565b9050919050565b613fa981613f8f565b8114613fb3575f80fd5b50565b5f81359050613fc481613fa0565b92915050565b5f819050919050565b613fdc81613fca565b8114613fe6575f80fd5b50565b5f81359050613ff781613fd3565b92915050565b5f806040838503121561401357614012613f6c565b5b5f61402085828601613fb6565b925050602061403185828601613fe9565b9150509250929050565b5f8115159050919050565b61404f8161403b565b82525050565b5f6020820190506140685f830184614046565b92915050565b5f6020828403121561408357614082613f6c565b5b5f61409084828501613fb6565b91505092915050565b6140a281613fca565b82525050565b5f6020820190506140bb5f830184614099565b92915050565b5f602082840312156140d6576140d5613f6c565b5b5f6140e384828501613fe9565b91505092915050565b5f805f6060848603121561410357614102613f6c565b5b5f61411086828701613fb6565b935050602061412186828701613fb6565b925050604061413286828701613fe9565b9150509250925092565b5f60ff82169050919050565b6141518161413c565b82525050565b5f60208201905061416a5f830184614148565b92915050565b5f806040838503121561418657614185613f6c565b5b5f61419385828601613fb6565b92505060206141a485828601613fb6565b9150509250929050565b6141b781613f8f565b82525050565b5f6020820190506141d05f8301846141ae565b92915050565b5f819050919050565b5f6141f96141f46141ef84613f70565b6141d6565b613f70565b9050919050565b5f61420a826141df565b9050919050565b5f61421b82614200565b9050919050565b61422b81614211565b82525050565b5f6020820190506142445f830184614222565b92915050565b6142538161403b565b811461425d575f80fd5b50565b5f8135905061426e8161424a565b92915050565b5f806040838503121561428a57614289613f6c565b5b5f61429785828601613fb6565b92505060206142a885828601614260565b9150509250929050565b5f602082840312156142c7576142c6613f6c565b5b5f6142d484828501614260565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061432157607f821691505b602082108103614334576143336142dd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61436e602083613ecc565b91506143798261433a565b602082019050919050565b5f6020820190508181035f83015261439b81614362565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6143d982613fca565b91506143e483613fca565b92508282026143f281613fca565b91508282048414831517614409576144086143a2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61444782613fca565b915061445283613fca565b92508261446257614461614410565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6144c7602f83613ecc565b91506144d28261446d565b604082019050919050565b5f6020820190508181035f8301526144f4816144bb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614555602883613ecc565b9150614560826144fb565b604082019050919050565b5f6020820190508181035f83015261458281614549565b9050919050565b5f61459382613fca565b915061459e83613fca565b92508282019050808211156145b6576145b56143a2565b5b92915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6145f0601a83613ecc565b91506145fb826145bc565b602082019050919050565b5f6020820190508181035f83015261461d816145e4565b9050919050565b5f8151905061463281613fd3565b92915050565b5f6020828403121561464d5761464c613f6c565b5b5f61465a84828501614624565b91505092915050565b5f6040820190506146765f8301856141ae565b6146836020830184614099565b9392505050565b5f815190506146988161424a565b92915050565b5f602082840312156146b3576146b2613f6c565b5b5f6146c08482850161468a565b91505092915050565b5f81905092915050565b50565b5f6146e15f836146c9565b91506146ec826146d3565b5f82019050919050565b5f614700826146d6565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614764603983613ecc565b915061476f8261470a565b604082019050919050565b5f6020820190508181035f83015261479181614758565b9050919050565b5f815190506147a681613fa0565b92915050565b5f602082840312156147c1576147c0613f6c565b5b5f6147ce84828501614798565b91505092915050565b5f6040820190506147ea5f8301856141ae565b6147f760208301846141ae565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614858602583613ecc565b9150614863826147fe565b604082019050919050565b5f6020820190508181035f8301526148858161484c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f6148e6602483613ecc565b91506148f18261488c565b604082019050919050565b5f6020820190508181035f830152614913816148da565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614974602183613ecc565b915061497f8261491a565b604082019050919050565b5f6020820190508181035f8301526149a181614968565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614a02602e83613ecc565b9150614a0d826149a8565b604082019050919050565b5f6020820190508181035f830152614a2f816149f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614a90602683613ecc565b9150614a9b82614a36565b604082019050919050565b5f6020820190508181035f830152614abd81614a84565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614b1e602483613ecc565b9150614b2982614ac4565b604082019050919050565b5f6020820190508181035f830152614b4b81614b12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614bac602283613ecc565b9150614bb782614b52565b604082019050919050565b5f6020820190508181035f830152614bd981614ba0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614c3a602583613ecc565b9150614c4582614be0565b604082019050919050565b5f6020820190508181035f830152614c6781614c2e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614cc8602383613ecc565b9150614cd382614c6e565b604082019050919050565b5f6020820190508181035f830152614cf581614cbc565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614d30601283613ecc565b9150614d3b82614cfc565b602082019050919050565b5f6020820190508181035f830152614d5d81614d24565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614d98601483613ecc565b9150614da382614d64565b602082019050919050565b5f6020820190508181035f830152614dc581614d8c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614e00601683613ecc565b9150614e0b82614dcc565b602082019050919050565b5f6020820190508181035f830152614e2d81614df4565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614e8e603583613ecc565b9150614e9982614e34565b604082019050919050565b5f6020820190508181035f830152614ebb81614e82565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614ef6601383613ecc565b9150614f0182614ec2565b602082019050919050565b5f6020820190508181035f830152614f2381614eea565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614f84603683613ecc565b9150614f8f82614f2a565b604082019050919050565b5f6020820190508181035f830152614fb181614f78565b9050919050565b5f614fc282613fca565b9150614fcd83613fca565b9250828203905081811115614fe557614fe46143a2565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615045602683613ecc565b915061505082614feb565b604082019050919050565b5f6020820190508181035f83015261507281615039565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f6150f66150f16150ec846150d3565b6141d6565b613fca565b9050919050565b615106816150dc565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61513e81613f8f565b82525050565b5f61514f8383615135565b60208301905092915050565b5f602082019050919050565b5f6151718261510c565b61517b8185615116565b935061518683615126565b805f5b838110156151b657815161519d8882615144565b97506151a88361515b565b925050600181019050615189565b5085935050505092915050565b5f60a0820190506151d65f830188614099565b6151e360208301876150fd565b81810360408301526151f58186615167565b905061520460608301856141ae565b6152116080830184614099565b969550505050505056fea2646970667358221220c2994785a59f9f768aa958881a8ce458c8b56e947b0efd614e33b98530213b2f64736f6c63430008180033

Deployed Bytecode

0x60806040526004361061031d575f3560e01c80637571336a116101aa578063c0246668116100f6578063e19b282311610094578063f2fde38b1161006e578063f2fde38b14610b7a578063f8b45b0514610ba2578063f9f92be414610bcc578063fe575a8714610bf457610324565b8063e19b282314610b00578063e2f4560514610b28578063eba4c33314610b5257610324565b8063cc2ffe7c116100d0578063cc2ffe7c14610a34578063d257b34f14610a5e578063d85ba06314610a9a578063dd62ed3e14610ac457610324565b8063c0246668146109ba578063c18bc195146109e2578063c8c8ebe414610a0a57610324565b806395d89b4111610163578063a457c2d71161013d578063a457c2d7146108dc578063a9059cbb14610918578063b62496f514610954578063bbc0c7421461099057610324565b806395d89b41146108745780639a7a23d61461089e5780639e78fb4f146108c657610324565b80637571336a1461079457806375e3661e146107bc578063809d458d146107e45780638a8c523c1461080c5780638da5cb5b14610822578063924de9b71461084c57610324565b80634a62bb65116102695780636b2fb12411610222578063715018a6116101fc578063715018a61461070257806371fc468814610718578063735de9f714610740578063751039fc1461076a57610324565b80636b2fb124146106725780636ddd17131461069c57806370a08231146106c657610324565b80634a62bb651461057a5780634fbee193146105a45780635c068a8c146105e05780635f1893611461060a578063690d8320146106205780636a486a8e1461064857610324565b8063313ce567116102d65780633dc599ff116102b05780633dc599ff146104e6578063411702ab146105105780634626402b1461052657806349bd5a5e1461055057610324565b8063313ce5671461045857806339509351146104825780633aeac4e1146104be57610324565b806306fdde0314610328578063095ea7b31461035257806310d5de531461038e57806318160ddd146103ca578063203e727e146103f457806323b872dd1461041c57610324565b3661032457005b5f80fd5b348015610333575f80fd5b5061033c610c30565b6040516103499190613f4c565b60405180910390f35b34801561035d575f80fd5b5061037860048036038101906103739190613ffd565b610cc0565b6040516103859190614055565b60405180910390f35b348015610399575f80fd5b506103b460048036038101906103af919061406e565b610cdd565b6040516103c19190614055565b60405180910390f35b3480156103d5575f80fd5b506103de610cfa565b6040516103eb91906140a8565b60405180910390f35b3480156103ff575f80fd5b5061041a600480360381019061041591906140c1565b610d03565b005b348015610427575f80fd5b50610442600480360381019061043d91906140ec565b610e12565b60405161044f9190614055565b60405180910390f35b348015610463575f80fd5b5061046c610f04565b6040516104799190614157565b60405180910390f35b34801561048d575f80fd5b506104a860048036038101906104a39190613ffd565b610f0c565b6040516104b59190614055565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190614170565b610fb3565b005b3480156104f1575f80fd5b506104fa611199565b6040516105079190614055565b60405180910390f35b34801561051b575f80fd5b506105246111ac565b005b348015610531575f80fd5b5061053a611366565b60405161054791906141bd565b60405180910390f35b34801561055b575f80fd5b5061056461138b565b60405161057191906141bd565b60405180910390f35b348015610585575f80fd5b5061058e6113b0565b60405161059b9190614055565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c5919061406e565b6113c2565b6040516105d79190614055565b60405180910390f35b3480156105eb575f80fd5b506105f4611414565b60405161060191906140a8565b60405180910390f35b348015610615575f80fd5b5061061e61141a565b005b34801561062b575f80fd5b506106466004803603810190610641919061406e565b6114b3565b005b348015610653575f80fd5b5061065c6115a4565b60405161066991906140a8565b60405180910390f35b34801561067d575f80fd5b506106866115aa565b60405161069391906140a8565b60405180910390f35b3480156106a7575f80fd5b506106b06115b0565b6040516106bd9190614055565b60405180910390f35b3480156106d1575f80fd5b506106ec60048036038101906106e7919061406e565b6115c3565b6040516106f991906140a8565b60405180910390f35b34801561070d575f80fd5b50610716611608565b005b348015610723575f80fd5b5061073e600480360381019061073991906140c1565b61168f565b005b34801561074b575f80fd5b5061075461171e565b6040516107619190614231565b60405180910390f35b348015610775575f80fd5b5061077e611742565b60405161078b9190614055565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190614274565b6117df565b005b3480156107c7575f80fd5b506107e260048036038101906107dd919061406e565b6118b3565b005b3480156107ef575f80fd5b5061080a6004803603810190610805919061406e565b611986565b005b348015610817575f80fd5b50610820611ac0565b005b34801561082d575f80fd5b50610836611b74565b60405161084391906141bd565b60405180910390f35b348015610857575f80fd5b50610872600480360381019061086d91906142b2565b611b9c565b005b34801561087f575f80fd5b50610888611c35565b6040516108959190613f4c565b60405180910390f35b3480156108a9575f80fd5b506108c460048036038101906108bf9190614274565b611cc5565b005b3480156108d1575f80fd5b506108da611dde565b005b3480156108e7575f80fd5b5061090260048036038101906108fd9190613ffd565b612086565b60405161090f9190614055565b60405180910390f35b348015610923575f80fd5b5061093e60048036038101906109399190613ffd565b61216c565b60405161094b9190614055565b60405180910390f35b34801561095f575f80fd5b5061097a6004803603810190610975919061406e565b612189565b6040516109879190614055565b60405180910390f35b34801561099b575f80fd5b506109a46121a6565b6040516109b19190614055565b60405180910390f35b3480156109c5575f80fd5b506109e060048036038101906109db9190614274565b6121b9565b005b3480156109ed575f80fd5b50610a086004803603810190610a0391906140c1565b6122db565b005b348015610a15575f80fd5b50610a1e6123ea565b604051610a2b91906140a8565b60405180910390f35b348015610a3f575f80fd5b50610a486123f0565b604051610a5591906140a8565b60405180910390f35b348015610a69575f80fd5b50610a846004803603810190610a7f91906140c1565b6123f6565b604051610a919190614055565b60405180910390f35b348015610aa5575f80fd5b50610aae612483565b604051610abb91906140a8565b60405180910390f35b348015610acf575f80fd5b50610aea6004803603810190610ae59190614170565b612489565b604051610af791906140a8565b60405180910390f35b348015610b0b575f80fd5b50610b266004803603810190610b21919061406e565b61250b565b005b348015610b33575f80fd5b50610b3c61270b565b604051610b4991906140a8565b60405180910390f35b348015610b5d575f80fd5b50610b786004803603810190610b7391906140c1565b612711565b005b348015610b85575f80fd5b50610ba06004803603810190610b9b919061406e565b6127a0565b005b348015610bad575f80fd5b50610bb6612896565b604051610bc391906140a8565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed919061406e565b61289c565b005b348015610bff575f80fd5b50610c1a6004803603810190610c15919061406e565b612a9c565b604051610c279190614055565b60405180910390f35b606060038054610c3f9061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b9061430a565b8015610cb65780601f10610c8d57610100808354040283529160200191610cb6565b820191905f5260205f20905b815481529060010190602001808311610c9957829003601f168201915b5050505050905090565b5f610cd3610ccc612aee565b8484612af5565b6001905092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b610d0b612aee565b73ffffffffffffffffffffffffffffffffffffffff16610d29611b74565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690614384565b60405180910390fd5b670de0b6b3a76400006103e86005610d95610cfa565b610d9f91906143cf565b610da9919061443d565b610db3919061443d565b811015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec906144dd565b60405180910390fd5b670de0b6b3a764000081610e0991906143cf565b60088190555050565b5f610e1e848484612cb8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610e65612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb9061456b565b60405180910390fd5b610ef885610ef0612aee565b858403612af5565b60019150509392505050565b5f6012905090565b5f610fa9610f18612aee565b848460015f610f25612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fa49190614589565b612af5565b6001905092915050565b610fbb612aee565b73ffffffffffffffffffffffffffffffffffffffff16610fd9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614606565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110d791906141bd565b602060405180830381865afa1580156110f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111169190614638565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611153929190614663565b6020604051808303815f875af115801561116f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611193919061469e565b50505050565b600b60039054906101000a900460ff1681565b6111b4612aee565b73ffffffffffffffffffffffffffffffffffffffff166111d2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90614384565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161126291906141bd565b602060405180830381865afa15801561127d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a19190614638565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016112de929190614663565b6020604051808303815f875af11580156112fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131e919061469e565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611362573d5f803e3d5ffd5b5050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900460ff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600e5481565b611422612aee565b73ffffffffffffffffffffffffffffffffffffffff16611440611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90614384565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b6114bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166114d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614384565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff1647604051611554906146f6565b5f6040518083038185875af1925050503d805f811461158e576040519150601f19603f3d011682016040523d82523d5f602084013e611593565b606091505b50509050806115a0575f80fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611610612aee565b73ffffffffffffffffffffffffffffffffffffffff1661162e611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614384565b60405180910390fd5b61168d5f61375a565b565b611697612aee565b73ffffffffffffffffffffffffffffffffffffffff166116b5611b74565b73ffffffffffffffffffffffffffffffffffffffff161461170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290614384565b60405180910390fd5b80600e81905550600e54600d8190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f61174b612aee565b73ffffffffffffffffffffffffffffffffffffffff16611769611b74565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614384565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6117e7612aee565b73ffffffffffffffffffffffffffffffffffffffff16611805611b74565b73ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614384565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6118bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166118d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614384565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61198e612aee565b73ffffffffffffffffffffffffffffffffffffffff166119ac611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990614384565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ac8612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390614384565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba4612aee565b73ffffffffffffffffffffffffffffffffffffffff16611bc2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90614384565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c449061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c709061430a565b8015611cbb5780601f10611c9257610100808354040283529160200191611cbb565b820191905f5260205f20905b815481529060010190602001808311611c9e57829003601f168201915b5050505050905090565b611ccd612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ceb611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614384565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061477a565b60405180910390fd5b611dda828261381d565b5050565b611de6612aee565b73ffffffffffffffffffffffffffffffffffffffff16611e04611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614384565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee791906147ac565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9091906147ac565b6040518363ffffffff1660e01b8152600401611fad9291906147d7565b6020604051808303815f875af1158015611fc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fed91906147ac565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061205860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016117df565b61208460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161381d565b565b5f8060015f612093612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121449061486e565b60405180910390fd5b612161612158612aee565b85858403612af5565b600191505092915050565b5f61217f612178612aee565b8484612cb8565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6121c1612aee565b73ffffffffffffffffffffffffffffffffffffffff166121df611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614384565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122cf9190614055565b60405180910390a25050565b6122e3612aee565b73ffffffffffffffffffffffffffffffffffffffff16612301611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614384565b60405180910390fd5b670de0b6b3a76400006103e8600a61236d610cfa565b61237791906143cf565b612381919061443d565b61238b919061443d565b8110156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906148fc565b60405180910390fd5b670de0b6b3a7640000816123e191906143cf565b600a8190555050565b60085481565b60115481565b5f6123ff612aee565b73ffffffffffffffffffffffffffffffffffffffff1661241d611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614384565b60405180910390fd5b8160098190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612513612aee565b73ffffffffffffffffffffffffffffffffffffffff16612531611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614384565b60405180910390fd5b600b60039054906101000a900460ff16156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126745750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b612719612aee565b73ffffffffffffffffffffffffffffffffffffffff16612737611b74565b73ffffffffffffffffffffffffffffffffffffffff161461278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614384565b60405180910390fd5b80601081905550601054600f8190555050565b6127a8612aee565b73ffffffffffffffffffffffffffffffffffffffff166127c6611b74565b73ffffffffffffffffffffffffffffffffffffffff161461281c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281390614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361288a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288190614aa6565b60405180910390fd5b6128938161375a565b50565b600a5481565b6128a4612aee565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614384565b60405180910390fd5b600b60039054906101000a900460ff1615612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612a055750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90614b34565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc890614bc2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612cab91906140a8565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90614cde565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1590614d46565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f90614dae565b60405180910390fd5b5f8103612ebf57612eba83835f6138bb565b613755565b600b5f9054906101000a900460ff161561336957612edb611b74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f495750612f19611b74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f8157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f9a5750600660149054906101000a900460ff16155b1561336857600b60019054906101000a900460ff1661308e5760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061304e575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61308d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308490614e16565b60405180910390fd5b5b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561312b575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131d257600854811115613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614ea4565b60405180910390fd5b600a54613181836115c3565b8261318c9190614589565b11156131cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c490614f0c565b60405180910390fd5b613367565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561326f575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156132be576008548111156132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b090614f9a565b60405180910390fd5b613366565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661336557600a54613318836115c3565b826133239190614589565b1115613364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335b90614f0c565b60405180910390fd5b5b5b5b5b5b5f613373306115c3565b90505f60095482101590508080156133975750600b60029054906101000a900460ff165b80156133b05750600660149054906101000a900460ff16155b8015613403575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613456575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134a9575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156134ec576001600660146101000a81548160ff0219169083151502179055506134d1613b30565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061359b575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135a4575f90505b5f81156137455760145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561360257505f600f54115b156136685761362f6064613621600f5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600f546010548261364291906143cf565b61364c919061443d565b60115f82825461365c9190614589565b92505081905550613722565b60145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136bf57505f600d54115b15613721576136ec60646136de600d5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600d54600e54826136ff91906143cf565b613709919061443d565b60115f8282546137199190614589565b925050819055505b5b5f811115613736576137358730836138bb565b5b80856137429190614fb8565b94505b6137508787876138bb565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392090614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398e90614cde565b60405180910390fd5b6139a2838383613c70565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1c9061505b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ab39190614589565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b1791906140a8565b60405180910390a3613b2a848484613c75565b50505050565b5f613b3a306115c3565b90505f60115490505f80831480613b5057505f82145b15613b5d57505050613c44565b6014600954613b6c91906143cf565b831115613b85576014600954613b8291906143cf565b92505b5f8390505f479050613b9682613c7a565b5f613baa8247613ead90919063ffffffff16565b90505f60118190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613bf8906146f6565b5f6040518083038185875af1925050503d805f8114613c32576040519150601f19603f3d011682016040523d82523d5f602084013e613c37565b606091505b5050809450505050505050505b565b5f8183613c5391906143cf565b905092915050565b5f8183613c68919061443d565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115613c9657613c95615079565b5b604051908082528060200260200182016040528015613cc45781602001602082028036833780820191505090505b50905030815f81518110613cdb57613cda6150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da291906147ac565b81600181518110613db657613db56150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e1b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612af5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613e7c9594939291906151c3565b5f604051808303815f87803b158015613e93575f80fd5b505af1158015613ea5573d5f803e3d5ffd5b505050505050565b5f8183613eba9190614fb8565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613ef9578082015181840152602081019050613ede565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613f1e82613ec2565b613f288185613ecc565b9350613f38818560208601613edc565b613f4181613f04565b840191505092915050565b5f6020820190508181035f830152613f648184613f14565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613f9982613f70565b9050919050565b613fa981613f8f565b8114613fb3575f80fd5b50565b5f81359050613fc481613fa0565b92915050565b5f819050919050565b613fdc81613fca565b8114613fe6575f80fd5b50565b5f81359050613ff781613fd3565b92915050565b5f806040838503121561401357614012613f6c565b5b5f61402085828601613fb6565b925050602061403185828601613fe9565b9150509250929050565b5f8115159050919050565b61404f8161403b565b82525050565b5f6020820190506140685f830184614046565b92915050565b5f6020828403121561408357614082613f6c565b5b5f61409084828501613fb6565b91505092915050565b6140a281613fca565b82525050565b5f6020820190506140bb5f830184614099565b92915050565b5f602082840312156140d6576140d5613f6c565b5b5f6140e384828501613fe9565b91505092915050565b5f805f6060848603121561410357614102613f6c565b5b5f61411086828701613fb6565b935050602061412186828701613fb6565b925050604061413286828701613fe9565b9150509250925092565b5f60ff82169050919050565b6141518161413c565b82525050565b5f60208201905061416a5f830184614148565b92915050565b5f806040838503121561418657614185613f6c565b5b5f61419385828601613fb6565b92505060206141a485828601613fb6565b9150509250929050565b6141b781613f8f565b82525050565b5f6020820190506141d05f8301846141ae565b92915050565b5f819050919050565b5f6141f96141f46141ef84613f70565b6141d6565b613f70565b9050919050565b5f61420a826141df565b9050919050565b5f61421b82614200565b9050919050565b61422b81614211565b82525050565b5f6020820190506142445f830184614222565b92915050565b6142538161403b565b811461425d575f80fd5b50565b5f8135905061426e8161424a565b92915050565b5f806040838503121561428a57614289613f6c565b5b5f61429785828601613fb6565b92505060206142a885828601614260565b9150509250929050565b5f602082840312156142c7576142c6613f6c565b5b5f6142d484828501614260565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061432157607f821691505b602082108103614334576143336142dd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61436e602083613ecc565b91506143798261433a565b602082019050919050565b5f6020820190508181035f83015261439b81614362565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6143d982613fca565b91506143e483613fca565b92508282026143f281613fca565b91508282048414831517614409576144086143a2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61444782613fca565b915061445283613fca565b92508261446257614461614410565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6144c7602f83613ecc565b91506144d28261446d565b604082019050919050565b5f6020820190508181035f8301526144f4816144bb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614555602883613ecc565b9150614560826144fb565b604082019050919050565b5f6020820190508181035f83015261458281614549565b9050919050565b5f61459382613fca565b915061459e83613fca565b92508282019050808211156145b6576145b56143a2565b5b92915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6145f0601a83613ecc565b91506145fb826145bc565b602082019050919050565b5f6020820190508181035f83015261461d816145e4565b9050919050565b5f8151905061463281613fd3565b92915050565b5f6020828403121561464d5761464c613f6c565b5b5f61465a84828501614624565b91505092915050565b5f6040820190506146765f8301856141ae565b6146836020830184614099565b9392505050565b5f815190506146988161424a565b92915050565b5f602082840312156146b3576146b2613f6c565b5b5f6146c08482850161468a565b91505092915050565b5f81905092915050565b50565b5f6146e15f836146c9565b91506146ec826146d3565b5f82019050919050565b5f614700826146d6565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614764603983613ecc565b915061476f8261470a565b604082019050919050565b5f6020820190508181035f83015261479181614758565b9050919050565b5f815190506147a681613fa0565b92915050565b5f602082840312156147c1576147c0613f6c565b5b5f6147ce84828501614798565b91505092915050565b5f6040820190506147ea5f8301856141ae565b6147f760208301846141ae565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614858602583613ecc565b9150614863826147fe565b604082019050919050565b5f6020820190508181035f8301526148858161484c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f6148e6602483613ecc565b91506148f18261488c565b604082019050919050565b5f6020820190508181035f830152614913816148da565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614974602183613ecc565b915061497f8261491a565b604082019050919050565b5f6020820190508181035f8301526149a181614968565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614a02602e83613ecc565b9150614a0d826149a8565b604082019050919050565b5f6020820190508181035f830152614a2f816149f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614a90602683613ecc565b9150614a9b82614a36565b604082019050919050565b5f6020820190508181035f830152614abd81614a84565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614b1e602483613ecc565b9150614b2982614ac4565b604082019050919050565b5f6020820190508181035f830152614b4b81614b12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614bac602283613ecc565b9150614bb782614b52565b604082019050919050565b5f6020820190508181035f830152614bd981614ba0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614c3a602583613ecc565b9150614c4582614be0565b604082019050919050565b5f6020820190508181035f830152614c6781614c2e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614cc8602383613ecc565b9150614cd382614c6e565b604082019050919050565b5f6020820190508181035f830152614cf581614cbc565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614d30601283613ecc565b9150614d3b82614cfc565b602082019050919050565b5f6020820190508181035f830152614d5d81614d24565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614d98601483613ecc565b9150614da382614d64565b602082019050919050565b5f6020820190508181035f830152614dc581614d8c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614e00601683613ecc565b9150614e0b82614dcc565b602082019050919050565b5f6020820190508181035f830152614e2d81614df4565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614e8e603583613ecc565b9150614e9982614e34565b604082019050919050565b5f6020820190508181035f830152614ebb81614e82565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614ef6601383613ecc565b9150614f0182614ec2565b602082019050919050565b5f6020820190508181035f830152614f2381614eea565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614f84603683613ecc565b9150614f8f82614f2a565b604082019050919050565b5f6020820190508181035f830152614fb181614f78565b9050919050565b5f614fc282613fca565b9150614fcd83613fca565b9250828203905081811115614fe557614fe46143a2565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615045602683613ecc565b915061505082614feb565b604082019050919050565b5f6020820190508181035f83015261507281615039565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f6150f66150f16150ec846150d3565b6141d6565b613fca565b9050919050565b615106816150dc565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61513e81613f8f565b82525050565b5f61514f8383615135565b60208301905092915050565b5f602082019050919050565b5f6151718261510c565b61517b8185615116565b935061518683615126565b805f5b838110156151b657815161519d8882615144565b97506151a88361515b565b925050600181019050615189565b5085935050505092915050565b5f60a0820190506151d65f830188614099565b6151e360208301876150fd565b81810360408301526151f58186615167565b905061520460608301856141ae565b6152116080830184614099565b969550505050505056fea2646970667358221220c2994785a59f9f768aa958881a8ce458c8b56e947b0efd614e33b98530213b2f64736f6c63430008180033

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.