ETH Price: $3,301.01 (-3.25%)
Gas: 20 Gwei

Token

lctmi (lctmi)
 

Overview

Max Total Supply

1,000,000,000 lctmi

Holders

134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
wenmoon99.eth
Balance
36.826152593 lctmi

Value
$0.00
0xf3ef55b4e1f5963c8efce7e081f11da8618dfb9f
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:
LCTMI

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : lctmi.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

// https://github.com/Uniswap/v2-core/tree/master/contracts/interfaces
import "./IERC20.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router.sol";
import "./IUniswapV2Factory.sol";

import "./LiquiditySack.sol";

// SPDX-License-Identifier: MIT

contract LCTMI is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**9 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "lctmi";
    string private _symbol = "lctmi";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 24;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 64;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable otherToken;
    address public immutable uniswapV2Pair;
    address public constant burnAddress =
        0x000000000000000000000000000000000000dEaD;

    // 1 weird trick
    LiquiditySack public liqSack;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 5 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 5 * 10**6 * 10**9;
    uint256 public _maxWalletAmount = 1 * 10**7 * 10**9; // 1 percent of total

    address private constant _UNISWAPV2_ROUTER_ADDR =
        0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    // 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F; // 🍣

    address private constant DAI = 0x6B175474E89094C44Da98b954EedeAC495271d0F;
    // 0xaD6D458402F60fD3Bd25163575031ACDce07538D; // ropsten

    // welcome to hotel california
    bool public hotelCaliforniaMode = true;
    mapping(address => bool) public isHouseGuest;

    bool public tradingOpen = false;
    // sniper, no sniping
    uint256 public deadBlocks = 4;
    uint256 public launchedAt = 0;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 othersReceived,
        uint256 tokensIntoLiqudity
    );
    event CaliforniaCheckin(address guest, uint256 rentPaid);

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(address _stable_coin) {
        _rOwned[_msgSender()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            _UNISWAPV2_ROUTER_ADDR
        );
        otherToken = _stable_coin != address(0) ? _stable_coin : DAI;

        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), otherToken);

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        liqSack = new LiquiditySack(otherToken);

        // exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view override returns (string memory) {
        return _name;
    }

    function symbol() public view override returns (string memory) {
        return _symbol;
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function getOwner() external view override returns (address) {
        return owner();
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );
        (uint256 rAmount, , , , , ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount, , , , , ) = _getValues(tAmount);
            return rAmount;
        } else {
            (, uint256 rTransferAmount, , , , ) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setTaxFeePercent(uint256 taxFee) external onlyOwner {
        _taxFee = taxFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner {
        _liquidityFee = liquidityFee;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    // enable trading
    function setTradingStatus(bool _status, uint256 _deadBlocks)
        public
        onlyOwner
    {
        tradingOpen = _status;
        if (tradingOpen && launchedAt == 0) {
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }

    // lobby management
    function setHotelCaliforniaMode(bool _status) public onlyOwner {
        hotelCaliforniaMode = _status;
    }

    function manageHouseGuests(address[] calldata addresses, bool status)
        public
        onlyOwner
    {
        for (uint256 i; i < addresses.length; ++i) {
            isHouseGuest[addresses[i]] = status;
        }
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );
        return (
            rAmount,
            rTransferAmount,
            rFee,
            tTransferAmount,
            tFee,
            tLiquidity
        );
    }

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(10**3);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**3);
    }

    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        // max tx size
        if (from != owner() && to != owner()) {
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        }

        // max wallet size
        uint256 currBalance = balanceOf(to);
        if (
            from != owner() &&
            to != owner() &&
            to != _UNISWAPV2_ROUTER_ADDR &&
            to != uniswapV2Pair &&
            to != address(this)
        ) {
            require(
                currBalance + amount < _maxWalletAmount,
                "Transfer amount exceeds the maxWalletAmount."
            );
        }

        // plz dont snipe with a bot
        if (hotelCaliforniaMode) {
            require(!isHouseGuest[from], "Bots cannot sell");
            if (
                from == uniswapV2Pair &&
                (!tradingOpen || (launchedAt + deadBlocks) > block.number)
            ) {
                isHouseGuest[to] = true;
                emit CaliforniaCheckin(to, tx.gasprice);
            }
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            // add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        // indicates if fee should be deducted from transfer
        bool takeFee = true;

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

        // transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current BASE balance.
        // this is so that we can capture exactly the amount of BASE token that the
        // swap creates
        uint256 initialBalance = IERC20(otherToken).balanceOf(address(this));

        swapTokensForOther(half);
        liqSack.giveItBack();

        // how much BASE did we just swap into?
        uint256 newBalance = IERC20(otherToken).balanceOf(address(this)).sub(
            initialBalance
        );

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForOther(uint256 tokenAmount) private {
        // generate the uniswap pair path
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = otherToken;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount
            path,
            address(liqSack),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 otherAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        IERC20(otherToken).approve(address(uniswapV2Router), otherAmount);

        // add the liquidity
        uniswapV2Router.addLiquidity(
            address(this),
            otherToken,
            tokenAmount,
            otherAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            burnAddress,
            block.timestamp
        );
    }

    // this method is responsible for taking all fees, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

File 2 of 10 : LiquiditySack.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./IERC20.sol";

// SPDX-License-Identifier: MIT

contract LiquiditySack is Ownable {
    using Address for address;
    address otherTokenAddress;

    constructor(address otherToken) {
        otherTokenAddress = otherToken;
    }

    function giveItBack() public onlyOwner {
        IERC20 other = IERC20(otherTokenAddress);
        uint256 owned = other.balanceOf(address(this));
        other.transfer(owner(), owned);
    }
}

File 3 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;
// SPDX-License-Identifier: MIT
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);
}

File 4 of 10 : IUniswapV2Router.sol
pragma solidity >=0.6.2;
// SPDX-License-Identifier: MIT
interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    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 5 of 10 : IUniswapV2Pair.sol
pragma solidity ^0.8.0;
// SPDX-License-Identifier: MIT
interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 6 of 10 : IERC20.sol
pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

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

    function totalSupply() external view returns (uint256);

    function decimals() external view returns (uint8);

    function symbol() external view returns (string memory);

    function name() external view returns (string memory);

    function getOwner() external view returns (address);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    function allowance(address _owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
    // function transferFromWithPermit(address sender, address recipient, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external returns (bool);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev 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 10 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_stable_coin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"guest","type":"address"},{"indexed":false,"internalType":"uint256","name":"rentPaid","type":"uint256"}],"name":"CaliforniaCheckin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"othersReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hotelCaliforniaMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isHouseGuest","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liqSack","outputs":[{"internalType":"contract LiquiditySack","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"manageHouseGuests","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setHotelCaliforniaMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"setTradingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60e0604052670de0b6b3a7640000600755600754600019620000229190620007c9565b60001962000031919062000830565b6008556040518060400160405280600581526020017f6c63746d69000000000000000000000000000000000000000000000000000000815250600a908051906020019062000081929190620006d2565b506040518060400160405280600581526020017f6c63746d69000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000cf929190620006d2565b506009600c60006101000a81548160ff021916908360ff1602179055506018600d55600d54600e556040600f55600f546010556001601160156101000a81548160ff0219169083151502179055506611c37937e080006012556611c37937e08000601355662386f26fc100006014556001601560006101000a81548160ff0219169083151502179055506000601760006101000a81548160ff021916908315150217905550600460185560006019553480156200018b57600080fd5b5060405162006ba238038062006ba28339818101604052810190620001b19190620008d5565b620001d1620001c5620005dd60201b60201c565b620005e560201b60201c565b60085460016000620001e8620005dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200029057736b175474e89094c44da98b954eedeac495271d0f62000292565b815b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000311573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003379190620008d5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060a0516040518363ffffffff1660e01b81526004016200037592919062000918565b6020604051808303816000875af115801562000395573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003bb9190620008d5565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060a051604051620004339062000763565b6200043f919062000945565b604051809103906000f0801580156200045c573d6000803e3d6000fd5b50601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000620004b3620006a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200056c620005dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620005cd919062000973565b60405180910390a35050620009f5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006e090620009bf565b90600052602060002090601f01602090048101928262000704576000855562000750565b82601f106200071f57805160ff191683800117855562000750565b8280016001018555821562000750579182015b828111156200074f57825182559160200191906001019062000732565b5b5090506200075f919062000771565b5090565b6109be80620061e483390190565b5b808211156200078c57600081600090555060010162000772565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620007d68262000790565b9150620007e38362000790565b925082620007f657620007f56200079a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200083d8262000790565b91506200084a8362000790565b92508282101562000860576200085f62000801565b5b828203905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200089d8262000870565b9050919050565b620008af8162000890565b8114620008bb57600080fd5b50565b600081519050620008cf81620008a4565b92915050565b600060208284031215620008ee57620008ed6200086b565b5b6000620008fe84828501620008be565b91505092915050565b620009128162000890565b82525050565b60006040820190506200092f600083018562000907565b6200093e602083018462000907565b9392505050565b60006020820190506200095c600083018462000907565b92915050565b6200096d8162000790565b82525050565b60006020820190506200098a600083018462000962565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009d857607f821691505b60208210811415620009ef57620009ee62000990565b5b50919050565b60805160a05160c05161576462000a80600039600081816112b00152818161251d0152818161269d01526127fd01526000818161113101528181612b8401528181612cb101528181613506015281816136850152613781015260008181610a0801528181613579015281816135a00152818161365e015281816136c1015261374401526157646000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80636c0a24eb11610167578063a457c2d7116100ce578063dd62ed3e11610087578063dd62ed3e14610804578063ea2f0b3714610834578063f2fde38b14610850578063f534a0531461086c578063fabb0b4f1461088a578063ffb54a99146108a857610295565b8063a457c2d714610732578063a9059cbb14610762578063bf56b37114610792578063c49b9a80146107b0578063c71ca922146107cc578063d543dbeb146107e857610295565b80637f39e640116101205780637f39e6401461067057806388f820201461068c578063893d20e8146106bc5780638da5cb5b146106da5780638ee88c53146106f857806395d89b411461071457610295565b80636c0a24eb146105c05780636ebfa4d2146105de57806370a08231146105fa57806370d5ae051461062a578063715018a6146106485780637d1db4a51461065257610295565b80633685d4191161020b5780634549b039116101c45780634549b039146104ea57806349bd5a5e1461051a5780634a74bb021461053857806352390c02146105565780635342acb4146105725780636bc87c3a146105a257610295565b80633685d4191461042a57806339509351146104465780633b124fe7146104765780633bd5d17314610494578063433b3c05146104b0578063437823ec146104ce57610295565b806318160ddd1161025d57806318160ddd146103405780631fa1d2691461035e57806321eb5d461461038e57806323b872dd146103ac5780632d838119146103dc578063313ce5671461040c57610295565b8063061c82d01461029a57806306fdde03146102b6578063095ea7b3146102d457806313114a9d146103045780631694505e14610322575b600080fd5b6102b460048036038101906102af9190614470565b6108c6565b005b6102be61094c565b6040516102cb9190614536565b60405180910390f35b6102ee60048036038101906102e991906145b6565b6109de565b6040516102fb9190614611565b60405180910390f35b61030c6109fc565b604051610319919061463b565b60405180910390f35b61032a610a06565b60405161033791906146b5565b60405180910390f35b610348610a2a565b604051610355919061463b565b60405180910390f35b610378600480360381019061037391906146d0565b610a34565b6040516103859190614611565b60405180910390f35b610396610a54565b6040516103a39190614611565b60405180910390f35b6103c660048036038101906103c191906146fd565b610a67565b6040516103d39190614611565b60405180910390f35b6103f660048036038101906103f19190614470565b610b40565b604051610403919061463b565b60405180910390f35b610414610bae565b604051610421919061476c565b60405180910390f35b610444600480360381019061043f91906146d0565b610bc5565b005b610460600480360381019061045b91906145b6565b610efb565b60405161046d9190614611565b60405180910390f35b61047e610fae565b60405161048b919061463b565b60405180910390f35b6104ae60048036038101906104a99190614470565b610fb4565b005b6104b861112f565b6040516104c59190614796565b60405180910390f35b6104e860048036038101906104e391906146d0565b611153565b005b61050460048036038101906104ff91906147dd565b61122a565b604051610511919061463b565b60405180910390f35b6105226112ae565b60405161052f9190614796565b60405180910390f35b6105406112d2565b60405161054d9190614611565b60405180910390f35b610570600480360381019061056b91906146d0565b6112e5565b005b61058c600480360381019061058791906146d0565b611580565b6040516105999190614611565b60405180910390f35b6105aa6115d6565b6040516105b7919061463b565b60405180910390f35b6105c86115dc565b6040516105d5919061463b565b60405180910390f35b6105f860048036038101906105f3919061481d565b6115e2565b005b610614600480360381019061060f91906146d0565b6116ae565b604051610621919061463b565b60405180910390f35b610632611799565b60405161063f9190614796565b60405180910390f35b61065061179f565b005b61065a611827565b604051610667919061463b565b60405180910390f35b61068a600480360381019061068591906148c2565b61182d565b005b6106a660048036038101906106a191906146d0565b61194c565b6040516106b39190614611565b60405180910390f35b6106c46119a2565b6040516106d19190614796565b60405180910390f35b6106e26119b1565b6040516106ef9190614796565b60405180910390f35b610712600480360381019061070d9190614470565b6119da565b005b61071c611a60565b6040516107299190614536565b60405180910390f35b61074c600480360381019061074791906145b6565b611af2565b6040516107599190614611565b60405180910390f35b61077c600480360381019061077791906145b6565b611bbf565b6040516107899190614611565b60405180910390f35b61079a611bdd565b6040516107a7919061463b565b60405180910390f35b6107ca60048036038101906107c59190614922565b611be3565b005b6107e660048036038101906107e19190614922565b611cb3565b005b61080260048036038101906107fd9190614470565b611d4c565b005b61081e6004803603810190610819919061494f565b611df9565b60405161082b919061463b565b60405180910390f35b61084e600480360381019061084991906146d0565b611e80565b005b61086a600480360381019061086591906146d0565b611f57565b005b61087461204f565b60405161088191906149b0565b60405180910390f35b610892612075565b60405161089f919061463b565b60405180910390f35b6108b061207b565b6040516108bd9190614611565b60405180910390f35b6108ce61208e565b73ffffffffffffffffffffffffffffffffffffffff166108ec6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990614a17565b60405180910390fd5b80600d8190555050565b6060600a805461095b90614a66565b80601f016020809104026020016040519081016040528092919081815260200182805461098790614a66565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109f26109eb61208e565b8484612096565b6001905092915050565b6000600954905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600754905090565b60166020528060005260406000206000915054906101000a900460ff1681565b601560009054906101000a900460ff1681565b6000610a74848484612261565b610b3584610a8061208e565b610b30856040518060600160405280602881526020016156e260289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ae661208e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461293e9092919063ffffffff16565b612096565b600190509392505050565b6000600854821115610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90614b0a565b60405180910390fd5b6000610b91612993565b9050610ba681846129be90919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b610bcd61208e565b73ffffffffffffffffffffffffffffffffffffffff16610beb6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890614a17565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490614b76565b60405180910390fd5b60005b600680549050811015610ef7578173ffffffffffffffffffffffffffffffffffffffff1660068281548110610d0857610d07614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ee45760066001600680549050610d639190614bf4565b81548110610d7457610d73614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610db357610db2614b96565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610eaa57610ea9614c28565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610ef7565b8080610eef90614c57565b915050610cd0565b5050565b6000610fa4610f0861208e565b84610f9f8560036000610f1961208e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b612096565b6001905092915050565b600d5481565b6000610fbe61208e565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614d12565b60405180910390fd5b6000611058836129ea565b505050505090506110b181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061110981600854612a4690919063ffffffff16565b600881905550611124836009546129d490919063ffffffff16565b600981905550505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61115b61208e565b73ffffffffffffffffffffffffffffffffffffffff166111796119b1565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614a17565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890614d7e565b60405180910390fd5b81611291576000611281846129ea565b50505050509050809150506112a8565b600061129c846129ea565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160159054906101000a900460ff1681565b6112ed61208e565b73ffffffffffffffffffffffffffffffffffffffff1661130b6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890614a17565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590614b76565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156114c25761147e600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b40565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b60145481565b6115ea61208e565b73ffffffffffffffffffffffffffffffffffffffff166116086119b1565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590614a17565b60405180910390fd5b81601760006101000a81548160ff021916908315150217905550601760009054906101000a900460ff16801561169657506000601954145b156116aa5743601981905550806018819055505b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174957600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611794565b611791600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b40565b90505b919050565b61dead81565b6117a761208e565b73ffffffffffffffffffffffffffffffffffffffff166117c56119b1565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290614a17565b60405180910390fd5b6118256000612a5c565b565b60125481565b61183561208e565b73ffffffffffffffffffffffffffffffffffffffff166118536119b1565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614a17565b60405180910390fd5b60005b838390508110156119465781601660008686858181106118cf576118ce614b96565b5b90506020020160208101906118e491906146d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508061193f90614c57565b90506118ac565b50505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006119ac6119b1565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e261208e565b73ffffffffffffffffffffffffffffffffffffffff16611a006119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90614a17565b60405180910390fd5b80600f8190555050565b6060600b8054611a6f90614a66565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9b90614a66565b8015611ae85780601f10611abd57610100808354040283529160200191611ae8565b820191906000526020600020905b815481529060010190602001808311611acb57829003601f168201915b5050505050905090565b6000611bb5611aff61208e565b84611bb08560405180606001604052806025815260200161570a6025913960036000611b2961208e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461293e9092919063ffffffff16565b612096565b6001905092915050565b6000611bd3611bcc61208e565b8484612261565b6001905092915050565b60195481565b611beb61208e565b73ffffffffffffffffffffffffffffffffffffffff16611c096119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690614a17565b60405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611ca89190614611565b60405180910390a150565b611cbb61208e565b73ffffffffffffffffffffffffffffffffffffffff16611cd96119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690614a17565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b611d5461208e565b73ffffffffffffffffffffffffffffffffffffffff16611d726119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90614a17565b60405180910390fd5b611df06064611de283600754612b2090919063ffffffff16565b6129be90919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e8861208e565b73ffffffffffffffffffffffffffffffffffffffff16611ea66119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614a17565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611f5f61208e565b73ffffffffffffffffffffffffffffffffffffffff16611f7d6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90614a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90614e10565b60405180910390fd5b61204c81612a5c565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b601760009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614ea2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614f34565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612254919061463b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614fc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890615058565b60405180910390fd5b60008111612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b906150ea565b60405180910390fd5b61238c6119b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123fa57506123ca6119b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561244557601254811115612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b9061517c565b60405180910390fd5b5b6000612450836116ae565b905061245a6119b1565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156124c857506124986119b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156125145750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561256c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156125a457503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156125f95760145482826125b8919061519c565b106125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef90615264565b60405180910390fd5b5b601560009054906101000a900460ff16156127b457601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561269b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612692906152d0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561271c5750601760009054906101000a900460ff16158061271b575043601854601954612719919061519c565b115b5b156127b3576001601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc05fe82fadc2c648ffcab1a84911ab5cd07e695a06d36020d37eb94c898eb285833a6040516127aa9291906152f0565b60405180910390a15b5b60006127bf306116ae565b905060125481106127d05760125490505b600060135482101590508080156127f45750601160149054906101000a900460ff16155b801561284c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156128645750601160159054906101000a900460ff165b1561287857601354915061287782612b36565b5b600060019050600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061291f5750600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561292957600090505b61293587878784612dc0565b50505050505050565b6000838311158290612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d9190614536565b60405180910390fd5b5082840390509392505050565b60008060006129a06130d1565b915091506129b781836129be90919063ffffffff16565b9250505090565b600081836129cc9190615348565b905092915050565b600081836129e2919061519c565b905092915050565b6000806000806000806000806000612a018a613384565b9250925092506000806000612a1f8d8686612a1a612993565b6133de565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60008183612a549190614bf4565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612b2e9190615379565b905092915050565b6001601160146101000a81548160ff0219169083151502179055506000612b676002836129be90919063ffffffff16565b90506000612b7e8284612a4690919063ffffffff16565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612bdb9190614796565b602060405180830381865afa158015612bf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1c91906153e8565b9050612c2783613467565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663951664f66040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612c9157600080fd5b505af1158015612ca5573d6000803e3d6000fd5b505050506000612d57827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612d089190614796565b602060405180830381865afa158015612d25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d4991906153e8565b612a4690919063ffffffff16565b9050612d638382613658565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612d9693929190615415565b60405180910390a1505050506000601160146101000a81548160ff02191690831515021790555050565b80612dce57612dcd613816565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e715750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8657612e81848484613859565b6130bd565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f295750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f3e57612f39848484613ab9565b6130bc565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612fe25750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff757612ff2848484613d19565b6130bb565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130995750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130ae576130a9848484613ee4565b6130ba565b6130b9848484613d19565b5b5b5b5b806130cb576130ca6141d9565b5b50505050565b600080600060085490506000600754905060005b6006805490508110156133475782600160006006848154811061310b5761310a614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806131f9575081600260006006848154811061319157613190614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156132105760085460075494509450505050613380565b6132a0600160006006848154811061322b5761322a614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612a4690919063ffffffff16565b925061333260026000600684815481106132bd576132bc614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612a4690919063ffffffff16565b9150808061333f90614c57565b9150506130e5565b5061335f6007546008546129be90919063ffffffff16565b82101561337757600854600754935093505050613380565b81819350935050505b9091565b600080600080613393856141ed565b905060006133a08661421f565b905060006133c9826133bb858a612a4690919063ffffffff16565b612a4690919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806133f78589612b2090919063ffffffff16565b9050600061340e8689612b2090919063ffffffff16565b905060006134258789612b2090919063ffffffff16565b9050600061344e826134408587612a4690919063ffffffff16565b612a4690919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600267ffffffffffffffff8111156134845761348361544c565b5b6040519080825280602002602001820160405280156134b25781602001602082028036833780820191505090505b50905030816000815181106134ca576134c9614b96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000000000000000000000000000000000000000000008160018151811061353957613538614b96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359e307f000000000000000000000000000000000000000000000000000000000000000084612096565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613622959493929190615574565b600060405180830381600087803b15801561363c57600080fd5b505af1158015613650573d6000803e3d6000fd5b505050505050565b613683307f000000000000000000000000000000000000000000000000000000000000000084612096565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b81526004016136fe9291906152f0565b6020604051808303816000875af115801561371d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374191906155e3565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e8e33700307f0000000000000000000000000000000000000000000000000000000000000000858560008061dead426040518963ffffffff1660e01b81526004016137cc989796959493929190615610565b6060604051808303816000875af11580156137eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061380f919061568e565b5050505050565b6000600d5414801561382a57506000600f54145b1561383457613857565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b60008060008060008061386b876129ea565b9550955095509550955095506138c987600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061395e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139f385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a3f81614251565b613a4984836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613aa6919061463b565b60405180910390a3505050505050505050565b600080600080600080613acb876129ea565b955095509550955095509550613b2986600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bbe83600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c5385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c9f81614251565b613ca984836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613d06919061463b565b60405180910390a3505050505050505050565b600080600080600080613d2b876129ea565b955095509550955095509550613d8986600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e1e85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e6a81614251565b613e7484836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613ed1919061463b565b60405180910390a3505050505050505050565b600080600080600080613ef6876129ea565b955095509550955095509550613f5487600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe986600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061407e83600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061411385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061415f81614251565b61416984836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516141c6919061463b565b60405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b60006142186103e861420a600d5485612b2090919063ffffffff16565b6129be90919063ffffffff16565b9050919050565b600061424a6103e861423c600f5485612b2090919063ffffffff16565b6129be90919063ffffffff16565b9050919050565b600061425b612993565b905060006142728284612b2090919063ffffffff16565b90506142c681600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156143f1576143ad83600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61440b82600854612a4690919063ffffffff16565b600881905550614426816009546129d490919063ffffffff16565b6009819055505050565b600080fd5b600080fd5b6000819050919050565b61444d8161443a565b811461445857600080fd5b50565b60008135905061446a81614444565b92915050565b60006020828403121561448657614485614430565b5b60006144948482850161445b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144d75780820151818401526020810190506144bc565b838111156144e6576000848401525b50505050565b6000601f19601f8301169050919050565b60006145088261449d565b61451281856144a8565b93506145228185602086016144b9565b61452b816144ec565b840191505092915050565b6000602082019050818103600083015261455081846144fd565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061458382614558565b9050919050565b61459381614578565b811461459e57600080fd5b50565b6000813590506145b08161458a565b92915050565b600080604083850312156145cd576145cc614430565b5b60006145db858286016145a1565b92505060206145ec8582860161445b565b9150509250929050565b60008115159050919050565b61460b816145f6565b82525050565b60006020820190506146266000830184614602565b92915050565b6146358161443a565b82525050565b6000602082019050614650600083018461462c565b92915050565b6000819050919050565b600061467b61467661467184614558565b614656565b614558565b9050919050565b600061468d82614660565b9050919050565b600061469f82614682565b9050919050565b6146af81614694565b82525050565b60006020820190506146ca60008301846146a6565b92915050565b6000602082840312156146e6576146e5614430565b5b60006146f4848285016145a1565b91505092915050565b60008060006060848603121561471657614715614430565b5b6000614724868287016145a1565b9350506020614735868287016145a1565b92505060406147468682870161445b565b9150509250925092565b600060ff82169050919050565b61476681614750565b82525050565b6000602082019050614781600083018461475d565b92915050565b61479081614578565b82525050565b60006020820190506147ab6000830184614787565b92915050565b6147ba816145f6565b81146147c557600080fd5b50565b6000813590506147d7816147b1565b92915050565b600080604083850312156147f4576147f3614430565b5b60006148028582860161445b565b9250506020614813858286016147c8565b9150509250929050565b6000806040838503121561483457614833614430565b5b6000614842858286016147c8565b92505060206148538582860161445b565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126148825761488161485d565b5b8235905067ffffffffffffffff81111561489f5761489e614862565b5b6020830191508360208202830111156148bb576148ba614867565b5b9250929050565b6000806000604084860312156148db576148da614430565b5b600084013567ffffffffffffffff8111156148f9576148f8614435565b5b6149058682870161486c565b93509350506020614918868287016147c8565b9150509250925092565b60006020828403121561493857614937614430565b5b6000614946848285016147c8565b91505092915050565b6000806040838503121561496657614965614430565b5b6000614974858286016145a1565b9250506020614985858286016145a1565b9150509250929050565b600061499a82614682565b9050919050565b6149aa8161498f565b82525050565b60006020820190506149c560008301846149a1565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a016020836144a8565b9150614a0c826149cb565b602082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a7e57607f821691505b60208210811415614a9257614a91614a37565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614af4602a836144a8565b9150614aff82614a98565b604082019050919050565b60006020820190508181036000830152614b2381614ae7565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000614b60601b836144a8565b9150614b6b82614b2a565b602082019050919050565b60006020820190508181036000830152614b8f81614b53565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bff8261443a565b9150614c0a8361443a565b925082821015614c1d57614c1c614bc5565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000614c628261443a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c9557614c94614bc5565b5b600182019050919050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614cfc602c836144a8565b9150614d0782614ca0565b604082019050919050565b60006020820190508181036000830152614d2b81614cef565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b6000614d68601f836144a8565b9150614d7382614d32565b602082019050919050565b60006020820190508181036000830152614d9781614d5b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dfa6026836144a8565b9150614e0582614d9e565b604082019050919050565b60006020820190508181036000830152614e2981614ded565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e8c6024836144a8565b9150614e9782614e30565b604082019050919050565b60006020820190508181036000830152614ebb81614e7f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f1e6022836144a8565b9150614f2982614ec2565b604082019050919050565b60006020820190508181036000830152614f4d81614f11565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fb06025836144a8565b9150614fbb82614f54565b604082019050919050565b60006020820190508181036000830152614fdf81614fa3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006150426023836144a8565b915061504d82614fe6565b604082019050919050565b6000602082019050818103600083015261507181615035565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006150d46029836144a8565b91506150df82615078565b604082019050919050565b60006020820190508181036000830152615103816150c7565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006151666028836144a8565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b9050919050565b60006151a78261443a565b91506151b28361443a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151e7576151e6614bc5565b5b828201905092915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785760008201527f616c6c6574416d6f756e742e0000000000000000000000000000000000000000602082015250565b600061524e602c836144a8565b9150615259826151f2565b604082019050919050565b6000602082019050818103600083015261527d81615241565b9050919050565b7f426f74732063616e6e6f742073656c6c00000000000000000000000000000000600082015250565b60006152ba6010836144a8565b91506152c582615284565b602082019050919050565b600060208201905081810360008301526152e9816152ad565b9050919050565b60006040820190506153056000830185614787565b615312602083018461462c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006153538261443a565b915061535e8361443a565b92508261536e5761536d615319565b5b828204905092915050565b60006153848261443a565b915061538f8361443a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153c8576153c7614bc5565b5b828202905092915050565b6000815190506153e281614444565b92915050565b6000602082840312156153fe576153fd614430565b5b600061540c848285016153d3565b91505092915050565b600060608201905061542a600083018661462c565b615437602083018561462c565b615444604083018461462c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b60006154a061549b6154968461547b565b614656565b61443a565b9050919050565b6154b081615485565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6154eb81614578565b82525050565b60006154fd83836154e2565b60208301905092915050565b6000602082019050919050565b6000615521826154b6565b61552b81856154c1565b9350615536836154d2565b8060005b8381101561556757815161554e88826154f1565b975061555983615509565b92505060018101905061553a565b5085935050505092915050565b600060a082019050615589600083018861462c565b61559660208301876154a7565b81810360408301526155a88186615516565b90506155b76060830185614787565b6155c4608083018461462c565b9695505050505050565b6000815190506155dd816147b1565b92915050565b6000602082840312156155f9576155f8614430565b5b6000615607848285016155ce565b91505092915050565b600061010082019050615626600083018b614787565b615633602083018a614787565b615640604083018961462c565b61564d606083018861462c565b61565a60808301876154a7565b61566760a08301866154a7565b61567460c0830185614787565b61568160e083018461462c565b9998505050505050505050565b6000806000606084860312156156a7576156a6614430565b5b60006156b5868287016153d3565b93505060206156c6868287016153d3565b92505060406156d7868287016153d3565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205298a53998cca90feb38cb0f0059a9e90077cc4da45455ee9ff2f31b0e24702c64736f6c634300080c0033608060405234801561001057600080fd5b506040516109be3803806109be833981810160405281019061003291906101c4565b61004e61004361009560201b60201c565b61009d60201b60201c565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506101f1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061019182610166565b9050919050565b6101a181610186565b81146101ac57600080fd5b50565b6000815190506101be81610198565b92915050565b6000602082840312156101da576101d9610161565b5b60006101e8848285016101af565b91505092915050565b6107be806102006000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063715018a6146100515780638da5cb5b1461005b578063951664f614610079578063f2fde38b14610083575b600080fd5b61005961009f565b005b610063610127565b6040516100709190610500565b60405180910390f35b610081610150565b005b61009d6004803603810190610098919061054c565b6102fb565b005b6100a76103f3565b73ffffffffffffffffffffffffffffffffffffffff166100c5610127565b73ffffffffffffffffffffffffffffffffffffffff161461011b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610112906105d6565b60405180910390fd5b61012560006103fb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101586103f3565b73ffffffffffffffffffffffffffffffffffffffff16610176610127565b73ffffffffffffffffffffffffffffffffffffffff16146101cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101c3906105d6565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161022e9190610500565b602060405180830381865afa15801561024b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061026f919061062c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610295610127565b836040518363ffffffff1660e01b81526004016102b3929190610668565b6020604051808303816000875af11580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f691906106c9565b505050565b6103036103f3565b73ffffffffffffffffffffffffffffffffffffffff16610321610127565b73ffffffffffffffffffffffffffffffffffffffff1614610377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161036e906105d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156103e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103de90610768565b60405180910390fd5b6103f0816103fb565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006104ea826104bf565b9050919050565b6104fa816104df565b82525050565b600060208201905061051560008301846104f1565b92915050565b600080fd5b610529816104df565b811461053457600080fd5b50565b60008135905061054681610520565b92915050565b6000602082840312156105625761056161051b565b5b600061057084828501610537565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006105c0602083610579565b91506105cb8261058a565b602082019050919050565b600060208201905081810360008301526105ef816105b3565b9050919050565b6000819050919050565b610609816105f6565b811461061457600080fd5b50565b60008151905061062681610600565b92915050565b6000602082840312156106425761064161051b565b5b600061065084828501610617565b91505092915050565b610662816105f6565b82525050565b600060408201905061067d60008301856104f1565b61068a6020830184610659565b9392505050565b60008115159050919050565b6106a681610691565b81146106b157600080fd5b50565b6000815190506106c38161069d565b92915050565b6000602082840312156106df576106de61051b565b5b60006106ed848285016106b4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610752602683610579565b915061075d826106f6565b604082019050919050565b6000602082019050818103600083015261078181610745565b905091905056fea2646970667358221220cbf7cb011a4f6df15c639a3e6ed0a6a00c73179c7610787fa9e7e851c3caeed064736f6c634300080c00330000000000000000000000006b175474e89094c44da98b954eedeac495271d0f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102955760003560e01c80636c0a24eb11610167578063a457c2d7116100ce578063dd62ed3e11610087578063dd62ed3e14610804578063ea2f0b3714610834578063f2fde38b14610850578063f534a0531461086c578063fabb0b4f1461088a578063ffb54a99146108a857610295565b8063a457c2d714610732578063a9059cbb14610762578063bf56b37114610792578063c49b9a80146107b0578063c71ca922146107cc578063d543dbeb146107e857610295565b80637f39e640116101205780637f39e6401461067057806388f820201461068c578063893d20e8146106bc5780638da5cb5b146106da5780638ee88c53146106f857806395d89b411461071457610295565b80636c0a24eb146105c05780636ebfa4d2146105de57806370a08231146105fa57806370d5ae051461062a578063715018a6146106485780637d1db4a51461065257610295565b80633685d4191161020b5780634549b039116101c45780634549b039146104ea57806349bd5a5e1461051a5780634a74bb021461053857806352390c02146105565780635342acb4146105725780636bc87c3a146105a257610295565b80633685d4191461042a57806339509351146104465780633b124fe7146104765780633bd5d17314610494578063433b3c05146104b0578063437823ec146104ce57610295565b806318160ddd1161025d57806318160ddd146103405780631fa1d2691461035e57806321eb5d461461038e57806323b872dd146103ac5780632d838119146103dc578063313ce5671461040c57610295565b8063061c82d01461029a57806306fdde03146102b6578063095ea7b3146102d457806313114a9d146103045780631694505e14610322575b600080fd5b6102b460048036038101906102af9190614470565b6108c6565b005b6102be61094c565b6040516102cb9190614536565b60405180910390f35b6102ee60048036038101906102e991906145b6565b6109de565b6040516102fb9190614611565b60405180910390f35b61030c6109fc565b604051610319919061463b565b60405180910390f35b61032a610a06565b60405161033791906146b5565b60405180910390f35b610348610a2a565b604051610355919061463b565b60405180910390f35b610378600480360381019061037391906146d0565b610a34565b6040516103859190614611565b60405180910390f35b610396610a54565b6040516103a39190614611565b60405180910390f35b6103c660048036038101906103c191906146fd565b610a67565b6040516103d39190614611565b60405180910390f35b6103f660048036038101906103f19190614470565b610b40565b604051610403919061463b565b60405180910390f35b610414610bae565b604051610421919061476c565b60405180910390f35b610444600480360381019061043f91906146d0565b610bc5565b005b610460600480360381019061045b91906145b6565b610efb565b60405161046d9190614611565b60405180910390f35b61047e610fae565b60405161048b919061463b565b60405180910390f35b6104ae60048036038101906104a99190614470565b610fb4565b005b6104b861112f565b6040516104c59190614796565b60405180910390f35b6104e860048036038101906104e391906146d0565b611153565b005b61050460048036038101906104ff91906147dd565b61122a565b604051610511919061463b565b60405180910390f35b6105226112ae565b60405161052f9190614796565b60405180910390f35b6105406112d2565b60405161054d9190614611565b60405180910390f35b610570600480360381019061056b91906146d0565b6112e5565b005b61058c600480360381019061058791906146d0565b611580565b6040516105999190614611565b60405180910390f35b6105aa6115d6565b6040516105b7919061463b565b60405180910390f35b6105c86115dc565b6040516105d5919061463b565b60405180910390f35b6105f860048036038101906105f3919061481d565b6115e2565b005b610614600480360381019061060f91906146d0565b6116ae565b604051610621919061463b565b60405180910390f35b610632611799565b60405161063f9190614796565b60405180910390f35b61065061179f565b005b61065a611827565b604051610667919061463b565b60405180910390f35b61068a600480360381019061068591906148c2565b61182d565b005b6106a660048036038101906106a191906146d0565b61194c565b6040516106b39190614611565b60405180910390f35b6106c46119a2565b6040516106d19190614796565b60405180910390f35b6106e26119b1565b6040516106ef9190614796565b60405180910390f35b610712600480360381019061070d9190614470565b6119da565b005b61071c611a60565b6040516107299190614536565b60405180910390f35b61074c600480360381019061074791906145b6565b611af2565b6040516107599190614611565b60405180910390f35b61077c600480360381019061077791906145b6565b611bbf565b6040516107899190614611565b60405180910390f35b61079a611bdd565b6040516107a7919061463b565b60405180910390f35b6107ca60048036038101906107c59190614922565b611be3565b005b6107e660048036038101906107e19190614922565b611cb3565b005b61080260048036038101906107fd9190614470565b611d4c565b005b61081e6004803603810190610819919061494f565b611df9565b60405161082b919061463b565b60405180910390f35b61084e600480360381019061084991906146d0565b611e80565b005b61086a600480360381019061086591906146d0565b611f57565b005b61087461204f565b60405161088191906149b0565b60405180910390f35b610892612075565b60405161089f919061463b565b60405180910390f35b6108b061207b565b6040516108bd9190614611565b60405180910390f35b6108ce61208e565b73ffffffffffffffffffffffffffffffffffffffff166108ec6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990614a17565b60405180910390fd5b80600d8190555050565b6060600a805461095b90614a66565b80601f016020809104026020016040519081016040528092919081815260200182805461098790614a66565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109f26109eb61208e565b8484612096565b6001905092915050565b6000600954905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600754905090565b60166020528060005260406000206000915054906101000a900460ff1681565b601560009054906101000a900460ff1681565b6000610a74848484612261565b610b3584610a8061208e565b610b30856040518060600160405280602881526020016156e260289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ae661208e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461293e9092919063ffffffff16565b612096565b600190509392505050565b6000600854821115610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90614b0a565b60405180910390fd5b6000610b91612993565b9050610ba681846129be90919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b610bcd61208e565b73ffffffffffffffffffffffffffffffffffffffff16610beb6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890614a17565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490614b76565b60405180910390fd5b60005b600680549050811015610ef7578173ffffffffffffffffffffffffffffffffffffffff1660068281548110610d0857610d07614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ee45760066001600680549050610d639190614bf4565b81548110610d7457610d73614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610db357610db2614b96565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610eaa57610ea9614c28565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610ef7565b8080610eef90614c57565b915050610cd0565b5050565b6000610fa4610f0861208e565b84610f9f8560036000610f1961208e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b612096565b6001905092915050565b600d5481565b6000610fbe61208e565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614d12565b60405180910390fd5b6000611058836129ea565b505050505090506110b181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061110981600854612a4690919063ffffffff16565b600881905550611124836009546129d490919063ffffffff16565b600981905550505050565b7f0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f81565b61115b61208e565b73ffffffffffffffffffffffffffffffffffffffff166111796119b1565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614a17565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890614d7e565b60405180910390fd5b81611291576000611281846129ea565b50505050509050809150506112a8565b600061129c846129ea565b50505050915050809150505b92915050565b7f000000000000000000000000e858bf6e320e813b648554cd5c52f227d3b143d881565b601160159054906101000a900460ff1681565b6112ed61208e565b73ffffffffffffffffffffffffffffffffffffffff1661130b6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890614a17565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590614b76565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156114c25761147e600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b40565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b60145481565b6115ea61208e565b73ffffffffffffffffffffffffffffffffffffffff166116086119b1565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590614a17565b60405180910390fd5b81601760006101000a81548160ff021916908315150217905550601760009054906101000a900460ff16801561169657506000601954145b156116aa5743601981905550806018819055505b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174957600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611794565b611791600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b40565b90505b919050565b61dead81565b6117a761208e565b73ffffffffffffffffffffffffffffffffffffffff166117c56119b1565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290614a17565b60405180910390fd5b6118256000612a5c565b565b60125481565b61183561208e565b73ffffffffffffffffffffffffffffffffffffffff166118536119b1565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614a17565b60405180910390fd5b60005b838390508110156119465781601660008686858181106118cf576118ce614b96565b5b90506020020160208101906118e491906146d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508061193f90614c57565b90506118ac565b50505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006119ac6119b1565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e261208e565b73ffffffffffffffffffffffffffffffffffffffff16611a006119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90614a17565b60405180910390fd5b80600f8190555050565b6060600b8054611a6f90614a66565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9b90614a66565b8015611ae85780601f10611abd57610100808354040283529160200191611ae8565b820191906000526020600020905b815481529060010190602001808311611acb57829003601f168201915b5050505050905090565b6000611bb5611aff61208e565b84611bb08560405180606001604052806025815260200161570a6025913960036000611b2961208e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461293e9092919063ffffffff16565b612096565b6001905092915050565b6000611bd3611bcc61208e565b8484612261565b6001905092915050565b60195481565b611beb61208e565b73ffffffffffffffffffffffffffffffffffffffff16611c096119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690614a17565b60405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611ca89190614611565b60405180910390a150565b611cbb61208e565b73ffffffffffffffffffffffffffffffffffffffff16611cd96119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2690614a17565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b611d5461208e565b73ffffffffffffffffffffffffffffffffffffffff16611d726119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90614a17565b60405180910390fd5b611df06064611de283600754612b2090919063ffffffff16565b6129be90919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e8861208e565b73ffffffffffffffffffffffffffffffffffffffff16611ea66119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614a17565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611f5f61208e565b73ffffffffffffffffffffffffffffffffffffffff16611f7d6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90614a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90614e10565b60405180910390fd5b61204c81612a5c565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b601760009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614ea2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614f34565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612254919061463b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614fc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890615058565b60405180910390fd5b60008111612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b906150ea565b60405180910390fd5b61238c6119b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123fa57506123ca6119b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561244557601254811115612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b9061517c565b60405180910390fd5b5b6000612450836116ae565b905061245a6119b1565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156124c857506124986119b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156125145750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561256c57507f000000000000000000000000e858bf6e320e813b648554cd5c52f227d3b143d873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156125a457503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156125f95760145482826125b8919061519c565b106125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef90615264565b60405180910390fd5b5b601560009054906101000a900460ff16156127b457601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561269b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612692906152d0565b60405180910390fd5b7f000000000000000000000000e858bf6e320e813b648554cd5c52f227d3b143d873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561271c5750601760009054906101000a900460ff16158061271b575043601854601954612719919061519c565b115b5b156127b3576001601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc05fe82fadc2c648ffcab1a84911ab5cd07e695a06d36020d37eb94c898eb285833a6040516127aa9291906152f0565b60405180910390a15b5b60006127bf306116ae565b905060125481106127d05760125490505b600060135482101590508080156127f45750601160149054906101000a900460ff16155b801561284c57507f000000000000000000000000e858bf6e320e813b648554cd5c52f227d3b143d873ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156128645750601160159054906101000a900460ff165b1561287857601354915061287782612b36565b5b600060019050600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061291f5750600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561292957600090505b61293587878784612dc0565b50505050505050565b6000838311158290612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d9190614536565b60405180910390fd5b5082840390509392505050565b60008060006129a06130d1565b915091506129b781836129be90919063ffffffff16565b9250505090565b600081836129cc9190615348565b905092915050565b600081836129e2919061519c565b905092915050565b6000806000806000806000806000612a018a613384565b9250925092506000806000612a1f8d8686612a1a612993565b6133de565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60008183612a549190614bf4565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612b2e9190615379565b905092915050565b6001601160146101000a81548160ff0219169083151502179055506000612b676002836129be90919063ffffffff16565b90506000612b7e8284612a4690919063ffffffff16565b905060007f0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612bdb9190614796565b602060405180830381865afa158015612bf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1c91906153e8565b9050612c2783613467565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663951664f66040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612c9157600080fd5b505af1158015612ca5573d6000803e3d6000fd5b505050506000612d57827f0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612d089190614796565b602060405180830381865afa158015612d25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d4991906153e8565b612a4690919063ffffffff16565b9050612d638382613658565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612d9693929190615415565b60405180910390a1505050506000601160146101000a81548160ff02191690831515021790555050565b80612dce57612dcd613816565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e715750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8657612e81848484613859565b6130bd565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f295750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f3e57612f39848484613ab9565b6130bc565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612fe25750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff757612ff2848484613d19565b6130bb565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130995750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130ae576130a9848484613ee4565b6130ba565b6130b9848484613d19565b5b5b5b5b806130cb576130ca6141d9565b5b50505050565b600080600060085490506000600754905060005b6006805490508110156133475782600160006006848154811061310b5761310a614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806131f9575081600260006006848154811061319157613190614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156132105760085460075494509450505050613380565b6132a0600160006006848154811061322b5761322a614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612a4690919063ffffffff16565b925061333260026000600684815481106132bd576132bc614b96565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612a4690919063ffffffff16565b9150808061333f90614c57565b9150506130e5565b5061335f6007546008546129be90919063ffffffff16565b82101561337757600854600754935093505050613380565b81819350935050505b9091565b600080600080613393856141ed565b905060006133a08661421f565b905060006133c9826133bb858a612a4690919063ffffffff16565b612a4690919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806133f78589612b2090919063ffffffff16565b9050600061340e8689612b2090919063ffffffff16565b905060006134258789612b2090919063ffffffff16565b9050600061344e826134408587612a4690919063ffffffff16565b612a4690919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600267ffffffffffffffff8111156134845761348361544c565b5b6040519080825280602002602001820160405280156134b25781602001602082028036833780820191505090505b50905030816000815181106134ca576134c9614b96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f8160018151811061353957613538614b96565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612096565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401613622959493929190615574565b600060405180830381600087803b15801561363c57600080fd5b505af1158015613650573d6000803e3d6000fd5b505050505050565b613683307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612096565b7f0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d836040518363ffffffff1660e01b81526004016136fe9291906152f0565b6020604051808303816000875af115801561371d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374191906155e3565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663e8e33700307f0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f858560008061dead426040518963ffffffff1660e01b81526004016137cc989796959493929190615610565b6060604051808303816000875af11580156137eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061380f919061568e565b5050505050565b6000600d5414801561382a57506000600f54145b1561383457613857565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b60008060008060008061386b876129ea565b9550955095509550955095506138c987600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061395e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139f385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a3f81614251565b613a4984836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613aa6919061463b565b60405180910390a3505050505050505050565b600080600080600080613acb876129ea565b955095509550955095509550613b2986600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bbe83600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c5385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c9f81614251565b613ca984836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613d06919061463b565b60405180910390a3505050505050505050565b600080600080600080613d2b876129ea565b955095509550955095509550613d8986600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e1e85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e6a81614251565b613e7484836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613ed1919061463b565b60405180910390a3505050505050505050565b600080600080600080613ef6876129ea565b955095509550955095509550613f5487600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe986600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4690919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061407e83600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061411385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061415f81614251565b61416984836143f6565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516141c6919061463b565b60405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b60006142186103e861420a600d5485612b2090919063ffffffff16565b6129be90919063ffffffff16565b9050919050565b600061424a6103e861423c600f5485612b2090919063ffffffff16565b6129be90919063ffffffff16565b9050919050565b600061425b612993565b905060006142728284612b2090919063ffffffff16565b90506142c681600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156143f1576143ad83600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d490919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61440b82600854612a4690919063ffffffff16565b600881905550614426816009546129d490919063ffffffff16565b6009819055505050565b600080fd5b600080fd5b6000819050919050565b61444d8161443a565b811461445857600080fd5b50565b60008135905061446a81614444565b92915050565b60006020828403121561448657614485614430565b5b60006144948482850161445b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144d75780820151818401526020810190506144bc565b838111156144e6576000848401525b50505050565b6000601f19601f8301169050919050565b60006145088261449d565b61451281856144a8565b93506145228185602086016144b9565b61452b816144ec565b840191505092915050565b6000602082019050818103600083015261455081846144fd565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061458382614558565b9050919050565b61459381614578565b811461459e57600080fd5b50565b6000813590506145b08161458a565b92915050565b600080604083850312156145cd576145cc614430565b5b60006145db858286016145a1565b92505060206145ec8582860161445b565b9150509250929050565b60008115159050919050565b61460b816145f6565b82525050565b60006020820190506146266000830184614602565b92915050565b6146358161443a565b82525050565b6000602082019050614650600083018461462c565b92915050565b6000819050919050565b600061467b61467661467184614558565b614656565b614558565b9050919050565b600061468d82614660565b9050919050565b600061469f82614682565b9050919050565b6146af81614694565b82525050565b60006020820190506146ca60008301846146a6565b92915050565b6000602082840312156146e6576146e5614430565b5b60006146f4848285016145a1565b91505092915050565b60008060006060848603121561471657614715614430565b5b6000614724868287016145a1565b9350506020614735868287016145a1565b92505060406147468682870161445b565b9150509250925092565b600060ff82169050919050565b61476681614750565b82525050565b6000602082019050614781600083018461475d565b92915050565b61479081614578565b82525050565b60006020820190506147ab6000830184614787565b92915050565b6147ba816145f6565b81146147c557600080fd5b50565b6000813590506147d7816147b1565b92915050565b600080604083850312156147f4576147f3614430565b5b60006148028582860161445b565b9250506020614813858286016147c8565b9150509250929050565b6000806040838503121561483457614833614430565b5b6000614842858286016147c8565b92505060206148538582860161445b565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126148825761488161485d565b5b8235905067ffffffffffffffff81111561489f5761489e614862565b5b6020830191508360208202830111156148bb576148ba614867565b5b9250929050565b6000806000604084860312156148db576148da614430565b5b600084013567ffffffffffffffff8111156148f9576148f8614435565b5b6149058682870161486c565b93509350506020614918868287016147c8565b9150509250925092565b60006020828403121561493857614937614430565b5b6000614946848285016147c8565b91505092915050565b6000806040838503121561496657614965614430565b5b6000614974858286016145a1565b9250506020614985858286016145a1565b9150509250929050565b600061499a82614682565b9050919050565b6149aa8161498f565b82525050565b60006020820190506149c560008301846149a1565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a016020836144a8565b9150614a0c826149cb565b602082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a7e57607f821691505b60208210811415614a9257614a91614a37565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614af4602a836144a8565b9150614aff82614a98565b604082019050919050565b60006020820190508181036000830152614b2381614ae7565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000614b60601b836144a8565b9150614b6b82614b2a565b602082019050919050565b60006020820190508181036000830152614b8f81614b53565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bff8261443a565b9150614c0a8361443a565b925082821015614c1d57614c1c614bc5565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000614c628261443a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c9557614c94614bc5565b5b600182019050919050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614cfc602c836144a8565b9150614d0782614ca0565b604082019050919050565b60006020820190508181036000830152614d2b81614cef565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b6000614d68601f836144a8565b9150614d7382614d32565b602082019050919050565b60006020820190508181036000830152614d9781614d5b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dfa6026836144a8565b9150614e0582614d9e565b604082019050919050565b60006020820190508181036000830152614e2981614ded565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e8c6024836144a8565b9150614e9782614e30565b604082019050919050565b60006020820190508181036000830152614ebb81614e7f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f1e6022836144a8565b9150614f2982614ec2565b604082019050919050565b60006020820190508181036000830152614f4d81614f11565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fb06025836144a8565b9150614fbb82614f54565b604082019050919050565b60006020820190508181036000830152614fdf81614fa3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006150426023836144a8565b915061504d82614fe6565b604082019050919050565b6000602082019050818103600083015261507181615035565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006150d46029836144a8565b91506150df82615078565b604082019050919050565b60006020820190508181036000830152615103816150c7565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006151666028836144a8565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b9050919050565b60006151a78261443a565b91506151b28361443a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151e7576151e6614bc5565b5b828201905092915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785760008201527f616c6c6574416d6f756e742e0000000000000000000000000000000000000000602082015250565b600061524e602c836144a8565b9150615259826151f2565b604082019050919050565b6000602082019050818103600083015261527d81615241565b9050919050565b7f426f74732063616e6e6f742073656c6c00000000000000000000000000000000600082015250565b60006152ba6010836144a8565b91506152c582615284565b602082019050919050565b600060208201905081810360008301526152e9816152ad565b9050919050565b60006040820190506153056000830185614787565b615312602083018461462c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006153538261443a565b915061535e8361443a565b92508261536e5761536d615319565b5b828204905092915050565b60006153848261443a565b915061538f8361443a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153c8576153c7614bc5565b5b828202905092915050565b6000815190506153e281614444565b92915050565b6000602082840312156153fe576153fd614430565b5b600061540c848285016153d3565b91505092915050565b600060608201905061542a600083018661462c565b615437602083018561462c565b615444604083018461462c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b60006154a061549b6154968461547b565b614656565b61443a565b9050919050565b6154b081615485565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6154eb81614578565b82525050565b60006154fd83836154e2565b60208301905092915050565b6000602082019050919050565b6000615521826154b6565b61552b81856154c1565b9350615536836154d2565b8060005b8381101561556757815161554e88826154f1565b975061555983615509565b92505060018101905061553a565b5085935050505092915050565b600060a082019050615589600083018861462c565b61559660208301876154a7565b81810360408301526155a88186615516565b90506155b76060830185614787565b6155c4608083018461462c565b9695505050505050565b6000815190506155dd816147b1565b92915050565b6000602082840312156155f9576155f8614430565b5b6000615607848285016155ce565b91505092915050565b600061010082019050615626600083018b614787565b615633602083018a614787565b615640604083018961462c565b61564d606083018861462c565b61565a60808301876154a7565b61566760a08301866154a7565b61567460c0830185614787565b61568160e083018461462c565b9998505050505050505050565b6000806000606084860312156156a7576156a6614430565b5b60006156b5868287016153d3565b93505060206156c6868287016153d3565b92505060406156d7868287016153d3565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205298a53998cca90feb38cb0f0059a9e90077cc4da45455ee9ff2f31b0e24702c64736f6c634300080c0033

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

0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f

-----Decoded View---------------
Arg [0] : _stable_coin (address): 0x6B175474E89094C44Da98b954EedeAC495271d0F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.