Contract Address Details

0xA4196322aA900ACc92cD5Cd978aB47e77EfA07eb

Contract Name
StepExRouter
Creator
0x6d0e58–605efb at 0xa81ede–959006
Balance
0 FITFI
Tokens
Fetching tokens...
Transactions
324,727 Transactions
Transfers
138,061 Transfers
Gas Used
40,503,636,315
Last Balance Update
15564763
Contract name:
StepExRouter




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




Optimization runs
1000000000
EVM Version
default




Verified at
2022-08-26T17:34:45.290982Z

Constructor Arguments

000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a5000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b6

Arg [0] (address) : 0xf62b74e4a7ae8d27cd983a54a9d24a89345413a5
Arg [1] (address) : 0xb58a9d5920af6ac1a9522b0b10f55df16686d1b6

              

Contract source code

// StepEx Router

pragma solidity =0.6.6;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

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');
    }
}
            
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}
            
pragma solidity >=0.6.2;

interface IStepExRouter01 {
    function factory() external pure returns (address);
    function WFITFI() 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 addLiquidityFITFI(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountFITFI, 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 removeLiquidityFITFI(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountFITFI);
    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 removeLiquidityFITFIWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountFITFI);
    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 swapExactFITFIForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactFITFI(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForFITFI(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapFITFIForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

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

interface IWFITFI {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}
            
pragma solidity >=0.5.0;

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);
}
            
pragma solidity >=0.5.0;

////import "./SafeMath.sol";

library StepExLibrary {
    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, 'StepExLibrary: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'StepExLibrary: 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'1dc82a8476761d56765924abb785cdb9a39a9ab2abb75254b3514c7688f670c9' // init code hash
            ))));
    }

    // 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,) = IUniswapV2Pair(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, 'StepExLibrary: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'StepExLibrary: 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) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'StepExLibrary: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'StepExLibrary: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(997);
        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) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'StepExLibrary: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'StepExLibrary: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(997);
        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, 'StepExLibrary: 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);
        }
    }

    // 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, 'StepExLibrary: 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);
        }
    }
}
            
pragma solidity >=0.6.2;

////import './IStepExRouter01.sol';

interface IStepExRouter02 is IStepExRouter01 {
    function removeLiquidityFITFISupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline
    ) external returns (uint amountFITFI);
    function removeLiquidityFITFIWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountFITFI);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactFITFIForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForFITFISupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: GPL-3.0-or-later

pragma solidity >=0.6.0;

// helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false
library TransferHelper {
    function safeApprove(
        address token,
        address to,
        uint256 value
    ) internal {
        // bytes4(keccak256(bytes('approve(address,uint256)')));
        (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 {
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (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 {
        // bytes4(keccak256(bytes('transferFrom(address,address,uint256)')));
        (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');
    }
}
            
pragma solidity >=0.5.0;

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

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

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

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

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

pragma solidity =0.6.6;

////import './interfaces/IStepExRouter02.sol';
////import './libraries/StepExLibrary.sol';
////import './libraries/SafeMath.sol';
////import './interfaces/IERC20.sol';
////import './interfaces/IWFITFI.sol';

contract StepExRouter is IStepExRouter02 {
    using SafeMath for uint;

    address public immutable override factory;
    address public immutable override WFITFI;

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

    constructor(address _factory, address _WFITFI) public {
        factory = _factory;
        WFITFI = _WFITFI;
    }

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

    // **** 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 (IUniswapV2Factory(factory).getPair(tokenA, tokenB) == address(0)) {
            IUniswapV2Factory(factory).createPair(tokenA, tokenB);
        }
        (uint reserveA, uint reserveB) = StepExLibrary.getReserves(factory, tokenA, tokenB);
        if (reserveA == 0 && reserveB == 0) {
            (amountA, amountB) = (amountADesired, amountBDesired);
        } else {
            uint amountBOptimal = StepExLibrary.quote(amountADesired, reserveA, reserveB);
            if (amountBOptimal <= amountBDesired) {
                require(amountBOptimal >= amountBMin, 'StepExRouter: INSUFFICIENT_B_AMOUNT');
                (amountA, amountB) = (amountADesired, amountBOptimal);
            } else {
                uint amountAOptimal = StepExLibrary.quote(amountBDesired, reserveB, reserveA);
                assert(amountAOptimal <= amountADesired);
                require(amountAOptimal >= amountAMin, 'StepExRouter: 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 = StepExLibrary.pairFor(factory, tokenA, tokenB);
        TransferHelper.safeTransferFrom(tokenA, msg.sender, pair, amountA);
        TransferHelper.safeTransferFrom(tokenB, msg.sender, pair, amountB);
        liquidity = IUniswapV2Pair(pair).mint(to);
    }
    function addLiquidityFITFI(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline
    ) external virtual override payable ensure(deadline) returns (uint amountToken, uint amountFITFI, uint liquidity) {
        (amountToken, amountFITFI) = _addLiquidity(
            token,
            WFITFI,
            amountTokenDesired,
            msg.value,
            amountTokenMin,
            amountFITFIMin
        );
        address pair = StepExLibrary.pairFor(factory, token, WFITFI);
        TransferHelper.safeTransferFrom(token, msg.sender, pair, amountToken);
        IWFITFI(WFITFI).deposit{value: amountFITFI}();
        assert(IWFITFI(WFITFI).transfer(pair, amountFITFI));
        liquidity = IUniswapV2Pair(pair).mint(to);
        // refund dust FITFI, if any
        if (msg.value > amountFITFI) TransferHelper.safeTransferETH(msg.sender, msg.value - amountFITFI);
    }

    // **** 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 = StepExLibrary.pairFor(factory, tokenA, tokenB);
        IUniswapV2Pair(pair).transferFrom(msg.sender, pair, liquidity); // send liquidity to pair
        (uint amount0, uint amount1) = IUniswapV2Pair(pair).burn(to);
        (address token0,) = StepExLibrary.sortTokens(tokenA, tokenB);
        (amountA, amountB) = tokenA == token0 ? (amount0, amount1) : (amount1, amount0);
        require(amountA >= amountAMin, 'StepExRouter: INSUFFICIENT_A_AMOUNT');
        require(amountB >= amountBMin, 'StepExRouter: INSUFFICIENT_B_AMOUNT');
    }
    function removeLiquidityFITFI(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountToken, uint amountFITFI) {
        (amountToken, amountFITFI) = removeLiquidity(
            token,
            WFITFI,
            liquidity,
            amountTokenMin,
            amountFITFIMin,
            address(this),
            deadline
        );
        TransferHelper.safeTransfer(token, to, amountToken);
        IWFITFI(WFITFI).withdraw(amountFITFI);
        TransferHelper.safeTransferETH(to, amountFITFI);
    }
    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 = StepExLibrary.pairFor(factory, tokenA, tokenB);
        uint value = approveMax ? uint(-1) : liquidity;
        IUniswapV2Pair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountA, amountB) = removeLiquidity(tokenA, tokenB, liquidity, amountAMin, amountBMin, to, deadline);
    }
    function removeLiquidityFITFIWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountToken, uint amountFITFI) {
        address pair = StepExLibrary.pairFor(factory, token, WFITFI);
        uint value = approveMax ? uint(-1) : liquidity;
        IUniswapV2Pair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountToken, amountFITFI) = removeLiquidityFITFI(token, liquidity, amountTokenMin, amountFITFIMin, to, deadline);
    }

    // **** REMOVE LIQUIDITY (supporting fee-on-transfer tokens) ****
    function removeLiquidityFITFISupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountFITFI) {
        (, amountFITFI) = removeLiquidity(
            token,
            WFITFI,
            liquidity,
            amountTokenMin,
            amountFITFIMin,
            address(this),
            deadline
        );
        TransferHelper.safeTransfer(token, to, IERC20(token).balanceOf(address(this)));
        IWFITFI(WFITFI).withdraw(amountFITFI);
        TransferHelper.safeTransferETH(to, amountFITFI);
    }
    function removeLiquidityFITFIWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountFITFIMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountFITFI) {
        address pair = StepExLibrary.pairFor(factory, token, WFITFI);
        uint value = approveMax ? uint(-1) : liquidity;
        IUniswapV2Pair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        amountFITFI = removeLiquidityFITFISupportingFeeOnTransferTokens(
            token, liquidity, amountTokenMin, amountFITFIMin, 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,) = StepExLibrary.sortTokens(input, output);
            uint amountOut = amounts[i + 1];
            (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOut) : (amountOut, uint(0));
            address to = i < path.length - 2 ? StepExLibrary.pairFor(factory, output, path[i + 2]) : _to;
            IUniswapV2Pair(StepExLibrary.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 = StepExLibrary.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'StepExRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, StepExLibrary.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 = StepExLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, 'StepExRouter: EXCESSIVE_INPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, StepExLibrary.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, to);
    }
    function swapExactFITFIForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        payable
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[0] == WFITFI, 'StepExRouter: INVALID_PATH');
        amounts = StepExLibrary.getAmountsOut(factory, msg.value, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'StepExRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        IWFITFI(WFITFI).deposit{value: amounts[0]}();
        assert(IWFITFI(WFITFI).transfer(StepExLibrary.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
    }
    function swapTokensForExactFITFI(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] == WFITFI, 'StepExRouter: INVALID_PATH');
        amounts = StepExLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, 'StepExRouter: EXCESSIVE_INPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, StepExLibrary.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, address(this));
        IWFITFI(WFITFI).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }
    function swapExactTokensForFITFI(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] == WFITFI, 'StepExRouter: INVALID_PATH');
        amounts = StepExLibrary.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'StepExRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, StepExLibrary.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, address(this));
        IWFITFI(WFITFI).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }
    function swapFITFIForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        payable
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[0] == WFITFI, 'StepExRouter: INVALID_PATH');
        amounts = StepExLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= msg.value, 'StepExRouter: EXCESSIVE_INPUT_AMOUNT');
        IWFITFI(WFITFI).deposit{value: amounts[0]}();
        assert(IWFITFI(WFITFI).transfer(StepExLibrary.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
        // refund dust FITFI, 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,) = StepExLibrary.sortTokens(input, output);
            IUniswapV2Pair pair = IUniswapV2Pair(StepExLibrary.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 = StepExLibrary.getAmountOut(amountInput, reserveInput, reserveOutput);
            }
            (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOutput) : (amountOutput, uint(0));
            address to = i < path.length - 2 ? StepExLibrary.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, StepExLibrary.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,
            'StepExRouter: INSUFFICIENT_OUTPUT_AMOUNT'
        );
    }
    function swapExactFITFIForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    )
        external
        virtual
        override
        payable
        ensure(deadline)
    {
        require(path[0] == WFITFI, 'StepExRouter: INVALID_PATH');
        uint amountIn = msg.value;
        IWFITFI(WFITFI).deposit{value: amountIn}();
        assert(IWFITFI(WFITFI).transfer(StepExLibrary.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,
            'StepExRouter: INSUFFICIENT_OUTPUT_AMOUNT'
        );
    }
    function swapExactTokensForFITFISupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    )
        external
        virtual
        override
        ensure(deadline)
    {
        require(path[path.length - 1] == WFITFI, 'StepExRouter: INVALID_PATH');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, StepExLibrary.pairFor(factory, path[0], path[1]), amountIn
        );
        _swapSupportingFeeOnTransferTokens(path, address(this));
        uint amountOut = IERC20(WFITFI).balanceOf(address(this));
        require(amountOut >= amountOutMin, 'StepExRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        IWFITFI(WFITFI).withdraw(amountOut);
        TransferHelper.safeTransferETH(to, amountOut);
    }

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

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

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

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

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

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_factory","internalType":"address"},{"type":"address","name":"_WFITFI","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"WFITFI","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":"amountFITFI","internalType":"uint256"},{"type":"uint256","name":"liquidity","internalType":"uint256"}],"name":"addLiquidityFITFI","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"amountTokenDesired","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountFITFIMin","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":"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":"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":"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":"amountFITFI","internalType":"uint256"}],"name":"removeLiquidityFITFI","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountFITFIMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountFITFI","internalType":"uint256"}],"name":"removeLiquidityFITFISupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountFITFIMin","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":"amountFITFI","internalType":"uint256"}],"name":"removeLiquidityFITFIWithPermit","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountFITFIMin","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":"amountFITFI","internalType":"uint256"}],"name":"removeLiquidityFITFIWithPermitSupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountFITFIMin","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":"payable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapExactFITFIForTokens","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":"swapExactFITFIForTokensSupportingFeeOnTransferTokens","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":"swapExactTokensForFITFI","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":"swapExactTokensForFITFISupportingFeeOnTransferTokens","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":"payable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapFITFIForExactTokens","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":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapTokensForExactFITFI","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":"receive","stateMutability":"payable"}]
            

Contract Creation Code

0x60c06040523480156200001157600080fd5b506040516200575838038062005758833981810160405260408110156200003757600080fd5b5080516020909101516001600160601b0319606092831b8116608052911b1660a05260805160601c60a05160601c6155d162000187600039806101ac5280610e8052806110a55280611175528061128d52806112e352806113175280611398528061172b52806117665280611abd5280611cc85280611dfd5280611fad5280612042528061257b5280612747528061292052806129f55280612ded5280612fb6528061316952806131fe5280613559528061364152806136c252806139f6525080610fa052806112c15280611545528061157e528061187c528061197a5280611baf5280611ee35280612081528061266d52806127e05280612b0f5280612da15280612dcb5280612f1c528061309c528061323d52806133e7528061370152806139d45280613f5852806141395280614435528061451652806145965280614c635280614c9952506155d16000f3fe60806040526004361061018f5760003560e01c8063876b4b75116100d6578063ca5a57ce1161007f578063e8e3370011610059578063e8e3370014610c62578063f05882f514610cd1578063fa5c645314610d64576101d5565b8063ca5a57ce14610a98578063d06ca61f14610b18578063e3e745e014610bcf576101d5565b8063ad615dec116100b0578063ad615dec146109e3578063baa2abde14610a19578063c45a015514610a83576101d5565b8063876b4b75146108a05780638803dbee146108de578063920e41c914610983576101d5565b806338ed1739116101385780635c11d795116101125780635c11d79514610720578063832742ee146107c557806385f8c2591461086a576101d5565b806338ed17391461054357806349152927146105e85780634f347c041461068d576101d5565b80631f00ca74116101695780631f00ca74146103385780632195995c1461043f57806329644aa1146104e3576101d5565b8063054d50d4146101da5780630a4e34231461022257806311a90f1c146102c7576101d5565b366101d5573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146101d357fe5b005b600080fd5b3480156101e657600080fd5b50610210600480360360608110156101fd57600080fd5b5080359060208101359060400135610de4565b60408051918252519081900360200190f35b34801561022e57600080fd5b506101d3600480360360a081101561024557600080fd5b81359160208101359181019060608101604082013564010000000081111561026c57600080fd5b82018360208201111561027e57600080fd5b803590602001918460208302840111640100000000831117156102a057600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135610df9565b61031a600480360360c08110156102dd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135611212565b60408051938452602084019290925282820152519081900360600190f35b34801561034457600080fd5b506103ef6004803603604081101561035b57600080fd5b8135919081019060408101602082013564010000000081111561037d57600080fd5b82018360208201111561038f57600080fd5b803590602001918460208302840111640100000000831117156103b157600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061153e945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561042b578181015183820152602001610413565b505050509050019250505060405180910390f35b34801561044b57600080fd5b506104ca600480360361016081101561046357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff6101008201351690610120810135906101400135611574565b6040805192835260208301919091528051918290030190f35b3480156104ef57600080fd5b506104ca600480360360c081101561050657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356116b2565b34801561054f57600080fd5b506103ef600480360360a081101561056657600080fd5b81359160208101359181019060608101604082013564010000000081111561058d57600080fd5b82018360208201111561059f57600080fd5b803590602001918460208302840111640100000000831117156105c157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611805565b3480156105f457600080fd5b506103ef600480360360a081101561060b57600080fd5b81359160208101359181019060608101604082013564010000000081111561063257600080fd5b82018360208201111561064457600080fd5b8035906020019184602083028401116401000000008311171561066657600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611a34565b6103ef600480360360808110156106a357600080fd5b813591908101906040810160208201356401000000008111156106c557600080fd5b8201836020820111156106d757600080fd5b803590602001918460208302840111640100000000831117156106f957600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611d89565b34801561072c57600080fd5b506101d3600480360360a081101561074357600080fd5b81359160208101359181019060608101604082013564010000000081111561076a57600080fd5b82018360208201111561077c57600080fd5b8035906020019184602083028401116401000000008311171561079e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356121e2565b3480156107d157600080fd5b506103ef600480360360a08110156107e857600080fd5b81359160208101359181019060608101604082013564010000000081111561080f57600080fd5b82018360208201111561082157600080fd5b8035906020019184602083028401116401000000008311171561084357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356124f2565b34801561087657600080fd5b506102106004803603606081101561088d57600080fd5b5080359060208101359060400135612738565b3480156108ac57600080fd5b506108b5612745565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156108ea57600080fd5b506103ef600480360360a081101561090157600080fd5b81359160208101359181019060608101604082013564010000000081111561092857600080fd5b82018360208201111561093a57600080fd5b8035906020019184602083028401116401000000008311171561095c57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612769565b34801561098f57600080fd5b50610210600480360360c08110156109a657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356128a8565b3480156109ef57600080fd5b5061021060048036036060811015610a0657600080fd5b5080359060208101359060400135612a88565b348015610a2557600080fd5b506104ca600480360360e0811015610a3c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c00135612a95565b348015610a8f57600080fd5b506108b5612d9f565b348015610aa457600080fd5b506102106004803603610140811015610abc57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135612dc3565b348015610b2457600080fd5b506103ef60048036036040811015610b3b57600080fd5b81359190810190604081016020820135640100000000811115610b5d57600080fd5b820183602082011115610b6f57600080fd5b80359060200191846020830284011164010000000083111715610b9157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612f15945050505050565b6103ef60048036036080811015610be557600080fd5b81359190810190604081016020820135640100000000811115610c0757600080fd5b820183602082011115610c1957600080fd5b80359060200191846020830284011164010000000083111715610c3b57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612f42565b348015610c6e57600080fd5b5061031a6004803603610100811015610c8657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e00135613358565b6101d360048036036080811015610ce757600080fd5b81359190810190604081016020820135640100000000811115610d0957600080fd5b820183602082011115610d1b57600080fd5b80359060200191846020830284011164010000000083111715610d3d57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356134e7565b348015610d7057600080fd5b506104ca6004803603610140811015610d8857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356139ca565b6000610df1848484613b22565b949350505050565b8042811015610e6957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110610ece57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f6d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61101e85856000818110610f7d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336110187f000000000000000000000000000000000000000000000000000000000000000089896000818110610fcc57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a6001818110610ff657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613c46565b8a613d31565b61105c858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250613f01915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016916370a0823191602480820192602092909190829003018186803b1580156110ec57600080fd5b505afa158015611100573d6000803e3d6000fd5b505050506040513d602081101561111657600080fd5b5051905086811015611173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156111e657600080fd5b505af11580156111fa573d6000803e3d6000fd5b5050505061120884826142a6565b5050505050505050565b6000806000834281101561128757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6112b58a7f00000000000000000000000000000000000000000000000000000000000000008b348c8c6143de565b909450925060006113077f00000000000000000000000000000000000000000000000000000000000000008c7f0000000000000000000000000000000000000000000000000000000000000000613c46565b90506113158b338388613d31565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561137d57600080fd5b505af1158015611391573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561143d57600080fd5b505af1158015611451573d6000803e3d6000fd5b505050506040513d602081101561146757600080fd5b505161146f57fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156114ee57600080fd5b505af1158015611502573d6000803e3d6000fd5b505050506040513d602081101561151857600080fd5b505192503484101561153057611530338534036142a6565b505096509650969350505050565b606061156b7f000000000000000000000000000000000000000000000000000000000000000084846146df565b90505b92915050565b60008060006115a47f00000000000000000000000000000000000000000000000000000000000000008f8f613c46565b90506000876115b3578c6115d5565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561167157600080fd5b505af1158015611685573d6000803e3d6000fd5b505050506116988f8f8f8f8f8f8f612a95565b809450819550505050509b509b9950505050505050505050565b600080824281101561172557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b611754897f00000000000000000000000000000000000000000000000000000000000000008a8a8a308a612a95565b9093509150611764898685614882565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156117d757600080fd5b505af11580156117eb573d6000803e3d6000fd5b505050506117f985836142a6565b50965096945050505050565b6060814281101561187757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6118d57f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614a4992505050565b915086826001845103815181106118e857fe5b60200260200101511015611947576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b6119ea8686600081811061195757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336119d07f00000000000000000000000000000000000000000000000000000000000000008a8a60008181106119a657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b6001818110610ff657fe5b856000815181106119dd57fe5b6020026020010151613d31565b611a2982878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250899250614b9a915050565b509695505050505050565b60608142811015611aa657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611b0b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611baa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b611c087f0000000000000000000000000000000000000000000000000000000000000000898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506146df92505050565b91508682600081518110611c1857fe5b60200260200101511115611c77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153e16024913960400191505060405180910390fd5b611c878686600081811061195757fe5b611cc682878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614b9a915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d83600185510381518110611d1257fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611d5057600080fd5b505af1158015611d64573d6000803e3d6000fd5b50505050611a298483600185510381518110611d7c57fe5b60200260200101516142a6565b60608142811015611dfb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1686866000818110611e3f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ede57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b611f3c7f0000000000000000000000000000000000000000000000000000000000000000888888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506146df92505050565b91503482600081518110611f4c57fe5b60200260200101511115611fab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153e16024913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db083600081518110611ff457fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561202757600080fd5b505af115801561203b573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6120ad7f000000000000000000000000000000000000000000000000000000000000000089896000818110610fcc57fe5b846000815181106120ba57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561212b57600080fd5b505af115801561213f573d6000803e3d6000fd5b505050506040513d602081101561215557600080fd5b505161215d57fe5b61219c82878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250899250614b9a915050565b816000815181106121a957fe5b60200260200101513411156121d8576121d833836000815181106121c957fe5b602002602001015134036142a6565b5095945050505050565b804281101561225257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b61226285856000818110610f7d57fe5b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061229257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561232b57600080fd5b505afa15801561233f573d6000803e3d6000fd5b505050506040513d602081101561235557600080fd5b50516040805160208881028281018201909352888252929350612397929091899189918291850190849080828437600092019190915250889250613f01915050565b8661249b8288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106123ca57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561246357600080fd5b505afa158015612477573d6000803e3d6000fd5b505050506040513d602081101561248d57600080fd5b50519063ffffffff614e1416565b1015611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b6060814281101561256457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106125c957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461266857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b6126c67f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614a4992505050565b915086826001845103815181106126d957fe5b60200260200101511015611c77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b6000610df1848484614e86565b7f000000000000000000000000000000000000000000000000000000000000000081565b606081428110156127db57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6128397f0000000000000000000000000000000000000000000000000000000000000000898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506146df92505050565b9150868260008151811061284957fe5b60200260200101511115611947576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153e16024913960400191505060405180910390fd5b6000814281101561291a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b612949887f00000000000000000000000000000000000000000000000000000000000000008989893089612a95565b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290519194506129f392508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b5051614882565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b50505050611a2984836142a6565b6000610df1848484614faa565b6000808242811015612b0857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6000612b357f00000000000000000000000000000000000000000000000000000000000000008c8c613c46565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b158015612bb657600080fd5b505af1158015612bca573d6000803e3d6000fd5b505050506040513d6020811015612be057600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b158015612c5357600080fd5b505af1158015612c67573d6000803e3d6000fd5b505050506040513d6040811015612c7d57600080fd5b50805160209091015190925090506000612c978e8e61508a565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff1614612cd4578183612cd7565b82825b90975095508a871015612d35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153be6023913960400191505060405180910390fd5b89861015612d8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155796023913960400191505060405180910390fd5b505050505097509795505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080612e117f00000000000000000000000000000000000000000000000000000000000000008d7f0000000000000000000000000000000000000000000000000000000000000000613c46565b9050600086612e20578b612e42565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015612ede57600080fd5b505af1158015612ef2573d6000803e3d6000fd5b50505050612f048d8d8d8d8d8d6128a8565b9d9c50505050505050505050505050565b606061156b7f00000000000000000000000000000000000000000000000000000000000000008484614a49565b60608142811015612fb457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1686866000818110612ff857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461309757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b6130f57f000000000000000000000000000000000000000000000000000000000000000034888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614a4992505050565b9150868260018451038151811061310857fe5b60200260200101511015613167576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0836000815181106131b057fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156131e357600080fd5b505af11580156131f7573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6132697f000000000000000000000000000000000000000000000000000000000000000089896000818110610fcc57fe5b8460008151811061327657fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156132e757600080fd5b505af11580156132fb573d6000803e3d6000fd5b505050506040513d602081101561331157600080fd5b505161331957fe5b6121d882878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250899250614b9a915050565b600080600083428110156133cd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6133db8c8c8c8c8c8c6143de565b9094509250600061340d7f00000000000000000000000000000000000000000000000000000000000000008e8e613c46565b905061341b8d338388613d31565b6134278c338387613d31565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156134a657600080fd5b505af11580156134ba573d6000803e3d6000fd5b505050506040513d60208110156134d057600080fd5b5051949d939c50939a509198505050505050505050565b804281101561355757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168585600081811061359b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461363a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b60003490507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156136a757600080fd5b505af11580156136bb573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61372d7f000000000000000000000000000000000000000000000000000000000000000089896000818110610fcc57fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561379757600080fd5b505af11580156137ab573d6000803e3d6000fd5b505050506040513d60208110156137c157600080fd5b50516137c957fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106137f957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561389257600080fd5b505afa1580156138a6573d6000803e3d6000fd5b505050506040513d60208110156138bc57600080fd5b505160408051602089810282810182019093528982529293506138fe9290918a918a918291850190849080828437600092019190915250899250613f01915050565b8761249b8289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061393157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561246357600080fd5b6000806000613a1a7f00000000000000000000000000000000000000000000000000000000000000008e7f0000000000000000000000000000000000000000000000000000000000000000613c46565b9050600087613a29578c613a4b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015613ae757600080fd5b505af1158015613afb573d6000803e3d6000fd5b50505050613b0d8e8e8e8e8e8e6116b2565b909f909e509c50505050505050505050505050565b6000808411613b7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154056028913960400191505060405180910390fd5b600083118015613b8c5750600082115b613be1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154ff6025913960400191505060405180910390fd5b6000613bf5856103e563ffffffff6151dd16565b90506000613c09828563ffffffff6151dd16565b90506000613c2f83613c23886103e863ffffffff6151dd16565b9063ffffffff61526316565b9050808281613c3a57fe5b04979650505050505050565b6000806000613c55858561508a565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f1dc82a8476761d56765924abb785cdb9a39a9ab2abb75254b3514c7688f670c9609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b60208310613e0f57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613dd2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613e71576040519150601f19603f3d011682016040523d82523d6000602084013e613e76565b606091505b5091509150818015613ea4575080511580613ea45750808060200190516020811015613ea157600080fd5b50515b613ef9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806154566031913960400191505060405180910390fd5b505050505050565b60005b60018351038110156142a157600080848381518110613f1f57fe5b6020026020010151858460010181518110613f3657fe5b6020026020010151915091506000613f4e838361508a565b5090506000613f7e7f00000000000000000000000000000000000000000000000000000000000000008585613c46565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015613fcc57600080fd5b505afa158015613fe0573d6000803e3d6000fd5b505050506040513d6060811015613ff657600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060008073ffffffffffffffffffffffffffffffffffffffff8a811690891614614040578284614043565b83835b915091506140c8828b73ffffffffffffffffffffffffffffffffffffffff166370a082318a6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561246357600080fd5b95506140d5868383613b22565b9450505050506000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146141195782600061411d565b6000835b91509150600060028c51038a10614134578a614175565b6141757f0000000000000000000000000000000000000000000000000000000000000000898e8d6002018151811061416857fe5b6020026020010151613c46565b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b8381101561422557818101518382015260200161420d565b50505050905090810190601f1680156142525780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561427457600080fd5b505af1158015614288573d6000803e3d6000fd5b50506001909b019a50613f049950505050505050505050565b505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b6020831061431d57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016142e0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461437f576040519150601f19603f3d011682016040523d82523d6000602084013e614384565b606091505b50509050806142a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806154876034913960400191505060405180910390fd5b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000000000000000000000000000000000000000000009092169163e6a4390591604480820192602092909190829003018186803b15801561447e57600080fd5b505afa158015614492573d6000803e3d6000fd5b505050506040513d60208110156144a857600080fd5b505173ffffffffffffffffffffffffffffffffffffffff16141561458e57604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163c9c65396916044808201926020929091908290030181600087803b15801561456157600080fd5b505af1158015614575573d6000803e3d6000fd5b505050506040513d602081101561458b57600080fd5b50505b6000806145bc7f00000000000000000000000000000000000000000000000000000000000000008b8b6152d5565b915091508160001480156145ce575080155b156145de578793508692506146d2565b60006145eb898484614faa565b9050878111614658578581101561464d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155796023913960400191505060405180910390fd5b8894509250826146d0565b6000614665898486614faa565b90508981111561467157fe5b878110156146ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153be6023913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b606060028251101561475257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5374657045784c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561476a57600080fd5b50604051908082528060200260200182016040528015614794578160200160208202803683370190505b50905082816001835103815181106147a857fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b801561487a57600080614815878660018603815181106147f457fe5b602002602001015187868151811061480857fe5b60200260200101516152d5565b9150915061483784848151811061482857fe5b60200260200101518383614e86565b84600185038151811061484657fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016147d8565b509392505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b6020831061495857805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161491b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146149ba576040519150601f19603f3d011682016040523d82523d6000602084013e6149bf565b606091505b50915091508180156149ed5750805115806149ed57508080602001905160208110156149ea57600080fd5b50515b614a42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061554c602d913960400191505060405180910390fd5b5050505050565b6060600282511015614abc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5374657045784c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015614ad457600080fd5b50604051908082528060200260200182016040528015614afe578160200160208202803683370190505b5090508281600081518110614b0f57fe5b60200260200101818152505060005b600183510381101561487a57600080614b5487868581518110614b3d57fe5b602002602001015187866001018151811061480857fe5b91509150614b76848481518110614b6757fe5b60200260200101518383613b22565b848460010181518110614b8557fe5b60209081029190910101525050600101614b1e565b60005b6001835103811015614e0e57600080848381518110614bb857fe5b6020026020010151858460010181518110614bcf57fe5b6020026020010151915091506000614be7838361508a565b5090506000878560010181518110614bfb57fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614614c4357826000614c47565b6000835b91509150600060028a51038810614c5e5788614c92565b614c927f0000000000000000000000000000000000000000000000000000000000000000878c8b6002018151811061416857fe5b9050614cbf7f00000000000000000000000000000000000000000000000000000000000000008888613c46565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f191660200182016040528015614d09576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614d94578181015183820152602001614d7c565b50505050905090810190601f168015614dc15780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614de357600080fd5b505af1158015614df7573d6000803e3d6000fd5b505060019099019850614b9d975050505050505050565b50505050565b8082038281111561156e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6000808411614ee0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061542d6029913960400191505060405180910390fd5b600083118015614ef05750600082115b614f45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154ff6025913960400191505060405180910390fd5b6000614f696103e8614f5d868863ffffffff6151dd16565b9063ffffffff6151dd16565b90506000614f836103e5614f5d868963ffffffff614e1416565b9050614fa06001828481614f9357fe5b049063ffffffff61526316565b9695505050505050565b6000808411615004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154bb6022913960400191505060405180910390fd5b6000831180156150145750600082115b615069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154ff6025913960400191505060405180910390fd5b8261507a858463ffffffff6151dd16565b8161508157fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415615112576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154dd6022913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161061514c57828461514f565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff82166151d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5374657045784c6962726172793a205a45524f5f414444524553530000000000604482015290519081900360640190fd5b9250929050565b60008115806151f8575050808202828282816151f557fe5b04145b61156e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561156e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b60008060006152e4858561508a565b5090506000806152f5888888613c46565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561533a57600080fd5b505afa15801561534e573d6000803e3d6000fd5b505050506040513d606081101561536457600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff878116908416146153ab5780826153ae565b81815b9099909850965050505050505056fe537465704578526f757465723a20494e53554646494349454e545f415f414d4f554e54537465704578526f757465723a204558434553534956455f494e5055545f414d4f554e545374657045784c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e545374657045784c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65645374657045784c6962726172793a20494e53554646494349454e545f414d4f554e545374657045784c6962726172793a204944454e544943414c5f4144445245535345535374657045784c6962726172793a20494e53554646494349454e545f4c4951554944495459537465704578526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c6564537465704578526f757465723a20494e53554646494349454e545f425f414d4f554e54a26469706673582212206c70da1bc62d9b4e0bdbc4dbf06e51e5d8f2373612c539f712d61aa55df37e2664736f6c63430006060033000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a5000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b6

Deployed ByteCode

0x60806040526004361061018f5760003560e01c8063876b4b75116100d6578063ca5a57ce1161007f578063e8e3370011610059578063e8e3370014610c62578063f05882f514610cd1578063fa5c645314610d64576101d5565b8063ca5a57ce14610a98578063d06ca61f14610b18578063e3e745e014610bcf576101d5565b8063ad615dec116100b0578063ad615dec146109e3578063baa2abde14610a19578063c45a015514610a83576101d5565b8063876b4b75146108a05780638803dbee146108de578063920e41c914610983576101d5565b806338ed1739116101385780635c11d795116101125780635c11d79514610720578063832742ee146107c557806385f8c2591461086a576101d5565b806338ed17391461054357806349152927146105e85780634f347c041461068d576101d5565b80631f00ca74116101695780631f00ca74146103385780632195995c1461043f57806329644aa1146104e3576101d5565b8063054d50d4146101da5780630a4e34231461022257806311a90f1c146102c7576101d5565b366101d5573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b616146101d357fe5b005b600080fd5b3480156101e657600080fd5b50610210600480360360608110156101fd57600080fd5b5080359060208101359060400135610de4565b60408051918252519081900360200190f35b34801561022e57600080fd5b506101d3600480360360a081101561024557600080fd5b81359160208101359181019060608101604082013564010000000081111561026c57600080fd5b82018360208201111561027e57600080fd5b803590602001918460208302840111640100000000831117156102a057600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135610df9565b61031a600480360360c08110156102dd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135611212565b60408051938452602084019290925282820152519081900360600190f35b34801561034457600080fd5b506103ef6004803603604081101561035b57600080fd5b8135919081019060408101602082013564010000000081111561037d57600080fd5b82018360208201111561038f57600080fd5b803590602001918460208302840111640100000000831117156103b157600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061153e945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561042b578181015183820152602001610413565b505050509050019250505060405180910390f35b34801561044b57600080fd5b506104ca600480360361016081101561046357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff6101008201351690610120810135906101400135611574565b6040805192835260208301919091528051918290030190f35b3480156104ef57600080fd5b506104ca600480360360c081101561050657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356116b2565b34801561054f57600080fd5b506103ef600480360360a081101561056657600080fd5b81359160208101359181019060608101604082013564010000000081111561058d57600080fd5b82018360208201111561059f57600080fd5b803590602001918460208302840111640100000000831117156105c157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611805565b3480156105f457600080fd5b506103ef600480360360a081101561060b57600080fd5b81359160208101359181019060608101604082013564010000000081111561063257600080fd5b82018360208201111561064457600080fd5b8035906020019184602083028401116401000000008311171561066657600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611a34565b6103ef600480360360808110156106a357600080fd5b813591908101906040810160208201356401000000008111156106c557600080fd5b8201836020820111156106d757600080fd5b803590602001918460208302840111640100000000831117156106f957600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611d89565b34801561072c57600080fd5b506101d3600480360360a081101561074357600080fd5b81359160208101359181019060608101604082013564010000000081111561076a57600080fd5b82018360208201111561077c57600080fd5b8035906020019184602083028401116401000000008311171561079e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356121e2565b3480156107d157600080fd5b506103ef600480360360a08110156107e857600080fd5b81359160208101359181019060608101604082013564010000000081111561080f57600080fd5b82018360208201111561082157600080fd5b8035906020019184602083028401116401000000008311171561084357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356124f2565b34801561087657600080fd5b506102106004803603606081101561088d57600080fd5b5080359060208101359060400135612738565b3480156108ac57600080fd5b506108b5612745565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156108ea57600080fd5b506103ef600480360360a081101561090157600080fd5b81359160208101359181019060608101604082013564010000000081111561092857600080fd5b82018360208201111561093a57600080fd5b8035906020019184602083028401116401000000008311171561095c57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612769565b34801561098f57600080fd5b50610210600480360360c08110156109a657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356128a8565b3480156109ef57600080fd5b5061021060048036036060811015610a0657600080fd5b5080359060208101359060400135612a88565b348015610a2557600080fd5b506104ca600480360360e0811015610a3c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c00135612a95565b348015610a8f57600080fd5b506108b5612d9f565b348015610aa457600080fd5b506102106004803603610140811015610abc57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135612dc3565b348015610b2457600080fd5b506103ef60048036036040811015610b3b57600080fd5b81359190810190604081016020820135640100000000811115610b5d57600080fd5b820183602082011115610b6f57600080fd5b80359060200191846020830284011164010000000083111715610b9157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612f15945050505050565b6103ef60048036036080811015610be557600080fd5b81359190810190604081016020820135640100000000811115610c0757600080fd5b820183602082011115610c1957600080fd5b80359060200191846020830284011164010000000083111715610c3b57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612f42565b348015610c6e57600080fd5b5061031a6004803603610100811015610c8657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e00135613358565b6101d360048036036080811015610ce757600080fd5b81359190810190604081016020820135640100000000811115610d0957600080fd5b820183602082011115610d1b57600080fd5b80359060200191846020830284011164010000000083111715610d3d57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356134e7565b348015610d7057600080fd5b506104ca6004803603610140811015610d8857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356139ca565b6000610df1848484613b22565b949350505050565b8042811015610e6957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b61685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110610ece57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f6d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61101e85856000818110610f7d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336110187f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a589896000818110610fcc57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a6001818110610ff657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613c46565b8a613d31565b61105c858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250613f01915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b616916370a0823191602480820192602092909190829003018186803b1580156110ec57600080fd5b505afa158015611100573d6000803e3d6000fd5b505050506040513d602081101561111657600080fd5b5051905086811015611173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156111e657600080fd5b505af11580156111fa573d6000803e3d6000fd5b5050505061120884826142a6565b5050505050505050565b6000806000834281101561128757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6112b58a7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b68b348c8c6143de565b909450925060006113077f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58c7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b6613c46565b90506113158b338388613d31565b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561137d57600080fd5b505af1158015611391573d6000803e3d6000fd5b50505050507f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561143d57600080fd5b505af1158015611451573d6000803e3d6000fd5b505050506040513d602081101561146757600080fd5b505161146f57fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156114ee57600080fd5b505af1158015611502573d6000803e3d6000fd5b505050506040513d602081101561151857600080fd5b505192503484101561153057611530338534036142a6565b505096509650969350505050565b606061156b7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a584846146df565b90505b92915050565b60008060006115a47f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58f8f613c46565b90506000876115b3578c6115d5565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561167157600080fd5b505af1158015611685573d6000803e3d6000fd5b505050506116988f8f8f8f8f8f8f612a95565b809450819550505050509b509b9950505050505050505050565b600080824281101561172557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b611754897f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b68a8a8a308a612a95565b9093509150611764898685614882565b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156117d757600080fd5b505af11580156117eb573d6000803e3d6000fd5b505050506117f985836142a6565b50965096945050505050565b6060814281101561187757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6118d57f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a589888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614a4992505050565b915086826001845103815181106118e857fe5b60200260200101511015611947576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b6119ea8686600081811061195757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336119d07f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58a8a60008181106119a657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b6001818110610ff657fe5b856000815181106119dd57fe5b6020026020010151613d31565b611a2982878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250899250614b9a915050565b509695505050505050565b60608142811015611aa657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b61686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611b0b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611baa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b611c087f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a5898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506146df92505050565b91508682600081518110611c1857fe5b60200260200101511115611c77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153e16024913960400191505060405180910390fd5b611c878686600081811061195757fe5b611cc682878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614b9a915050565b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d83600185510381518110611d1257fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611d5057600080fd5b505af1158015611d64573d6000803e3d6000fd5b50505050611a298483600185510381518110611d7c57fe5b60200260200101516142a6565b60608142811015611dfb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1686866000818110611e3f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ede57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b611f3c7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a5888888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506146df92505050565b91503482600081518110611f4c57fe5b60200260200101511115611fab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153e16024913960400191505060405180910390fd5b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663d0e30db083600081518110611ff457fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561202757600080fd5b505af115801561203b573d6000803e3d6000fd5b50505050507f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6120ad7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a589896000818110610fcc57fe5b846000815181106120ba57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561212b57600080fd5b505af115801561213f573d6000803e3d6000fd5b505050506040513d602081101561215557600080fd5b505161215d57fe5b61219c82878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250899250614b9a915050565b816000815181106121a957fe5b60200260200101513411156121d8576121d833836000815181106121c957fe5b602002602001015134036142a6565b5095945050505050565b804281101561225257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b61226285856000818110610f7d57fe5b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061229257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561232b57600080fd5b505afa15801561233f573d6000803e3d6000fd5b505050506040513d602081101561235557600080fd5b50516040805160208881028281018201909352888252929350612397929091899189918291850190849080828437600092019190915250889250613f01915050565b8661249b8288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106123ca57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561246357600080fd5b505afa158015612477573d6000803e3d6000fd5b505050506040513d602081101561248d57600080fd5b50519063ffffffff614e1416565b1015611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b6060814281101561256457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b61686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106125c957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461266857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b6126c67f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a589888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614a4992505050565b915086826001845103815181106126d957fe5b60200260200101511015611c77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b6000610df1848484614e86565b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b681565b606081428110156127db57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6128397f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a5898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506146df92505050565b9150868260008151811061284957fe5b60200260200101511115611947576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153e16024913960400191505060405180910390fd5b6000814281101561291a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b612949887f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b68989893089612a95565b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290519194506129f392508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b5051614882565b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612a6657600080fd5b505af1158015612a7a573d6000803e3d6000fd5b50505050611a2984836142a6565b6000610df1848484614faa565b6000808242811015612b0857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6000612b357f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58c8c613c46565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b158015612bb657600080fd5b505af1158015612bca573d6000803e3d6000fd5b505050506040513d6020811015612be057600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b158015612c5357600080fd5b505af1158015612c67573d6000803e3d6000fd5b505050506040513d6040811015612c7d57600080fd5b50805160209091015190925090506000612c978e8e61508a565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff1614612cd4578183612cd7565b82825b90975095508a871015612d35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153be6023913960400191505060405180910390fd5b89861015612d8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155796023913960400191505060405180910390fd5b505050505097509795505050505050565b7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a581565b600080612e117f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58d7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b6613c46565b9050600086612e20578b612e42565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015612ede57600080fd5b505af1158015612ef2573d6000803e3d6000fd5b50505050612f048d8d8d8d8d8d6128a8565b9d9c50505050505050505050505050565b606061156b7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58484614a49565b60608142811015612fb457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1686866000818110612ff857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461309757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b6130f57f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a534888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614a4992505050565b9150868260018451038151811061310857fe5b60200260200101511015613167576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806155246028913960400191505060405180910390fd5b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0836000815181106131b057fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156131e357600080fd5b505af11580156131f7573d6000803e3d6000fd5b50505050507f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6132697f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a589896000818110610fcc57fe5b8460008151811061327657fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156132e757600080fd5b505af11580156132fb573d6000803e3d6000fd5b505050506040513d602081101561331157600080fd5b505161331957fe5b6121d882878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250899250614b9a915050565b600080600083428110156133cd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6133db8c8c8c8c8c8c6143de565b9094509250600061340d7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58e8e613c46565b905061341b8d338388613d31565b6134278c338387613d31565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156134a657600080fd5b505af11580156134ba573d6000803e3d6000fd5b505050506040513d60208110156134d057600080fd5b5051949d939c50939a509198505050505050505050565b804281101561355757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f537465704578526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff168585600081811061359b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461363a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f537465704578526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b60003490507f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156136a757600080fd5b505af11580156136bb573d6000803e3d6000fd5b50505050507f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61372d7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a589896000818110610fcc57fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561379757600080fd5b505af11580156137ab573d6000803e3d6000fd5b505050506040513d60208110156137c157600080fd5b50516137c957fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106137f957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561389257600080fd5b505afa1580156138a6573d6000803e3d6000fd5b505050506040513d60208110156138bc57600080fd5b505160408051602089810282810182019093528982529293506138fe9290918a918a918291850190849080828437600092019190915250899250613f01915050565b8761249b8289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061393157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561246357600080fd5b6000806000613a1a7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58e7f000000000000000000000000b58a9d5920af6ac1a9522b0b10f55df16686d1b6613c46565b9050600087613a29578c613a4b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015613ae757600080fd5b505af1158015613afb573d6000803e3d6000fd5b50505050613b0d8e8e8e8e8e8e6116b2565b909f909e509c50505050505050505050505050565b6000808411613b7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154056028913960400191505060405180910390fd5b600083118015613b8c5750600082115b613be1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154ff6025913960400191505060405180910390fd5b6000613bf5856103e563ffffffff6151dd16565b90506000613c09828563ffffffff6151dd16565b90506000613c2f83613c23886103e863ffffffff6151dd16565b9063ffffffff61526316565b9050808281613c3a57fe5b04979650505050505050565b6000806000613c55858561508a565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f1dc82a8476761d56765924abb785cdb9a39a9ab2abb75254b3514c7688f670c9609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b60208310613e0f57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613dd2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613e71576040519150601f19603f3d011682016040523d82523d6000602084013e613e76565b606091505b5091509150818015613ea4575080511580613ea45750808060200190516020811015613ea157600080fd5b50515b613ef9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806154566031913960400191505060405180910390fd5b505050505050565b60005b60018351038110156142a157600080848381518110613f1f57fe5b6020026020010151858460010181518110613f3657fe5b6020026020010151915091506000613f4e838361508a565b5090506000613f7e7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58585613c46565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015613fcc57600080fd5b505afa158015613fe0573d6000803e3d6000fd5b505050506040513d6060811015613ff657600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060008073ffffffffffffffffffffffffffffffffffffffff8a811690891614614040578284614043565b83835b915091506140c8828b73ffffffffffffffffffffffffffffffffffffffff166370a082318a6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561246357600080fd5b95506140d5868383613b22565b9450505050506000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146141195782600061411d565b6000835b91509150600060028c51038a10614134578a614175565b6141757f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a5898e8d6002018151811061416857fe5b6020026020010151613c46565b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b8381101561422557818101518382015260200161420d565b50505050905090810190601f1680156142525780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561427457600080fd5b505af1158015614288573d6000803e3d6000fd5b50506001909b019a50613f049950505050505050505050565b505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b6020831061431d57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016142e0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461437f576040519150601f19603f3d011682016040523d82523d6000602084013e614384565b606091505b50509050806142a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806154876034913960400191505060405180910390fd5b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a59092169163e6a4390591604480820192602092909190829003018186803b15801561447e57600080fd5b505afa158015614492573d6000803e3d6000fd5b505050506040513d60208110156144a857600080fd5b505173ffffffffffffffffffffffffffffffffffffffff16141561458e57604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a59092169163c9c65396916044808201926020929091908290030181600087803b15801561456157600080fd5b505af1158015614575573d6000803e3d6000fd5b505050506040513d602081101561458b57600080fd5b50505b6000806145bc7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58b8b6152d5565b915091508160001480156145ce575080155b156145de578793508692506146d2565b60006145eb898484614faa565b9050878111614658578581101561464d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155796023913960400191505060405180910390fd5b8894509250826146d0565b6000614665898486614faa565b90508981111561467157fe5b878110156146ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153be6023913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b606060028251101561475257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5374657045784c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561476a57600080fd5b50604051908082528060200260200182016040528015614794578160200160208202803683370190505b50905082816001835103815181106147a857fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b801561487a57600080614815878660018603815181106147f457fe5b602002602001015187868151811061480857fe5b60200260200101516152d5565b9150915061483784848151811061482857fe5b60200260200101518383614e86565b84600185038151811061484657fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016147d8565b509392505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b6020831061495857805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161491b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146149ba576040519150601f19603f3d011682016040523d82523d6000602084013e6149bf565b606091505b50915091508180156149ed5750805115806149ed57508080602001905160208110156149ea57600080fd5b50515b614a42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061554c602d913960400191505060405180910390fd5b5050505050565b6060600282511015614abc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5374657045784c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015614ad457600080fd5b50604051908082528060200260200182016040528015614afe578160200160208202803683370190505b5090508281600081518110614b0f57fe5b60200260200101818152505060005b600183510381101561487a57600080614b5487868581518110614b3d57fe5b602002602001015187866001018151811061480857fe5b91509150614b76848481518110614b6757fe5b60200260200101518383613b22565b848460010181518110614b8557fe5b60209081029190910101525050600101614b1e565b60005b6001835103811015614e0e57600080848381518110614bb857fe5b6020026020010151858460010181518110614bcf57fe5b6020026020010151915091506000614be7838361508a565b5090506000878560010181518110614bfb57fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614614c4357826000614c47565b6000835b91509150600060028a51038810614c5e5788614c92565b614c927f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a5878c8b6002018151811061416857fe5b9050614cbf7f000000000000000000000000f62b74e4a7ae8d27cd983a54a9d24a89345413a58888613c46565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f191660200182016040528015614d09576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614d94578181015183820152602001614d7c565b50505050905090810190601f168015614dc15780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614de357600080fd5b505af1158015614df7573d6000803e3d6000fd5b505060019099019850614b9d975050505050505050565b50505050565b8082038281111561156e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6000808411614ee0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061542d6029913960400191505060405180910390fd5b600083118015614ef05750600082115b614f45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154ff6025913960400191505060405180910390fd5b6000614f696103e8614f5d868863ffffffff6151dd16565b9063ffffffff6151dd16565b90506000614f836103e5614f5d868963ffffffff614e1416565b9050614fa06001828481614f9357fe5b049063ffffffff61526316565b9695505050505050565b6000808411615004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154bb6022913960400191505060405180910390fd5b6000831180156150145750600082115b615069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154ff6025913960400191505060405180910390fd5b8261507a858463ffffffff6151dd16565b8161508157fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415615112576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154dd6022913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161061514c57828461514f565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff82166151d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5374657045784c6962726172793a205a45524f5f414444524553530000000000604482015290519081900360640190fd5b9250929050565b60008115806151f8575050808202828282816151f557fe5b04145b61156e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561156e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b60008060006152e4858561508a565b5090506000806152f5888888613c46565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561533a57600080fd5b505afa15801561534e573d6000803e3d6000fd5b505050506040513d606081101561536457600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff878116908416146153ab5780826153ae565b81815b9099909850965050505050505056fe537465704578526f757465723a20494e53554646494349454e545f415f414d4f554e54537465704578526f757465723a204558434553534956455f494e5055545f414d4f554e545374657045784c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e545374657045784c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65645374657045784c6962726172793a20494e53554646494349454e545f414d4f554e545374657045784c6962726172793a204944454e544943414c5f4144445245535345535374657045784c6962726172793a20494e53554646494349454e545f4c4951554944495459537465704578526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c6564537465704578526f757465723a20494e53554646494349454e545f425f414d4f554e54a26469706673582212206c70da1bc62d9b4e0bdbc4dbf06e51e5d8f2373612c539f712d61aa55df37e2664736f6c63430006060033