false
false

Contract Address Details

0xA58350d6dEE8441aa42754346860E3545cc83cdA

Contract Name
KuswapRouter02
Creator
0xcaf6e8–01eced at 0x788cd5–5398fa
Balance
0 KCS
Tokens
Fetching tokens...
Transactions
882,826 Transactions
Transfers
542,446 Transfers
Gas Used
146,768,750,239
Last Balance Update
30859332
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
KuswapRouter02




Optimization enabled
true
Compiler version
v0.6.6+commit.6c089d02




Optimization runs
999999
EVM Version
default




Verified at
2021-10-12T14:31:51.291472Z

Constructor Arguments

000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c07521

Arg [0] (address) : 0xae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae
Arg [1] (address) : 0x4446fc4eb47f2f6586f9faab68b3498f86c07521

              

Contract source code

/**
KuSwap Offical Router, learn to use it in your contract by following our docs.
KuSwap.finance
*/

pragma solidity =0.6.6;

interface IKuswapFactory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
library TransferHelper {
    function safeApprove(
        address token,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::safeApprove: approve failed'
        );
    }

    function safeTransfer(
        address token,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::safeTransfer: transfer failed'
        );
    }

    function safeTransferFrom(
        address token,
        address from,
        address to,
        uint256 value
    ) internal {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::transferFrom: transferFrom failed'
        );
    }

    function safeTransferETH(address to, uint256 value) internal {
        (bool success, ) = to.call{value: value}(new bytes(0));
        require(success, 'TransferHelper::safeTransferETH: ETH transfer failed');
    }
}
interface IKuswapRouter02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapFeeReward() external pure returns (address);

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

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

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
interface IKuswapPair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

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

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

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

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

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

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

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

    function initialize(address, address) external;
    function setSwapFee(uint32) external;
    function setDevFee(uint32) external;
}


library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}

library KuswapLibrary {
    using SafeMath for uint;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'KuswapLibrary: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'KuswapLibrary: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'5d71f8561d80ed979ca73d5b742278f4719baab5f0dd78b6ca91bec31f0e2dbc' // init code hash
            ))));
    }

    function getSwapFee(address factory, address tokenA, address tokenB) internal view returns (uint swapFee) {
        swapFee = IKuswapPair(pairFor(factory, tokenA, tokenB)).swapFee();
    }

    // fetches and sorts the reserves for a pair
    function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IKuswapPair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
        require(amountA > 0, 'KuswapLibrary: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'KuswapLibrary: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint swapFee) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'KuswapLibrary: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'KuswapLibrary: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(uint(1000).sub(swapFee));
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint swapFee) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'KuswapLibrary: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'KuswapLibrary: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(uint(1000).sub(swapFee));
        amountIn = (numerator / denominator).add(1);
    }

    // performs chained getAmountOut calculations on any number of pairs
    function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'KuswapLibrary: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[0] = amountIn;
        for (uint i; i < path.length - 1; i++) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
            amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut, getSwapFee(factory, path[i], path[i + 1]));
        }
    }

    // performs chained getAmountIn calculations on any number of pairs
    function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'KuswapLibrary: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[amounts.length - 1] = amountOut;
        for (uint i = path.length - 1; i > 0; i--) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
            amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut, getSwapFee(factory, path[i - 1], path[i]));
        }
    }
    
}

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

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

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
}
interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}
library Babylonian {
    // credit for this implementation goes to
    // https://github.com/abdk-consulting/abdk-libraries-solidity/blob/master/ABDKMath64x64.sol#L687
    function sqrt(uint256 x) internal pure returns (uint256) {
        if (x == 0) return 0;
        // this block is equivalent to r = uint256(1) << (BitMath.mostSignificantBit(x) / 2);
        // however that code costs significantly more gas
        uint256 xx = x;
        uint256 r = 1;
        if (xx >= 0x100000000000000000000000000000000) {
            xx >>= 128;
            r <<= 64;
        }
        if (xx >= 0x10000000000000000) {
            xx >>= 64;
            r <<= 32;
        }
        if (xx >= 0x100000000) {
            xx >>= 32;
            r <<= 16;
        }
        if (xx >= 0x10000) {
            xx >>= 16;
            r <<= 8;
        }
        if (xx >= 0x100) {
            xx >>= 8;
            r <<= 4;
        }
        if (xx >= 0x10) {
            xx >>= 4;
            r <<= 2;
        }
        if (xx >= 0x8) {
            r <<= 1;
        }
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1;
        r = (r + x / r) >> 1; // Seven iterations should be enough
        uint256 r1 = x / r;
        return (r < r1 ? r : r1);
    }
}
library FullMath {
    function fullMul(uint256 x, uint256 y) internal pure returns (uint256 l, uint256 h) {
        uint256 mm = mulmod(x, y, uint256(-1));
        l = x * y;
        h = mm - l;
        if (mm < l) h -= 1;
    }

    function fullDiv(
        uint256 l,
        uint256 h,
        uint256 d
    ) private pure returns (uint256) {
        uint256 pow2 = d & -d;
        d /= pow2;
        l /= pow2;
        l += h * ((-pow2) / pow2 + 1);
        uint256 r = 1;
        r *= 2 - d * r;
        r *= 2 - d * r;
        r *= 2 - d * r;
        r *= 2 - d * r;
        r *= 2 - d * r;
        r *= 2 - d * r;
        r *= 2 - d * r;
        r *= 2 - d * r;
        return l * r;
    }

    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 d
    ) internal pure returns (uint256) {
        (uint256 l, uint256 h) = fullMul(x, y);

        uint256 mm = mulmod(x, y, d);
        if (mm > l) h -= 1;
        l -= mm;

        if (h == 0) return l / d;

        require(h < d, 'FullMath: FULLDIV_OVERFLOW');
        return fullDiv(l, h, d);
    }
}

contract Ownable {
    address private _owner;

    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    function isOwner(address account) public view returns (bool) {
        return account == _owner;
    }

    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }


    modifier onlyOwner() {
        require(isOwner(msg.sender), "Ownable: caller is not the owner");
        _;
    }

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

// not third-party dependency
interface ISwapFeeReward {
    function swap(address account, address input, address output, uint256 amount) external returns (bool);
}

contract KuswapRouter02 is IKuswapRouter02, Ownable {
    using SafeMath for uint;

    address public immutable override factory;
    address public immutable override WETH;
    address public override swapFeeReward;

    modifier ensure(uint deadline) {
        require(deadline >= block.timestamp, 'KuswapV2Router: EXPIRED');
        _;
    }

    constructor(address _factory, address _WETH) public {
        factory = _factory;
        WETH = _WETH;
    }

    receive() external payable {
        assert(msg.sender == WETH); // only accept ETH via fallback from the WETH contract
    }

    function setSwapFeeReward(address _swapFeeReward) public onlyOwner {
        swapFeeReward = _swapFeeReward;
    }

    // **** ADD LIQUIDITY ****
    function _addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin
    ) internal virtual returns (uint amountA, uint amountB) {
        // create the pair if it doesn't exist yet
        if (IKuswapFactory(factory).getPair(tokenA, tokenB) == address(0)) {
            IKuswapFactory(factory).createPair(tokenA, tokenB);
        }
        (uint reserveA, uint reserveB) = KuswapLibrary.getReserves(factory, tokenA, tokenB);
        if (reserveA == 0 && reserveB == 0) {
            (amountA, amountB) = (amountADesired, amountBDesired);
        } else {
            uint amountBOptimal = KuswapLibrary.quote(amountADesired, reserveA, reserveB);
            if (amountBOptimal <= amountBDesired) {
                require(amountBOptimal >= amountBMin, 'KuswapV2Router: INSUFFICIENT_B_AMOUNT');
                (amountA, amountB) = (amountADesired, amountBOptimal);
            } else {
                uint amountAOptimal = KuswapLibrary.quote(amountBDesired, reserveB, reserveA);
                assert(amountAOptimal <= amountADesired);
                require(amountAOptimal >= amountAMin, 'KuswapV2Router: INSUFFICIENT_A_AMOUNT');
                (amountA, amountB) = (amountAOptimal, amountBDesired);
            }
        }
    }
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) returns (uint amountA, uint amountB, uint liquidity) {
        (amountA, amountB) = _addLiquidity(tokenA, tokenB, amountADesired, amountBDesired, amountAMin, amountBMin);
        address pair = KuswapLibrary.pairFor(factory, tokenA, tokenB);
        TransferHelper.safeTransferFrom(tokenA, msg.sender, pair, amountA);
        TransferHelper.safeTransferFrom(tokenB, msg.sender, pair, amountB);
        liquidity = IKuswapPair(pair).mint(to);
    }
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external virtual override payable ensure(deadline) returns (uint amountToken, uint amountETH, uint liquidity) {
        (amountToken, amountETH) = _addLiquidity(
            token,
            WETH,
            amountTokenDesired,
            msg.value,
            amountTokenMin,
            amountETHMin
        );
        address pair = KuswapLibrary.pairFor(factory, token, WETH);
        TransferHelper.safeTransferFrom(token, msg.sender, pair, amountToken);
        IWETH(WETH).deposit{value: amountETH}();
        assert(IWETH(WETH).transfer(pair, amountETH));
        liquidity = IKuswapPair(pair).mint(to);
        // refund dust eth, if any
        if (msg.value > amountETH) TransferHelper.safeTransferETH(msg.sender, msg.value - amountETH);
    }

    // **** REMOVE LIQUIDITY ****
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountA, uint amountB) {
        address pair = KuswapLibrary.pairFor(factory, tokenA, tokenB);
        IKuswapPair(pair).transferFrom(msg.sender, pair, liquidity); // send liquidity to pair
        (uint amount0, uint amount1) = IKuswapPair(pair).burn(to);
        (address token0,) = KuswapLibrary.sortTokens(tokenA, tokenB);
        (amountA, amountB) = tokenA == token0 ? (amount0, amount1) : (amount1, amount0);
        require(amountA >= amountAMin, 'KuswapV2Router: INSUFFICIENT_A_AMOUNT');
        require(amountB >= amountBMin, 'KuswapV2Router: INSUFFICIENT_B_AMOUNT');
    }
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountToken, uint amountETH) {
        (amountToken, amountETH) = removeLiquidity(
            token,
            WETH,
            liquidity,
            amountTokenMin,
            amountETHMin,
            address(this),
            deadline
        );
        TransferHelper.safeTransfer(token, to, amountToken);
        IWETH(WETH).withdraw(amountETH);
        TransferHelper.safeTransferETH(to, amountETH);
    }
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountA, uint amountB) {
        address pair = KuswapLibrary.pairFor(factory, tokenA, tokenB);
        uint value = approveMax ? uint(-1) : liquidity;
        IKuswapPair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountA, amountB) = removeLiquidity(tokenA, tokenB, liquidity, amountAMin, amountBMin, to, deadline);
    }
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountToken, uint amountETH) {
        address pair = KuswapLibrary.pairFor(factory, token, WETH);
        uint value = approveMax ? uint(-1) : liquidity;
        IKuswapPair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountToken, amountETH) = removeLiquidityETH(token, liquidity, amountTokenMin, amountETHMin, to, deadline);
    }

    // **** REMOVE LIQUIDITY (supporting fee-on-transfer tokens) ****
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountETH) {
        (, amountETH) = removeLiquidity(
            token,
            WETH,
            liquidity,
            amountTokenMin,
            amountETHMin,
            address(this),
            deadline
        );
        TransferHelper.safeTransfer(token, to, IERC20(token).balanceOf(address(this)));
        IWETH(WETH).withdraw(amountETH);
        TransferHelper.safeTransferETH(to, amountETH);
    }
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountETH) {
        address pair = KuswapLibrary.pairFor(factory, token, WETH);
        uint value = approveMax ? uint(-1) : liquidity;
        IKuswapPair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        amountETH = removeLiquidityETHSupportingFeeOnTransferTokens(
            token, liquidity, amountTokenMin, amountETHMin, to, deadline
        );
    }

    // **** SWAP ****
    // requires the initial amount to have already been sent to the first pair
    function _swap(uint[] memory amounts, address[] memory path, address _to) internal virtual {
        for (uint i; i < path.length - 1; i++) {
            (address input, address output) = (path[i], path[i + 1]);
            (address token0,) = KuswapLibrary.sortTokens(input, output);
            uint amountOut = amounts[i + 1];
            (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOut) : (amountOut, uint(0));
            if (swapFeeReward != address(0)) {
                // not third-party dependency
                ISwapFeeReward(swapFeeReward).swap(msg.sender, input, output, amountOut);
            }
            address to = i < path.length - 2 ? KuswapLibrary.pairFor(factory, output, path[i + 2]) : _to;
            IKuswapPair(KuswapLibrary.pairFor(factory, input, output)).swap(
                amount0Out, amount1Out, to, new bytes(0)
            );
        }
    }
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) returns (uint[] memory amounts) {
        amounts = KuswapLibrary.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'KuswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, KuswapLibrary.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, to);
    }
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) returns (uint[] memory amounts) {
        amounts = KuswapLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, 'KuswapV2Router: EXCESSIVE_INPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, KuswapLibrary.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, to);
    }
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        payable
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[0] == WETH, 'KuswapV2Router: INVALID_PATH');
        amounts = KuswapLibrary.getAmountsOut(factory, msg.value, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'KuswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT');
        IWETH(WETH).deposit{value: amounts[0]}();
        assert(IWETH(WETH).transfer(KuswapLibrary.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
    }
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[path.length - 1] == WETH, 'KuswapV2Router: INVALID_PATH');
        amounts = KuswapLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, 'KuswapV2Router: EXCESSIVE_INPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, KuswapLibrary.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, address(this));
        IWETH(WETH).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[path.length - 1] == WETH, 'KuswapV2Router: INVALID_PATH');
        amounts = KuswapLibrary.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'KuswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, KuswapLibrary.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, address(this));
        IWETH(WETH).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        payable
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[0] == WETH, 'KuswapV2Router: INVALID_PATH');
        amounts = KuswapLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= msg.value, 'KuswapV2Router: EXCESSIVE_INPUT_AMOUNT');
        IWETH(WETH).deposit{value: amounts[0]}();
        assert(IWETH(WETH).transfer(KuswapLibrary.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
        // refund dust eth, if any
        if (msg.value > amounts[0]) TransferHelper.safeTransferETH(msg.sender, msg.value - amounts[0]);
    }

    // **** SWAP (supporting fee-on-transfer tokens) ****
    // requires the initial amount to have already been sent to the first pair
    function _swapSupportingFeeOnTransferTokens(address[] memory path, address _to) internal virtual {
        for (uint i; i < path.length - 1; i++) {
            (address input, address output) = (path[i], path[i + 1]);
            (address token0,) = KuswapLibrary.sortTokens(input, output);
            IKuswapPair pair = IKuswapPair(KuswapLibrary.pairFor(factory, input, output));
            uint amountInput;
            uint amountOutput;
            { // scope to avoid stack too deep errors
            (uint reserve0, uint reserve1,) = pair.getReserves();
            (uint reserveInput, uint reserveOutput) = input == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
            amountInput = IERC20(input).balanceOf(address(pair)).sub(reserveInput);
            amountOutput = KuswapLibrary.getAmountOut(amountInput, reserveInput, reserveOutput, pair.swapFee());
            }
                // not third-party dependency
            if (swapFeeReward != address(0)) {
                ISwapFeeReward(swapFeeReward).swap(msg.sender, input, output, amountOutput);
            }
            (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOutput) : (amountOutput, uint(0));
            address to = i < path.length - 2 ? KuswapLibrary.pairFor(factory, output, path[i + 2]) : _to;
            pair.swap(amount0Out, amount1Out, to, new bytes(0));
        }
    }
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) {
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, KuswapLibrary.pairFor(factory, path[0], path[1]), amountIn
        );
        uint balanceBefore = IERC20(path[path.length - 1]).balanceOf(to);
        _swapSupportingFeeOnTransferTokens(path, to);
        require(
            IERC20(path[path.length - 1]).balanceOf(to).sub(balanceBefore) >= amountOutMin,
            'KuswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT'
        );
    }
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    )
        external
        virtual
        override
        payable
        ensure(deadline)
    {
        require(path[0] == WETH, 'KuswapV2Router: INVALID_PATH');
        uint amountIn = msg.value;
        IWETH(WETH).deposit{value: amountIn}();
        assert(IWETH(WETH).transfer(KuswapLibrary.pairFor(factory, path[0], path[1]), amountIn));
        uint balanceBefore = IERC20(path[path.length - 1]).balanceOf(to);
        _swapSupportingFeeOnTransferTokens(path, to);
        require(
            IERC20(path[path.length - 1]).balanceOf(to).sub(balanceBefore) >= amountOutMin,
            'KuswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT'
        );
    }
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    )
        external
        virtual
        override
        ensure(deadline)
    {
        require(path[path.length - 1] == WETH, 'KuswapV2Router: INVALID_PATH');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, KuswapLibrary.pairFor(factory, path[0], path[1]), amountIn
        );
        _swapSupportingFeeOnTransferTokens(path, address(this));
        uint amountOut = IERC20(WETH).balanceOf(address(this));
        require(amountOut >= amountOutMin, 'KuswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT');
        IWETH(WETH).withdraw(amountOut);
        TransferHelper.safeTransferETH(to, amountOut);
    }

    // **** LIBRARY FUNCTIONS ****
    function quote(uint amountA, uint reserveA, uint reserveB) public pure virtual override returns (uint amountB) {
        return KuswapLibrary.quote(amountA, reserveA, reserveB);
    }

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint swapFee)
        public
        pure
        virtual
        override
        returns (uint amountOut)
    {
        return KuswapLibrary.getAmountOut(amountIn, reserveIn, reserveOut, swapFee);
    }

    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint swapFee)
        public
        pure
        virtual
        override
        returns (uint amountIn)
    {
        return KuswapLibrary.getAmountIn(amountOut, reserveIn, reserveOut, swapFee);
    }

    function getAmountsOut(uint amountIn, address[] memory path)
        public
        view
        virtual
        override
        returns (uint[] memory amounts)
    {
        return KuswapLibrary.getAmountsOut(factory, amountIn, path);
    }

    function getAmountsIn(uint amountOut, address[] memory path)
        public
        view
        virtual
        override
        returns (uint[] memory amounts)
    {
        return KuswapLibrary.getAmountsIn(factory, amountOut, path);
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_factory","internalType":"address"},{"type":"address","name":"_WETH","internalType":"address"}]},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"WETH","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"amountB","internalType":"uint256"},{"type":"uint256","name":"liquidity","internalType":"uint256"}],"name":"addLiquidity","inputs":[{"type":"address","name":"tokenA","internalType":"address"},{"type":"address","name":"tokenB","internalType":"address"},{"type":"uint256","name":"amountADesired","internalType":"uint256"},{"type":"uint256","name":"amountBDesired","internalType":"uint256"},{"type":"uint256","name":"amountAMin","internalType":"uint256"},{"type":"uint256","name":"amountBMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256","name":"amountToken","internalType":"uint256"},{"type":"uint256","name":"amountETH","internalType":"uint256"},{"type":"uint256","name":"liquidity","internalType":"uint256"}],"name":"addLiquidityETH","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"amountTokenDesired","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"factory","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"}],"name":"getAmountIn","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"uint256","name":"reserveIn","internalType":"uint256"},{"type":"uint256","name":"reserveOut","internalType":"uint256"},{"type":"uint256","name":"swapFee","internalType":"uint256"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"}],"name":"getAmountOut","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"reserveIn","internalType":"uint256"},{"type":"uint256","name":"reserveOut","internalType":"uint256"},{"type":"uint256","name":"swapFee","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"getAmountsIn","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"getAmountsOut","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isOwner","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"amountB","internalType":"uint256"}],"name":"quote","inputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"reserveA","internalType":"uint256"},{"type":"uint256","name":"reserveB","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"amountB","internalType":"uint256"}],"name":"removeLiquidity","inputs":[{"type":"address","name":"tokenA","internalType":"address"},{"type":"address","name":"tokenB","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountAMin","internalType":"uint256"},{"type":"uint256","name":"amountBMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountToken","internalType":"uint256"},{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETH","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETHSupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountToken","internalType":"uint256"},{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETHWithPermit","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"bool","name":"approveMax","internalType":"bool"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"bool","name":"approveMax","internalType":"bool"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"amountB","internalType":"uint256"}],"name":"removeLiquidityWithPermit","inputs":[{"type":"address","name":"tokenA","internalType":"address"},{"type":"address","name":"tokenB","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountAMin","internalType":"uint256"},{"type":"uint256","name":"amountBMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"bool","name":"approveMax","internalType":"bool"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSwapFeeReward","inputs":[{"type":"address","name":"_swapFeeReward","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapETHForExactTokens","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapExactETHForTokens","inputs":[{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"swapExactETHForTokensSupportingFeeOnTransferTokens","inputs":[{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapExactTokensForETH","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapExactTokensForTokens","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"swapFeeReward","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapTokensForExactETH","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"uint256","name":"amountInMax","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapTokensForExactTokens","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"uint256","name":"amountInMax","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x60c06040523480156200001157600080fd5b5060405162005fd938038062005fd9833981810160405260408110156200003757600080fd5b508051602090910151600080546001600160a01b03191633178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001600160601b0319606092831b8116608052911b1660a05260805160601c60a05160601c615e09620001d0600039806101ee5280610fbe5280610ff9528061112152806113e4528061185f5280611a685280612093528061221752806122e752806123ee52806125a15280612636528061291352806129c25280612a975280612b9c5280612c845280612d055280613394528061374a52806137a052806137d452806138555280613a6f5280613c1f5280613cb4525080611213528061131152806114b752806114f052806116bc52806119515280611a465280611c3352806124d4528061267552806128115280612d445280613087528061331952806133425280613372528061354f528061377e5280613b555280613cf352806147fd52806148405280614e30528061516152806155b8528061569952806157195250615e096000f3fe6080604052600436106101d15760003560e01c80638da5cb5b116100f7578063c45a015511610095578063f2fde38b11610064578063f2fde38b14610ddf578063f305d71914610e1f578063fb3bdb4114610e72578063fbbeedf114610f0557610217565b8063c45a015514610c06578063d06ca61f14610c1b578063ded9382a14610cd2578063e8e3370014610d5257610217565b8063ad615dec116100d1578063ad615dec14610a73578063af2979eb14610aa9578063b6f9de9514610b09578063baa2abde14610b9c57610217565b80638da5cb5b14610a0b578063a3ddb30b14610a49578063ad5c464814610a5e57610217565b806352707d8c1161016f578063715018a61161013e578063715018a614610819578063791ac9471461082e5780637ff36ab5146108d35780638803dbee1461096657610217565b806352707d8c1461066a578063571fd012146106b85780635b0d5984146106f45780635c11d7951461077457610217565b80632195995c116101ab5780632195995c146104415780632f54bf6e146104cc57806338ed1739146105205780634a25d94a146105c557610217565b806302751cec1461021c57806318cbafe5146102955780631f00ca741461038a57610217565b36610217573373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461021557fe5b005b600080fd5b34801561022857600080fd5b5061027c600480360360c081101561023f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610f45565b6040805192835260208301919091528051918290030190f35b3480156102a157600080fd5b5061033a600480360360a08110156102b857600080fd5b8135916020810135918101906060810160408201356401000000008111156102df57600080fd5b8201836020820111156102f157600080fd5b8035906020019184602083028401116401000000008311171561031357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611098565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561037657818101518382015260200161035e565b505050509050019250505060405180910390f35b34801561039657600080fd5b5061033a600480360360408110156103ad57600080fd5b813591908101906040810160208201356401000000008111156103cf57600080fd5b8201836020820111156103e157600080fd5b8035906020019184602083028401116401000000008311171561040357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506114b0945050505050565b34801561044d57600080fd5b5061027c600480360361016081101561046557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff61010082013516906101208101359061014001356114e6565b3480156104d857600080fd5b5061050c600480360360208110156104ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611624565b604080519115158252519081900360200190f35b34801561052c57600080fd5b5061033a600480360360a081101561054357600080fd5b81359160208101359181019060608101604082013564010000000081111561056a57600080fd5b82018360208201111561057c57600080fd5b8035906020019184602083028401116401000000008311171561059e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611645565b3480156105d157600080fd5b5061033a600480360360a08110156105e857600080fd5b81359160208101359181019060608101604082013564010000000081111561060f57600080fd5b82018360208201111561062157600080fd5b8035906020019184602083028401116401000000008311171561064357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356117d6565b34801561067657600080fd5b506106a66004803603608081101561068d57600080fd5b5080359060208101359060408101359060600135611a19565b60408051918252519081900360200190f35b3480156106c457600080fd5b506106a6600480360360808110156106db57600080fd5b5080359060208101359060408101359060600135611a30565b34801561070057600080fd5b506106a6600480360361014081101561071857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135611a3e565b34801561078057600080fd5b50610215600480360360a081101561079757600080fd5b8135916020810135918101906060810160408201356401000000008111156107be57600080fd5b8201836020820111156107d057600080fd5b803590602001918460208302840111640100000000831117156107f257600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b90565b34801561082557600080fd5b50610215611f29565b34801561083a57600080fd5b50610215600480360360a081101561085157600080fd5b81359160208101359181019060608101604082013564010000000081111561087857600080fd5b82018360208201111561088a57600080fd5b803590602001918460208302840111640100000000831117156108ac57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561200c565b61033a600480360360808110156108e957600080fd5b8135919081019060408101602082013564010000000081111561090b57600080fd5b82018360208201111561091d57600080fd5b8035906020019184602083028401116401000000008311171561093f57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561237a565b34801561097257600080fd5b5061033a600480360360a081101561098957600080fd5b8135916020810135918101906060810160408201356401000000008111156109b057600080fd5b8201836020820111156109c257600080fd5b803590602001918460208302840111640100000000831117156109e457600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561279a565b348015610a1757600080fd5b50610a206128d9565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b348015610a5557600080fd5b50610a206128f5565b348015610a6a57600080fd5b50610a20612911565b348015610a7f57600080fd5b506106a660048036036060811015610a9657600080fd5b5080359060208101359060400135612935565b348015610ab557600080fd5b506106a6600480360360c0811015610acc57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a0013561294a565b61021560048036036080811015610b1f57600080fd5b81359190810190604081016020820135640100000000811115610b4157600080fd5b820183602082011115610b5357600080fd5b80359060200191846020830284011164010000000083111715610b7557600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612b2a565b348015610ba857600080fd5b5061027c600480360360e0811015610bbf57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c0013561300d565b348015610c1257600080fd5b50610a20613317565b348015610c2757600080fd5b5061033a60048036036040811015610c3e57600080fd5b81359190810190604081016020820135640100000000811115610c6057600080fd5b820183602082011115610c7257600080fd5b80359060200191846020830284011164010000000083111715610c9457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061333b945050505050565b348015610cde57600080fd5b5061027c6004803603610140811015610cf657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135613368565b348015610d5e57600080fd5b50610dc16004803603610100811015610d7657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e001356134c0565b60408051938452602084019290925282820152519081900360600190f35b348015610deb57600080fd5b5061021560048036036020811015610e0257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661364f565b610dc1600480360360c0811015610e3557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356136cf565b61033a60048036036080811015610e8857600080fd5b81359190810190604081016020820135640100000000811115610eaa57600080fd5b820183602082011115610ebc57600080fd5b80359060200191846020830284011164010000000083111715610ede57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356139fb565b348015610f1157600080fd5b5061021560048036036020811015610f2857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16613e4a565b6000808242811015610fb857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b610fe7897f00000000000000000000000000000000000000000000000000000000000000008a8a8a308a61300d565b9093509150610ff7898685613f05565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561106a57600080fd5b505af115801561107e573d6000803e3d6000fd5b5050505061108c85836140cc565b50965096945050505050565b6060814281101561110a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061116f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b61126c7f00000000000000000000000000000000000000000000000000000000000000008988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061420992505050565b9150868260018451038151811061127f57fe5b602002602001015110156112de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b6113a3868660008181106112ee57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336113897f00000000000000000000000000000000000000000000000000000000000000008a8a600081811061133d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061136757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166143a3565b8560008151811061139657fe5b602002602001015161448e565b6113e28287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525030925061465e915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d8360018551038151811061142e57fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561146c57600080fd5b505af1158015611480573d6000803e3d6000fd5b505050506114a5848360018551038151811061149857fe5b60200260200101516140cc565b509695505050505050565b60606114dd7f000000000000000000000000000000000000000000000000000000000000000084846149bb565b90505b92915050565b60008060006115167f00000000000000000000000000000000000000000000000000000000000000008f8f6143a3565b9050600087611525578c611547565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156115e357600080fd5b505af11580156115f7573d6000803e3d6000fd5b5050505061160a8f8f8f8f8f8f8f61300d565b809450819550505050509b509b9950505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161490565b606081428110156116b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6117157f00000000000000000000000000000000000000000000000000000000000000008988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061420992505050565b9150868260018451038151811061172857fe5b60200260200101511015611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b611797868660008181106112ee57fe5b6114a58287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061465e915050565b6060814281101561184857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106118ad57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6119aa7f0000000000000000000000000000000000000000000000000000000000000000898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506149bb92505050565b915086826000815181106119ba57fe5b602002602001015111156112de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d366026913960400191505060405180910390fd5b6000611a2785858585614b70565b95945050505050565b6000611a2785858585614ca5565b600080611a8c7f00000000000000000000000000000000000000000000000000000000000000008d7f00000000000000000000000000000000000000000000000000000000000000006143a3565b9050600086611a9b578b611abd565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015611b5957600080fd5b505af1158015611b6d573d6000803e3d6000fd5b50505050611b7f8d8d8d8d8d8d61294a565b9d9c50505050505050505050505050565b8042811015611c0057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b611c8f85856000818110611c1057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611c897f000000000000000000000000000000000000000000000000000000000000000089896000818110611c5f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061136757fe5b8a61448e565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611cbf57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d5857600080fd5b505afa158015611d6c573d6000803e3d6000fd5b505050506040513d6020811015611d8257600080fd5b50516040805160208881028281018201909352888252929350611dc4929091899189918291850190849080828437600092019190915250889250614dd9915050565b86611ec88288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611df757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e9057600080fd5b505afa158015611ea4573d6000803e3d6000fd5b505050506040513d6020811015611eba57600080fd5b50519063ffffffff6152bc16565b1015611f1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b5050505050505050565b611f3233611624565b611f9d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b804281101561207c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106120e157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461218057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b61219085856000818110611c1057fe5b6121ce858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614dd9915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016916370a0823191602480820192602092909190829003018186803b15801561225e57600080fd5b505afa158015612272573d6000803e3d6000fd5b505050506040513d602081101561228857600080fd5b50519050868110156122e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561235857600080fd5b505af115801561236c573d6000803e3d6000fd5b50505050611f1f84826140cc565b606081428110156123ec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168686600081811061243057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124cf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b61252d7f00000000000000000000000000000000000000000000000000000000000000003488888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061420992505050565b9150868260018451038151811061254057fe5b6020026020010151101561259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0836000815181106125e857fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561261b57600080fd5b505af115801561262f573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6126a17f000000000000000000000000000000000000000000000000000000000000000089896000818110611c5f57fe5b846000815181106126ae57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561271f57600080fd5b505af1158015612733573d6000803e3d6000fd5b505050506040513d602081101561274957600080fd5b505161275157fe5b6127908287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061465e915050565b5095945050505050565b6060814281101561280c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b61286a7f0000000000000000000000000000000000000000000000000000000000000000898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506149bb92505050565b9150868260008151811061287a57fe5b60200260200101511115611787576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d366026913960400191505060405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061294284848461532e565b949350505050565b600081428110156129bc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6129eb887f0000000000000000000000000000000000000000000000000000000000000000898989308961300d565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051919450612a9592508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b158015612a6457600080fd5b505afa158015612a78573d6000803e3d6000fd5b505050506040513d6020811015612a8e57600080fd5b5051613f05565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612b0857600080fd5b505af1158015612b1c573d6000803e3d6000fd5b505050506114a584836140cc565b8042811015612b9a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1685856000818110612bde57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b60003490507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612cea57600080fd5b505af1158015612cfe573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612d707f000000000000000000000000000000000000000000000000000000000000000089896000818110611c5f57fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612dda57600080fd5b505af1158015612dee573d6000803e3d6000fd5b505050506040513d6020811015612e0457600080fd5b5051612e0c57fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612e3c57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612ed557600080fd5b505afa158015612ee9573d6000803e3d6000fd5b505050506040513d6020811015612eff57600080fd5b50516040805160208981028281018201909352898252929350612f419290918a918a918291850190849080828437600092019190915250899250614dd9915050565b87611ec88289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612f7457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e9057600080fd5b600080824281101561308057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b60006130ad7f00000000000000000000000000000000000000000000000000000000000000008c8c6143a3565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b15801561312e57600080fd5b505af1158015613142573d6000803e3d6000fd5b505050506040513d602081101561315857600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b1580156131cb57600080fd5b505af11580156131df573d6000803e3d6000fd5b505050506040513d60408110156131f557600080fd5b5080516020909101519092509050600061320f8e8e61540e565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff161461324c57818361324f565b82825b90975095508a8710156132ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bed6025913960400191505060405180910390fd5b89861015613306576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bc86025913960400191505060405180910390fd5b505050505097509795505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606114dd7f00000000000000000000000000000000000000000000000000000000000000008484614209565b60008060006133b87f00000000000000000000000000000000000000000000000000000000000000008e7f00000000000000000000000000000000000000000000000000000000000000006143a3565b90506000876133c7578c6133e9565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561348557600080fd5b505af1158015613499573d6000803e3d6000fd5b505050506134ab8e8e8e8e8e8e610f45565b909f909e509c50505050505050505050505050565b6000806000834281101561353557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6135438c8c8c8c8c8c615561565b909450925060006135757f00000000000000000000000000000000000000000000000000000000000000008e8e6143a3565b90506135838d33838861448e565b61358f8c33838761448e565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561360e57600080fd5b505af1158015613622573d6000803e3d6000fd5b505050506040513d602081101561363857600080fd5b5051949d939c50939a509198505050505050505050565b61365833611624565b6136c357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6136cc81615862565b50565b6000806000834281101561374457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6137728a7f00000000000000000000000000000000000000000000000000000000000000008b348c8c615561565b909450925060006137c47f00000000000000000000000000000000000000000000000000000000000000008c7f00000000000000000000000000000000000000000000000000000000000000006143a3565b90506137d28b33838861448e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561383a57600080fd5b505af115801561384e573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156138fa57600080fd5b505af115801561390e573d6000803e3d6000fd5b505050506040513d602081101561392457600080fd5b505161392c57fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156139ab57600080fd5b505af11580156139bf573d6000803e3d6000fd5b505050506040513d60208110156139d557600080fd5b50519250348410156139ed576139ed338534036140cc565b505096509650969350505050565b60608142811015613a6d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1686866000818110613ab157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613b5057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b613bae7f0000000000000000000000000000000000000000000000000000000000000000888888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506149bb92505050565b91503482600081518110613bbe57fe5b60200260200101511115613c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d366026913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db083600081518110613c6657fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b158015613c9957600080fd5b505af1158015613cad573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613d1f7f000000000000000000000000000000000000000000000000000000000000000089896000818110611c5f57fe5b84600081518110613d2c57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613d9d57600080fd5b505af1158015613db1573d6000803e3d6000fd5b505050506040513d6020811015613dc757600080fd5b5051613dcf57fe5b613e0e8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061465e915050565b81600081518110613e1b57fe5b6020026020010151341115612790576127903383600081518110613e3b57fe5b602002602001015134036140cc565b613e5333611624565b613ebe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b60208310613fdb57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613f9e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461403d576040519150601f19603f3d011682016040523d82523d6000602084013e614042565b606091505b5091509150818015614070575080511580614070575080806020019051602081101561406d57600080fd5b50515b6140c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615d85602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b6020831061414357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614106565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146141a5576040519150601f19603f3d011682016040523d82523d6000602084013e6141aa565b606091505b5050905080614204576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180615cda6034913960400191505060405180910390fd5b505050565b606060028251101561427c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4b75737761704c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561429457600080fd5b506040519080825280602002602001820160405280156142be578160200160208202803683370190505b50905082816000815181106142cf57fe5b60200260200101818152505060005b600183510381101561439b57600080614321878685815181106142fd57fe5b602002602001015187866001018151811061431457fe5b602002602001015161595b565b9150915061437784848151811061433457fe5b602002602001015183836143728b8a898151811061434e57fe5b60200260200101518b8a6001018151811061436557fe5b6020026020010151615a43565b614b70565b84846001018151811061438657fe5b602090810291909101015250506001016142de565b509392505050565b60008060006143b2858561540e565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f5d71f8561d80ed979ca73d5b742278f4719baab5f0dd78b6ca91bec31f0e2dbc609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b6020831061456c57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161452f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146145ce576040519150601f19603f3d011682016040523d82523d6000602084013e6145d3565b606091505b509150915081801561460157508051158061460157508080602001905160208110156145fe57600080fd5b50515b614656576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615c5d6031913960400191505060405180910390fd5b505050505050565b60005b60018351038110156149b55760008084838151811061467c57fe5b602002602001015185846001018151811061469357fe5b60200260200101519150915060006146ab838361540e565b50905060008785600101815181106146bf57fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146147075782600061470b565b6000835b600154919350915073ffffffffffffffffffffffffffffffffffffffff16156147e557600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff89811660248301528881166044830152606482018790529151919092169163a9678a189160848083019260209291908290030181600087803b1580156147b857600080fd5b505af11580156147cc573d6000803e3d6000fd5b505050506040513d60208110156147e257600080fd5b50505b600060028a510388106147f85788614839565b6148397f0000000000000000000000000000000000000000000000000000000000000000878c8b6002018151811061482c57fe5b60200260200101516143a3565b90506148667f000000000000000000000000000000000000000000000000000000000000000088886143a3565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f1916602001820160405280156148b0576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561493b578181015183820152602001614923565b50505050905090810190601f1680156149685780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561498a57600080fd5b505af115801561499e573d6000803e3d6000fd5b505060019099019850614661975050505050505050565b50505050565b6060600282511015614a2e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4b75737761704c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015614a4657600080fd5b50604051908082528060200260200182016040528015614a70578160200160208202803683370190505b5090508281600183510381518110614a8457fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b801561439b57600080614ae487866001860381518110614ad057fe5b602002602001015187868151811061431457fe5b91509150614b2d848481518110614af757fe5b60200260200101518383614b288b8a60018a0381518110614b1457fe5b60200260200101518b8a8151811061436557fe5b614ca5565b846001850381518110614b3c57fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614ab4565b6000808511614bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d0e6028913960400191505060405180910390fd5b600084118015614bda5750600083115b614c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c126025913960400191505060405180910390fd5b6000614c53614c466103e88563ffffffff6152bc16565b879063ffffffff615acf16565b90506000614c67828663ffffffff615acf16565b90506000614c8d83614c81896103e863ffffffff615acf16565b9063ffffffff615b5516565b9050808281614c9857fe5b0498975050505050505050565b6000808511614cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615d5c6029913960400191505060405180910390fd5b600084118015614d0f5750600083115b614d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c126025913960400191505060405180910390fd5b6000614d886103e8614d7c878963ffffffff615acf16565b9063ffffffff615acf16565b90506000614db1614da16103e88663ffffffff6152bc16565b614d7c878a63ffffffff6152bc16565b9050614dce6001828481614dc157fe5b049063ffffffff615b5516565b979650505050505050565b60005b600183510381101561420457600080848381518110614df757fe5b6020026020010151858460010181518110614e0e57fe5b6020026020010151915091506000614e26838361540e565b5090506000614e567f000000000000000000000000000000000000000000000000000000000000000085856143a3565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015614ea457600080fd5b505afa158015614eb8573d6000803e3d6000fd5b505050506040513d6060811015614ece57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060008073ffffffffffffffffffffffffffffffffffffffff8a811690891614614f18578284614f1b565b83835b91509150614fa0828b73ffffffffffffffffffffffffffffffffffffffff166370a082318a6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e9057600080fd5b95506150258683838a73ffffffffffffffffffffffffffffffffffffffff166354cf2aeb6040518163ffffffff1660e01b815260040160206040518083038186803b158015614fee57600080fd5b505afa158015615002573d6000803e3d6000fd5b505050506040513d602081101561501857600080fd5b505163ffffffff16614b70565b60015490955073ffffffffffffffffffffffffffffffffffffffff161593506151039250505057600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff89811660248301528881166044830152606482018590529151919092169163a9678a189160848083019260209291908290030181600087803b1580156150d657600080fd5b505af11580156150ea573d6000803e3d6000fd5b505050506040513d602081101561510057600080fd5b50505b6000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461514157826000615145565b6000835b91509150600060028c51038a1061515c578a615190565b6151907f0000000000000000000000000000000000000000000000000000000000000000898e8d6002018151811061482c57fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b83811015615240578181015183820152602001615228565b50505050905090810190601f16801561526d5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561528f57600080fd5b505af11580156152a3573d6000803e3d6000fd5b50506001909b019a50614ddc9950505050505050505050565b808203828111156114e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6000808411615388576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615db26022913960400191505060405180910390fd5b6000831180156153985750600082115b6153ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c126025913960400191505060405180910390fd5b826153fe858463ffffffff615acf16565b8161540557fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415615496576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c8e6022913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16106154d05782846154d3565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff821661555a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4b75737761704c6962726172793a205a45524f5f414444524553530000000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000000000000000000000000000000000000000000009092169163e6a4390591604480820192602092909190829003018186803b15801561560157600080fd5b505afa158015615615573d6000803e3d6000fd5b505050506040513d602081101561562b57600080fd5b505173ffffffffffffffffffffffffffffffffffffffff16141561571157604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163c9c65396916044808201926020929091908290030181600087803b1580156156e457600080fd5b505af11580156156f8573d6000803e3d6000fd5b505050506040513d602081101561570e57600080fd5b50505b60008061573f7f00000000000000000000000000000000000000000000000000000000000000008b8b61595b565b91509150816000148015615751575080155b1561576157879350869250615855565b600061576e89848461532e565b90508781116157db57858110156157d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bc86025913960400191505060405180910390fd5b889450925082615853565b60006157e889848661532e565b9050898111156157f457fe5b8781101561584d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bed6025913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b73ffffffffffffffffffffffffffffffffffffffff81166158ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c376026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600080600061596a858561540e565b50905060008061597b8888886143a3565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156159c057600080fd5b505afa1580156159d4573d6000803e3d6000fd5b505050506040513d60608110156159ea57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff87811690841614615a31578082615a34565b81815b90999098509650505050505050565b6000615a508484846143a3565b73ffffffffffffffffffffffffffffffffffffffff166354cf2aeb6040518163ffffffff1660e01b815260040160206040518083038186803b158015615a9557600080fd5b505afa158015615aa9573d6000803e3d6000fd5b505050506040513d6020811015615abf57600080fd5b505163ffffffff16949350505050565b6000811580615aea57505080820282828281615ae757fe5b04145b6114e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b808201828110156114e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe4b75737761705632526f757465723a20494e53554646494349454e545f425f414d4f554e544b75737761705632526f757465723a20494e53554646494349454e545f415f414d4f554e544b75737761704c6962726172793a20494e53554646494349454e545f4c49515549444954594f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65644b75737761704c6962726172793a204944454e544943414c5f4144445245535345534b75737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65644b75737761704c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e544b75737761705632526f757465723a204558434553534956455f494e5055545f414d4f554e544b75737761704c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c65644b75737761704c6962726172793a20494e53554646494349454e545f414d4f554e54a264697066735822122087008f898b5a5c0e73b3db06f6dc4e95d6aa35810d58fa84443fa5e67f132f4764736f6c63430006060033000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c07521

Deployed ByteCode

0x6080604052600436106101d15760003560e01c80638da5cb5b116100f7578063c45a015511610095578063f2fde38b11610064578063f2fde38b14610ddf578063f305d71914610e1f578063fb3bdb4114610e72578063fbbeedf114610f0557610217565b8063c45a015514610c06578063d06ca61f14610c1b578063ded9382a14610cd2578063e8e3370014610d5257610217565b8063ad615dec116100d1578063ad615dec14610a73578063af2979eb14610aa9578063b6f9de9514610b09578063baa2abde14610b9c57610217565b80638da5cb5b14610a0b578063a3ddb30b14610a49578063ad5c464814610a5e57610217565b806352707d8c1161016f578063715018a61161013e578063715018a614610819578063791ac9471461082e5780637ff36ab5146108d35780638803dbee1461096657610217565b806352707d8c1461066a578063571fd012146106b85780635b0d5984146106f45780635c11d7951461077457610217565b80632195995c116101ab5780632195995c146104415780632f54bf6e146104cc57806338ed1739146105205780634a25d94a146105c557610217565b806302751cec1461021c57806318cbafe5146102955780631f00ca741461038a57610217565b36610217573373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c07521161461021557fe5b005b600080fd5b34801561022857600080fd5b5061027c600480360360c081101561023f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610f45565b6040805192835260208301919091528051918290030190f35b3480156102a157600080fd5b5061033a600480360360a08110156102b857600080fd5b8135916020810135918101906060810160408201356401000000008111156102df57600080fd5b8201836020820111156102f157600080fd5b8035906020019184602083028401116401000000008311171561031357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611098565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561037657818101518382015260200161035e565b505050509050019250505060405180910390f35b34801561039657600080fd5b5061033a600480360360408110156103ad57600080fd5b813591908101906040810160208201356401000000008111156103cf57600080fd5b8201836020820111156103e157600080fd5b8035906020019184602083028401116401000000008311171561040357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506114b0945050505050565b34801561044d57600080fd5b5061027c600480360361016081101561046557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff61010082013516906101208101359061014001356114e6565b3480156104d857600080fd5b5061050c600480360360208110156104ef57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611624565b604080519115158252519081900360200190f35b34801561052c57600080fd5b5061033a600480360360a081101561054357600080fd5b81359160208101359181019060608101604082013564010000000081111561056a57600080fd5b82018360208201111561057c57600080fd5b8035906020019184602083028401116401000000008311171561059e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611645565b3480156105d157600080fd5b5061033a600480360360a08110156105e857600080fd5b81359160208101359181019060608101604082013564010000000081111561060f57600080fd5b82018360208201111561062157600080fd5b8035906020019184602083028401116401000000008311171561064357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356117d6565b34801561067657600080fd5b506106a66004803603608081101561068d57600080fd5b5080359060208101359060408101359060600135611a19565b60408051918252519081900360200190f35b3480156106c457600080fd5b506106a6600480360360808110156106db57600080fd5b5080359060208101359060408101359060600135611a30565b34801561070057600080fd5b506106a6600480360361014081101561071857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135611a3e565b34801561078057600080fd5b50610215600480360360a081101561079757600080fd5b8135916020810135918101906060810160408201356401000000008111156107be57600080fd5b8201836020820111156107d057600080fd5b803590602001918460208302840111640100000000831117156107f257600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b90565b34801561082557600080fd5b50610215611f29565b34801561083a57600080fd5b50610215600480360360a081101561085157600080fd5b81359160208101359181019060608101604082013564010000000081111561087857600080fd5b82018360208201111561088a57600080fd5b803590602001918460208302840111640100000000831117156108ac57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561200c565b61033a600480360360808110156108e957600080fd5b8135919081019060408101602082013564010000000081111561090b57600080fd5b82018360208201111561091d57600080fd5b8035906020019184602083028401116401000000008311171561093f57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561237a565b34801561097257600080fd5b5061033a600480360360a081101561098957600080fd5b8135916020810135918101906060810160408201356401000000008111156109b057600080fd5b8201836020820111156109c257600080fd5b803590602001918460208302840111640100000000831117156109e457600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561279a565b348015610a1757600080fd5b50610a206128d9565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b348015610a5557600080fd5b50610a206128f5565b348015610a6a57600080fd5b50610a20612911565b348015610a7f57600080fd5b506106a660048036036060811015610a9657600080fd5b5080359060208101359060400135612935565b348015610ab557600080fd5b506106a6600480360360c0811015610acc57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a0013561294a565b61021560048036036080811015610b1f57600080fd5b81359190810190604081016020820135640100000000811115610b4157600080fd5b820183602082011115610b5357600080fd5b80359060200191846020830284011164010000000083111715610b7557600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612b2a565b348015610ba857600080fd5b5061027c600480360360e0811015610bbf57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c0013561300d565b348015610c1257600080fd5b50610a20613317565b348015610c2757600080fd5b5061033a60048036036040811015610c3e57600080fd5b81359190810190604081016020820135640100000000811115610c6057600080fd5b820183602082011115610c7257600080fd5b80359060200191846020830284011164010000000083111715610c9457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061333b945050505050565b348015610cde57600080fd5b5061027c6004803603610140811015610cf657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135613368565b348015610d5e57600080fd5b50610dc16004803603610100811015610d7657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e001356134c0565b60408051938452602084019290925282820152519081900360600190f35b348015610deb57600080fd5b5061021560048036036020811015610e0257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661364f565b610dc1600480360360c0811015610e3557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356136cf565b61033a60048036036080811015610e8857600080fd5b81359190810190604081016020820135640100000000811115610eaa57600080fd5b820183602082011115610ebc57600080fd5b80359060200191846020830284011164010000000083111715610ede57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356139fb565b348015610f1157600080fd5b5061021560048036036020811015610f2857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16613e4a565b6000808242811015610fb857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b610fe7897f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075218a8a8a308a61300d565b9093509150610ff7898685613f05565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561106a57600080fd5b505af115801561107e573d6000803e3d6000fd5b5050505061108c85836140cc565b50965096945050505050565b6060814281101561110a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075211686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061116f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b61126c7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061420992505050565b9150868260018451038151811061127f57fe5b602002602001015110156112de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b6113a3868660008181106112ee57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336113897f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8a8a600081811061133d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061136757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166143a3565b8560008151811061139657fe5b602002602001015161448e565b6113e28287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525030925061465e915050565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d8360018551038151811061142e57fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561146c57600080fd5b505af1158015611480573d6000803e3d6000fd5b505050506114a5848360018551038151811061149857fe5b60200260200101516140cc565b509695505050505050565b60606114dd7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae84846149bb565b90505b92915050565b60008060006115167f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8f8f6143a3565b9050600087611525578c611547565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156115e357600080fd5b505af11580156115f7573d6000803e3d6000fd5b5050505061160a8f8f8f8f8f8f8f61300d565b809450819550505050509b509b9950505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161490565b606081428110156116b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6117157f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061420992505050565b9150868260018451038151811061172857fe5b60200260200101511015611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b611797868660008181106112ee57fe5b6114a58287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061465e915050565b6060814281101561184857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075211686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106118ad57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6119aa7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506149bb92505050565b915086826000815181106119ba57fe5b602002602001015111156112de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d366026913960400191505060405180910390fd5b6000611a2785858585614b70565b95945050505050565b6000611a2785858585614ca5565b600080611a8c7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8d7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075216143a3565b9050600086611a9b578b611abd565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015611b5957600080fd5b505af1158015611b6d573d6000803e3d6000fd5b50505050611b7f8d8d8d8d8d8d61294a565b9d9c50505050505050505050505050565b8042811015611c0057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b611c8f85856000818110611c1057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611c897f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae89896000818110611c5f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061136757fe5b8a61448e565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611cbf57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d5857600080fd5b505afa158015611d6c573d6000803e3d6000fd5b505050506040513d6020811015611d8257600080fd5b50516040805160208881028281018201909352888252929350611dc4929091899189918291850190849080828437600092019190915250889250614dd9915050565b86611ec88288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611df757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e9057600080fd5b505afa158015611ea4573d6000803e3d6000fd5b505050506040513d6020811015611eba57600080fd5b50519063ffffffff6152bc16565b1015611f1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b5050505050505050565b611f3233611624565b611f9d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b804281101561207c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075211685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106120e157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461218057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b61219085856000818110611c1057fe5b6121ce858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614dd9915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752116916370a0823191602480820192602092909190829003018186803b15801561225e57600080fd5b505afa158015612272573d6000803e3d6000fd5b505050506040513d602081101561228857600080fd5b50519050868110156122e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561235857600080fd5b505af115801561236c573d6000803e3d6000fd5b50505050611f1f84826140cc565b606081428110156123ec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff168686600081811061243057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124cf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b61252d7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae3488888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061420992505050565b9150868260018451038151811061254057fe5b6020026020010151101561259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cb0602a913960400191505060405180910390fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db0836000815181106125e857fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561261b57600080fd5b505af115801561262f573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6126a17f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae89896000818110611c5f57fe5b846000815181106126ae57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561271f57600080fd5b505af1158015612733573d6000803e3d6000fd5b505050506040513d602081101561274957600080fd5b505161275157fe5b6127908287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061465e915050565b5095945050505050565b6060814281101561280c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b61286a7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506149bb92505050565b9150868260008151811061287a57fe5b60200260200101511115611787576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d366026913960400191505060405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752181565b600061294284848461532e565b949350505050565b600081428110156129bc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6129eb887f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c07521898989308961300d565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051919450612a9592508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b158015612a6457600080fd5b505afa158015612a78573d6000803e3d6000fd5b505050506040513d6020811015612a8e57600080fd5b5051613f05565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612b0857600080fd5b505af1158015612b1c573d6000803e3d6000fd5b505050506114a584836140cc565b8042811015612b9a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1685856000818110612bde57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b60003490507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612cea57600080fd5b505af1158015612cfe573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612d707f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae89896000818110611c5f57fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612dda57600080fd5b505af1158015612dee573d6000803e3d6000fd5b505050506040513d6020811015612e0457600080fd5b5051612e0c57fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612e3c57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612ed557600080fd5b505afa158015612ee9573d6000803e3d6000fd5b505050506040513d6020811015612eff57600080fd5b50516040805160208981028281018201909352898252929350612f419290918a918a918291850190849080828437600092019190915250899250614dd9915050565b87611ec88289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612f7457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e9057600080fd5b600080824281101561308057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b60006130ad7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8c8c6143a3565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b15801561312e57600080fd5b505af1158015613142573d6000803e3d6000fd5b505050506040513d602081101561315857600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b1580156131cb57600080fd5b505af11580156131df573d6000803e3d6000fd5b505050506040513d60408110156131f557600080fd5b5080516020909101519092509050600061320f8e8e61540e565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff161461324c57818361324f565b82825b90975095508a8710156132ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bed6025913960400191505060405180910390fd5b89861015613306576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bc86025913960400191505060405180910390fd5b505050505097509795505050505050565b7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae81565b60606114dd7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8484614209565b60008060006133b87f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8e7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075216143a3565b90506000876133c7578c6133e9565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561348557600080fd5b505af1158015613499573d6000803e3d6000fd5b505050506134ab8e8e8e8e8e8e610f45565b909f909e509c50505050505050505050505050565b6000806000834281101561353557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6135438c8c8c8c8c8c615561565b909450925060006135757f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8e8e6143a3565b90506135838d33838861448e565b61358f8c33838761448e565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561360e57600080fd5b505af1158015613622573d6000803e3d6000fd5b505050506040513d602081101561363857600080fd5b5051949d939c50939a509198505050505050505050565b61365833611624565b6136c357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6136cc81615862565b50565b6000806000834281101561374457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6137728a7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075218b348c8c615561565b909450925060006137c47f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8c7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075216143a3565b90506137d28b33838861448e565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561383a57600080fd5b505af115801561384e573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156138fa57600080fd5b505af115801561390e573d6000803e3d6000fd5b505050506040513d602081101561392457600080fd5b505161392c57fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156139ab57600080fd5b505af11580156139bf573d6000803e3d6000fd5b505050506040513d60208110156139d557600080fd5b50519250348410156139ed576139ed338534036140cc565b505096509650969350505050565b60608142811015613a6d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4b75737761705632526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1686866000818110613ab157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613b5057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4b75737761705632526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b613bae7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae888888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506149bb92505050565b91503482600081518110613bbe57fe5b60200260200101511115613c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d366026913960400191505060405180910390fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db083600081518110613c6657fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b158015613c9957600080fd5b505af1158015613cad573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613d1f7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae89896000818110611c5f57fe5b84600081518110613d2c57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613d9d57600080fd5b505af1158015613db1573d6000803e3d6000fd5b505050506040513d6020811015613dc757600080fd5b5051613dcf57fe5b613e0e8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061465e915050565b81600081518110613e1b57fe5b6020026020010151341115612790576127903383600081518110613e3b57fe5b602002602001015134036140cc565b613e5333611624565b613ebe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b60208310613fdb57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613f9e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461403d576040519150601f19603f3d011682016040523d82523d6000602084013e614042565b606091505b5091509150818015614070575080511580614070575080806020019051602081101561406d57600080fd5b50515b6140c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615d85602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b6020831061414357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614106565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146141a5576040519150601f19603f3d011682016040523d82523d6000602084013e6141aa565b606091505b5050905080614204576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180615cda6034913960400191505060405180910390fd5b505050565b606060028251101561427c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4b75737761704c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561429457600080fd5b506040519080825280602002602001820160405280156142be578160200160208202803683370190505b50905082816000815181106142cf57fe5b60200260200101818152505060005b600183510381101561439b57600080614321878685815181106142fd57fe5b602002602001015187866001018151811061431457fe5b602002602001015161595b565b9150915061437784848151811061433457fe5b602002602001015183836143728b8a898151811061434e57fe5b60200260200101518b8a6001018151811061436557fe5b6020026020010151615a43565b614b70565b84846001018151811061438657fe5b602090810291909101015250506001016142de565b509392505050565b60008060006143b2858561540e565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f5d71f8561d80ed979ca73d5b742278f4719baab5f0dd78b6ca91bec31f0e2dbc609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b6020831061456c57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161452f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146145ce576040519150601f19603f3d011682016040523d82523d6000602084013e6145d3565b606091505b509150915081801561460157508051158061460157508080602001905160208110156145fe57600080fd5b50515b614656576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615c5d6031913960400191505060405180910390fd5b505050505050565b60005b60018351038110156149b55760008084838151811061467c57fe5b602002602001015185846001018151811061469357fe5b60200260200101519150915060006146ab838361540e565b50905060008785600101815181106146bf57fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146147075782600061470b565b6000835b600154919350915073ffffffffffffffffffffffffffffffffffffffff16156147e557600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff89811660248301528881166044830152606482018790529151919092169163a9678a189160848083019260209291908290030181600087803b1580156147b857600080fd5b505af11580156147cc573d6000803e3d6000fd5b505050506040513d60208110156147e257600080fd5b50505b600060028a510388106147f85788614839565b6148397f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae878c8b6002018151811061482c57fe5b60200260200101516143a3565b90506148667f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae88886143a3565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f1916602001820160405280156148b0576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561493b578181015183820152602001614923565b50505050905090810190601f1680156149685780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561498a57600080fd5b505af115801561499e573d6000803e3d6000fd5b505060019099019850614661975050505050505050565b50505050565b6060600282511015614a2e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4b75737761704c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015614a4657600080fd5b50604051908082528060200260200182016040528015614a70578160200160208202803683370190505b5090508281600183510381518110614a8457fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b801561439b57600080614ae487866001860381518110614ad057fe5b602002602001015187868151811061431457fe5b91509150614b2d848481518110614af757fe5b60200260200101518383614b288b8a60018a0381518110614b1457fe5b60200260200101518b8a8151811061436557fe5b614ca5565b846001850381518110614b3c57fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614ab4565b6000808511614bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d0e6028913960400191505060405180910390fd5b600084118015614bda5750600083115b614c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c126025913960400191505060405180910390fd5b6000614c53614c466103e88563ffffffff6152bc16565b879063ffffffff615acf16565b90506000614c67828663ffffffff615acf16565b90506000614c8d83614c81896103e863ffffffff615acf16565b9063ffffffff615b5516565b9050808281614c9857fe5b0498975050505050505050565b6000808511614cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615d5c6029913960400191505060405180910390fd5b600084118015614d0f5750600083115b614d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c126025913960400191505060405180910390fd5b6000614d886103e8614d7c878963ffffffff615acf16565b9063ffffffff615acf16565b90506000614db1614da16103e88663ffffffff6152bc16565b614d7c878a63ffffffff6152bc16565b9050614dce6001828481614dc157fe5b049063ffffffff615b5516565b979650505050505050565b60005b600183510381101561420457600080848381518110614df757fe5b6020026020010151858460010181518110614e0e57fe5b6020026020010151915091506000614e26838361540e565b5090506000614e567f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae85856143a3565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015614ea457600080fd5b505afa158015614eb8573d6000803e3d6000fd5b505050506040513d6060811015614ece57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060008073ffffffffffffffffffffffffffffffffffffffff8a811690891614614f18578284614f1b565b83835b91509150614fa0828b73ffffffffffffffffffffffffffffffffffffffff166370a082318a6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611e9057600080fd5b95506150258683838a73ffffffffffffffffffffffffffffffffffffffff166354cf2aeb6040518163ffffffff1660e01b815260040160206040518083038186803b158015614fee57600080fd5b505afa158015615002573d6000803e3d6000fd5b505050506040513d602081101561501857600080fd5b505163ffffffff16614b70565b60015490955073ffffffffffffffffffffffffffffffffffffffff161593506151039250505057600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff89811660248301528881166044830152606482018590529151919092169163a9678a189160848083019260209291908290030181600087803b1580156150d657600080fd5b505af11580156150ea573d6000803e3d6000fd5b505050506040513d602081101561510057600080fd5b50505b6000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461514157826000615145565b6000835b91509150600060028c51038a1061515c578a615190565b6151907f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae898e8d6002018151811061482c57fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b83811015615240578181015183820152602001615228565b50505050905090810190601f16801561526d5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561528f57600080fd5b505af11580156152a3573d6000803e3d6000fd5b50506001909b019a50614ddc9950505050505050505050565b808203828111156114e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6000808411615388576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615db26022913960400191505060405180910390fd5b6000831180156153985750600082115b6153ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615c126025913960400191505060405180910390fd5b826153fe858463ffffffff615acf16565b8161540557fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415615496576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c8e6022913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16106154d05782846154d3565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff821661555a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4b75737761704c6962726172793a205a45524f5f414444524553530000000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae9092169163e6a4390591604480820192602092909190829003018186803b15801561560157600080fd5b505afa158015615615573d6000803e3d6000fd5b505050506040513d602081101561562b57600080fd5b505173ffffffffffffffffffffffffffffffffffffffff16141561571157604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae9092169163c9c65396916044808201926020929091908290030181600087803b1580156156e457600080fd5b505af11580156156f8573d6000803e3d6000fd5b505050506040513d602081101561570e57600080fd5b50505b60008061573f7f000000000000000000000000ae46cbbcdfba3be0f02f463ec5486ebb4e2e65ae8b8b61595b565b91509150816000148015615751575080155b1561576157879350869250615855565b600061576e89848461532e565b90508781116157db57858110156157d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bc86025913960400191505060405180910390fd5b889450925082615853565b60006157e889848661532e565b9050898111156157f457fe5b8781101561584d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615bed6025913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b73ffffffffffffffffffffffffffffffffffffffff81166158ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c376026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600080600061596a858561540e565b50905060008061597b8888886143a3565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156159c057600080fd5b505afa1580156159d4573d6000803e3d6000fd5b505050506040513d60608110156159ea57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff87811690841614615a31578082615a34565b81815b90999098509650505050505050565b6000615a508484846143a3565b73ffffffffffffffffffffffffffffffffffffffff166354cf2aeb6040518163ffffffff1660e01b815260040160206040518083038186803b158015615a9557600080fd5b505afa158015615aa9573d6000803e3d6000fd5b505050506040513d6020811015615abf57600080fd5b505163ffffffff16949350505050565b6000811580615aea57505080820282828281615ae757fe5b04145b6114e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b808201828110156114e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe4b75737761705632526f757465723a20494e53554646494349454e545f425f414d4f554e544b75737761705632526f757465723a20494e53554646494349454e545f415f414d4f554e544b75737761704c6962726172793a20494e53554646494349454e545f4c49515549444954594f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65644b75737761704c6962726172793a204944454e544943414c5f4144445245535345534b75737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65644b75737761704c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e544b75737761705632526f757465723a204558434553534956455f494e5055545f414d4f554e544b75737761704c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c65644b75737761704c6962726172793a20494e53554646494349454e545f414d4f554e54a264697066735822122087008f898b5a5c0e73b3db06f6dc4e95d6aa35810d58fa84443fa5e67f132f4764736f6c63430006060033