false
false

Contract Address Details

0x8c8067ed3bC19ACcE28C1953bfC18DC85A2127F7

Contract Name
MojitoRouter
Creator
0xd4d730–cd9daf at 0x3c1132–e2faba
Balance
0 KCS
Tokens
Fetching tokens...
Transactions
2,480,364 Transactions
Transfers
959,977 Transfers
Gas Used
524,680,858,377
Last Balance Update
38405793
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
MojitoRouter




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




Optimization runs
999999
EVM Version
default




Verified at
2021-10-26T12:27:47.915705Z

Constructor Arguments

00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef30000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c07521

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

              

Contract source code

// Dependency file: contracts/interfaces/IMojitoRouter01.sol

// pragma solidity >=0.6.2;

interface IMojitoRouter01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint swapFeeNumerator) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint swapFeeNumerator) 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);
}

// Dependency file: @mojitoswap-libs/mojito-swap-core/contracts/interfaces/IMojitoPair.sol

// pragma solidity >=0.5.0;

interface IMojitoPair {
    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 swapFeeNumerator() external view returns (uint);
    function setSwapFeeNumerator(uint _swapFeeNumerator) external;
    function feeToDenominator() external view returns (uint);
    function setFeeToDenominator(uint _feeToDenominator) external;

    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;
}

// Dependency file: contracts/interfaces/IMojitoRouter02.sol

// pragma solidity >=0.6.2;

// import './IMojitoRouter01.sol';

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// Dependency file: @openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT

// pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// Dependency file: contracts/interfaces/ISwapMining.sol

// pragma solidity =0.6.6;

interface ISwapMining {
    function swap(address account, address input, address output, uint256 amount) external returns (bool);
}

// Dependency file: contracts/interfaces/IWETH.sol

// pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

// Dependency file: contracts/interfaces/IERC20.sol

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

// Dependency file: contracts/libraries/SafeMath.sol

// 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');
    }
}

// Dependency file: contracts/libraries/MojitoLibrary.sol

// pragma solidity >=0.5.0;

// import '@mojitoswap-libs/mojito-swap-core/contracts/interfaces/IMojitoPair.sol';

// import "./SafeMath.sol";

library MojitoLibrary {
    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, 'MojitoLibrary: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'MojitoLibrary: 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'3b58864b0ea7cc084fc3a5dc3ca7ea2fb5cedd9aac7f9fff0c3dd9a15713f1c7' // 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,) = IMojitoPair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // fetches the swap fee numerator for a pair
    function getSwapFeeNumerator(address factory, address tokenA, address tokenB) internal view returns (uint swapFeeNumerator) {
        swapFeeNumerator = IMojitoPair(pairFor(factory, tokenA, tokenB)).swapFeeNumerator();
    }

    // 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, 'MojitoLibrary: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'MojitoLibrary: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

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

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint swapFeeNumerator) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'MojitoLibrary: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'MojitoLibrary: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(10000);
        uint denominator = reserveOut.sub(amountOut).mul(10000 - swapFeeNumerator);
        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, 'MojitoLibrary: 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]);
            uint swapFeeNumerator = getSwapFeeNumerator(factory, path[i], path[i + 1]);
            amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut, swapFeeNumerator);
        }
    }

    // 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, 'MojitoLibrary: 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]);
            uint swapFeeNumerator = getSwapFeeNumerator(factory, path[i - 1], path[i]);
            amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut, swapFeeNumerator);
        }
    }
}

// Dependency file: contracts/interfaces/IMojitoRouter03.sol

// pragma solidity >=0.6.2;

// import './IMojitoRouter02.sol';

interface IMojitoRouter03 is IMojitoRouter02 {
    function swapMining() external pure returns (address);
}

// Dependency file: @mojitoswap-libs/mojito-lib/contracts/libraries/TransferHelper.sol

// SPDX-License-Identifier: 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');
    }
}

// Dependency file: @mojitoswap-libs/mojito-swap-core/contracts/interfaces/IMojitoFactory.sol

// pragma solidity >=0.5.0;

interface IMojitoFactory {
    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;

    function setSwapFeeNumerator(address _pair, uint _swapFeeNumerator) external;
    function setFeeToDenominator(address _pair, uint _feeToDenominator) external;
}

// Dependency file: @openzeppelin/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT

// pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

pragma solidity =0.6.6;

// import "@openzeppelin/contracts/access/Ownable.sol";
// import '@mojitoswap-libs/mojito-swap-core/contracts/interfaces/IMojitoFactory.sol';
// import '@mojitoswap-libs/mojito-lib/contracts/libraries/TransferHelper.sol';

// import './interfaces/IMojitoRouter03.sol';
// import './libraries/MojitoLibrary.sol';
// import './libraries/SafeMath.sol';
// import './interfaces/IERC20.sol';
// import './interfaces/IWETH.sol';
// import './interfaces/ISwapMining.sol';

contract MojitoRouter is IMojitoRouter03, Ownable {
    using SafeMath for uint;

    address public immutable override factory;
    address public immutable override WETH;
    address public override swapMining;

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

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

    function setSwapMining(address _swapMininng) public onlyOwner {
        swapMining = _swapMininng;
    }

    receive() external payable {
        assert(msg.sender == WETH); // only accept ETH via fallback from the WETH 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 (IMojitoFactory(factory).getPair(tokenA, tokenB) == address(0)) {
            IMojitoFactory(factory).createPair(tokenA, tokenB);
        }
        (uint reserveA, uint reserveB) = MojitoLibrary.getReserves(factory, tokenA, tokenB);
        if (reserveA == 0 && reserveB == 0) {
            (amountA, amountB) = (amountADesired, amountBDesired);
        } else {
            uint amountBOptimal = MojitoLibrary.quote(amountADesired, reserveA, reserveB);
            if (amountBOptimal <= amountBDesired) {
                require(amountBOptimal >= amountBMin, 'MojitoRouter: INSUFFICIENT_B_AMOUNT');
                (amountA, amountB) = (amountADesired, amountBOptimal);
            } else {
                uint amountAOptimal = MojitoLibrary.quote(amountBDesired, reserveB, reserveA);
                assert(amountAOptimal <= amountADesired);
                require(amountAOptimal >= amountAMin, 'MojitoRouter: 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 = MojitoLibrary.pairFor(factory, tokenA, tokenB);
        TransferHelper.safeTransferFrom(tokenA, msg.sender, pair, amountA);
        TransferHelper.safeTransferFrom(tokenB, msg.sender, pair, amountB);
        liquidity = IMojitoPair(pair).mint(to);
    }
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external virtual override payable ensure(deadline) returns (uint amountToken, uint amountETH, uint liquidity) {
        (amountToken, amountETH) = _addLiquidity(
            token,
            WETH,
            amountTokenDesired,
            msg.value,
            amountTokenMin,
            amountETHMin
        );
        address pair = MojitoLibrary.pairFor(factory, token, WETH);
        TransferHelper.safeTransferFrom(token, msg.sender, pair, amountToken);
        IWETH(WETH).deposit{value: amountETH}();
        assert(IWETH(WETH).transfer(pair, amountETH));
        liquidity = IMojitoPair(pair).mint(to);
        // refund dust eth, if any
        if (msg.value > amountETH) TransferHelper.safeTransferETH(msg.sender, msg.value - amountETH);
    }

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

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

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

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

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

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

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

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

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

Contract ABI

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

Contract Creation Code

0x60c06040523480156200001157600080fd5b506040516200601638038062006016833981810160405260408110156200003757600080fd5b5080516020909101516000620000556001600160e01b03620000be16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160601b0319606092831b8116608052911b1660a052620000c2565b3390565b60805160601c60a05160601c615e26620001f0600039806101e35280610f5f5280610f9a52806110c2528061138552806117df5280611af3528061215252806122d652806123a652806124ad528061266052806126f552806129b65280612a655280612b3a5280612c3f5280612d275280612da85280613437528061390e528061396452806139985280613a195280613c335280613de35280613e785250806111b452806112b252806114585280611491528061163c52806118d15280611ad15280611cbe5280612593528061273452806128d05280612de7528061312a52806133bc52806133e5528061341552806135f252806139425280613d195280613eb7528061490f52806149525280614f33528061528552806156dc52806157bd528061583d5250615e266000f3fe6080604052600436106101c65760003560e01c80637ff36ab5116100f7578063baa2abde11610095578063e8e3370011610064578063e8e3370014610d33578063f2fde38b14610dc0578063f305d71914610e00578063fb3bdb4114610e535761020c565b8063baa2abde14610b7d578063c45a015514610be7578063d06ca61f14610bfc578063ded9382a14610cb35761020c565b8063ad5c4648116100d1578063ad5c464814610a3f578063ad615dec14610a54578063af2979eb14610a8a578063b6f9de9514610aea5761020c565b80637ff36ab5146108f25780638803dbee146109855780638da5cb5b14610a2a5761020c565b80634f887183116101645780635b0d59841161013e5780635b0d5984146107135780635c11d79514610793578063715018a614610838578063791ac9471461084d5761020c565b80634f8871831461064957806352707d8c14610689578063571fd012146106d75761020c565b80632195995c116101a05780632195995c1461043657806338ed1739146104c15780634a25d94a146105665780634e5eda111461060b5761020c565b806302751cec1461021157806318cbafe51461028a5780631f00ca741461037f5761020c565b3661020c573373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461020a57fe5b005b600080fd5b34801561021d57600080fd5b50610271600480360360c081101561023457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610ee6565b6040805192835260208301919091528051918290030190f35b34801561029657600080fd5b5061032f600480360360a08110156102ad57600080fd5b8135916020810135918101906060810160408201356401000000008111156102d457600080fd5b8201836020820111156102e657600080fd5b8035906020019184602083028401116401000000008311171561030857600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611039565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561036b578181015183820152602001610353565b505050509050019250505060405180910390f35b34801561038b57600080fd5b5061032f600480360360408110156103a257600080fd5b813591908101906040810160208201356401000000008111156103c457600080fd5b8201836020820111156103d657600080fd5b803590602001918460208302840111640100000000831117156103f857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611451945050505050565b34801561044257600080fd5b50610271600480360361016081101561045a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff6101008201351690610120810135906101400135611487565b3480156104cd57600080fd5b5061032f600480360360a08110156104e457600080fd5b81359160208101359181019060608101604082013564010000000081111561050b57600080fd5b82018360208201111561051d57600080fd5b8035906020019184602083028401116401000000008311171561053f57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356115c5565b34801561057257600080fd5b5061032f600480360360a081101561058957600080fd5b8135916020810135918101906060810160408201356401000000008111156105b057600080fd5b8201836020820111156105c257600080fd5b803590602001918460208302840111640100000000831117156105e457600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611756565b34801561061757600080fd5b50610620611999565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561065557600080fd5b5061020a6004803603602081101561066c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166119b5565b34801561069557600080fd5b506106c5600480360360808110156106ac57600080fd5b5080359060208101359060408101359060600135611aa4565b60408051918252519081900360200190f35b3480156106e357600080fd5b506106c5600480360360808110156106fa57600080fd5b5080359060208101359060408101359060600135611abb565b34801561071f57600080fd5b506106c5600480360361014081101561073757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135611ac9565b34801561079f57600080fd5b5061020a600480360360a08110156107b657600080fd5b8135916020810135918101906060810160408201356401000000008111156107dd57600080fd5b8201836020820111156107ef57600080fd5b8035906020019184602083028401116401000000008311171561081157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611c1b565b34801561084457600080fd5b5061020a611fb4565b34801561085957600080fd5b5061020a600480360360a081101561087057600080fd5b81359160208101359181019060608101604082013564010000000081111561089757600080fd5b8201836020820111156108a957600080fd5b803590602001918460208302840111640100000000831117156108cb57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356120cb565b61032f6004803603608081101561090857600080fd5b8135919081019060408101602082013564010000000081111561092a57600080fd5b82018360208201111561093c57600080fd5b8035906020019184602083028401116401000000008311171561095e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612439565b34801561099157600080fd5b5061032f600480360360a08110156109a857600080fd5b8135916020810135918101906060810160408201356401000000008111156109cf57600080fd5b8201836020820111156109e157600080fd5b80359060200191846020830284011164010000000083111715610a0357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612859565b348015610a3657600080fd5b50610620612998565b348015610a4b57600080fd5b506106206129b4565b348015610a6057600080fd5b506106c560048036036060811015610a7757600080fd5b50803590602081013590604001356129d8565b348015610a9657600080fd5b506106c5600480360360c0811015610aad57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356129ed565b61020a60048036036080811015610b0057600080fd5b81359190810190604081016020820135640100000000811115610b2257600080fd5b820183602082011115610b3457600080fd5b80359060200191846020830284011164010000000083111715610b5657600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612bcd565b348015610b8957600080fd5b50610271600480360360e0811015610ba057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c001356130b0565b348015610bf357600080fd5b506106206133ba565b348015610c0857600080fd5b5061032f60048036036040811015610c1f57600080fd5b81359190810190604081016020820135640100000000811115610c4157600080fd5b820183602082011115610c5357600080fd5b80359060200191846020830284011164010000000083111715610c7557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506133de945050505050565b348015610cbf57600080fd5b506102716004803603610140811015610cd757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e0820135169061010081013590610120013561340b565b348015610d3f57600080fd5b50610da26004803603610100811015610d5757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e00135613563565b60408051938452602084019290925282820152519081900360600190f35b348015610dcc57600080fd5b5061020a60048036036020811015610de357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166136f2565b610da2600480360360c0811015610e1657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135613893565b61032f60048036036080811015610e6957600080fd5b81359190810190604081016020820135640100000000811115610e8b57600080fd5b820183602082011115610e9d57600080fd5b80359060200191846020830284011164010000000083111715610ebf57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135613bbf565b6000808242811015610f5957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b610f88897f00000000000000000000000000000000000000000000000000000000000000008a8a8a308a6130b0565b9093509150610f9889868561400e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561100b57600080fd5b505af115801561101f573d6000803e3d6000fd5b5050505061102d85836141d5565b50965096945050505050565b606081428110156110ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061111057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111af57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61120d7f00000000000000000000000000000000000000000000000000000000000000008988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061431292505050565b9150868260018451038151811061122057fe5b6020026020010151101561127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b6113448686600081811061128f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff163361132a7f00000000000000000000000000000000000000000000000000000000000000008a8a60008181106112de57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061130857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166144b2565b8560008151811061133757fe5b602002602001015161459d565b6113838287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525030925061476d915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836001855103815181106113cf57fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561140d57600080fd5b505af1158015611421573d6000803e3d6000fd5b50505050611446848360018551038151811061143957fe5b60200260200101516141d5565b509695505050505050565b606061147e7f00000000000000000000000000000000000000000000000000000000000000008484614acd565b90505b92915050565b60008060006114b77f00000000000000000000000000000000000000000000000000000000000000008f8f6144b2565b90506000876114c6578c6114e8565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561158457600080fd5b505af1158015611598573d6000803e3d6000fd5b505050506115ab8f8f8f8f8f8f8f6130b0565b809450819550505050509b509b9950505050505050505050565b6060814281101561163757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6116957f00000000000000000000000000000000000000000000000000000000000000008988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061431292505050565b915086826001845103815181106116a857fe5b60200260200101511015611707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b6117178686600081811061128f57fe5b6114468287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061476d915050565b606081428110156117c857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061182d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118cc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61192a7f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614acd92505050565b9150868260008151811061193a57fe5b6020026020010151111561127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d7d6024913960400191505060405180910390fd5b60015473ffffffffffffffffffffffffffffffffffffffff1681565b6119bd614c88565b73ffffffffffffffffffffffffffffffffffffffff166119db612998565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000611ab285858585614c8c565b95945050505050565b6000611ab285858585614db4565b600080611b177f00000000000000000000000000000000000000000000000000000000000000008d7f00000000000000000000000000000000000000000000000000000000000000006144b2565b9050600086611b26578b611b48565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015611be457600080fd5b505af1158015611bf8573d6000803e3d6000fd5b50505050611c0a8d8d8d8d8d8d6129ed565b9d9c50505050505050505050505050565b8042811015611c8b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b611d1a85856000818110611c9b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611d147f000000000000000000000000000000000000000000000000000000000000000089896000818110611cea57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061130857fe5b8a61459d565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611d4a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611de357600080fd5b505afa158015611df7573d6000803e3d6000fd5b505050506040513d6020811015611e0d57600080fd5b50516040805160208881028281018201909352888252929350611e4f929091899189918291850190849080828437600092019190915250889250614edc915050565b86611f538288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611e8257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f1b57600080fd5b505afa158015611f2f573d6000803e3d6000fd5b505050506040513d6020811015611f4557600080fd5b50519063ffffffff6153e016565b1015611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b5050505050505050565b611fbc614c88565b73ffffffffffffffffffffffffffffffffffffffff16611fda612998565b73ffffffffffffffffffffffffffffffffffffffff161461205c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b804281101561213b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106121a057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61224f85856000818110611c9b57fe5b61228d858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614edc915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016916370a0823191602480820192602092909190829003018186803b15801561231d57600080fd5b505afa158015612331573d6000803e3d6000fd5b505050506040513d602081101561234757600080fd5b50519050868110156123a4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561241757600080fd5b505af115801561242b573d6000803e3d6000fd5b50505050611faa84826141d5565b606081428110156124ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16868660008181106124ef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461258e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b6125ec7f00000000000000000000000000000000000000000000000000000000000000003488888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061431292505050565b915086826001845103815181106125ff57fe5b6020026020010151101561265e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0836000815181106126a757fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156126da57600080fd5b505af11580156126ee573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6127607f000000000000000000000000000000000000000000000000000000000000000089896000818110611cea57fe5b8460008151811061276d57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156127de57600080fd5b505af11580156127f2573d6000803e3d6000fd5b505050506040513d602081101561280857600080fd5b505161281057fe5b61284f8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061476d915050565b5095945050505050565b606081428110156128cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6129297f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614acd92505050565b9150868260008151811061293957fe5b60200260200101511115611707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d7d6024913960400191505060405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006129e5848484615452565b949350505050565b60008142811015612a5f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b612a8e887f000000000000000000000000000000000000000000000000000000000000000089898930896130b0565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051919450612b3892508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b158015612b0757600080fd5b505afa158015612b1b573d6000803e3d6000fd5b505050506040513d6020811015612b3157600080fd5b505161400e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612bab57600080fd5b505af1158015612bbf573d6000803e3d6000fd5b5050505061144684836141d5565b8042811015612c3d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1685856000818110612c8157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d2057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b60003490507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612d8d57600080fd5b505af1158015612da1573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612e137f000000000000000000000000000000000000000000000000000000000000000089896000818110611cea57fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612e7d57600080fd5b505af1158015612e91573d6000803e3d6000fd5b505050506040513d6020811015612ea757600080fd5b5051612eaf57fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612edf57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612f7857600080fd5b505afa158015612f8c573d6000803e3d6000fd5b505050506040513d6020811015612fa257600080fd5b50516040805160208981028281018201909352898252929350612fe49290918a918a918291850190849080828437600092019190915250899250614edc915050565b87611f538289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061301757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f1b57600080fd5b600080824281101561312357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b60006131507f00000000000000000000000000000000000000000000000000000000000000008c8c6144b2565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b1580156131d157600080fd5b505af11580156131e5573d6000803e3d6000fd5b505050506040513d60208110156131fb57600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b15801561326e57600080fd5b505af1158015613282573d6000803e3d6000fd5b505050506040513d604081101561329857600080fd5b508051602090910151909250905060006132b28e8e615532565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff16146132ef5781836132f2565b82825b90975095508a871015613350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615da16023913960400191505060405180910390fd5b898610156133a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615cc96023913960400191505060405180910390fd5b505050505097509795505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b606061147e7f00000000000000000000000000000000000000000000000000000000000000008484614312565b600080600061345b7f00000000000000000000000000000000000000000000000000000000000000008e7f00000000000000000000000000000000000000000000000000000000000000006144b2565b905060008761346a578c61348c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561352857600080fd5b505af115801561353c573d6000803e3d6000fd5b5050505061354e8e8e8e8e8e8e610ee6565b909f909e509c50505050505050505050505050565b600080600083428110156135d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6135e68c8c8c8c8c8c615685565b909450925060006136187f00000000000000000000000000000000000000000000000000000000000000008e8e6144b2565b90506136268d33838861459d565b6136328c33838761459d565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156136b157600080fd5b505af11580156136c5573d6000803e3d6000fd5b505050506040513d60208110156136db57600080fd5b5051949d939c50939a509198505050505050505050565b6136fa614c88565b73ffffffffffffffffffffffffffffffffffffffff16613718612998565b73ffffffffffffffffffffffffffffffffffffffff161461379a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116613806576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c166026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000806000834281101561390857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6139368a7f00000000000000000000000000000000000000000000000000000000000000008b348c8c615685565b909450925060006139887f00000000000000000000000000000000000000000000000000000000000000008c7f00000000000000000000000000000000000000000000000000000000000000006144b2565b90506139968b33838861459d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b1580156139fe57600080fd5b505af1158015613a12573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613abe57600080fd5b505af1158015613ad2573d6000803e3d6000fd5b505050506040513d6020811015613ae857600080fd5b5051613af057fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015613b6f57600080fd5b505af1158015613b83573d6000803e3d6000fd5b505050506040513d6020811015613b9957600080fd5b5051925034841015613bb157613bb1338534036141d5565b505096509650969350505050565b60608142811015613c3157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1686866000818110613c7557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613d1457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b613d727f000000000000000000000000000000000000000000000000000000000000000088888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614acd92505050565b91503482600081518110613d8257fe5b60200260200101511115613de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d7d6024913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db083600081518110613e2a57fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b158015613e5d57600080fd5b505af1158015613e71573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613ee37f000000000000000000000000000000000000000000000000000000000000000089896000818110611cea57fe5b84600081518110613ef057fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613f6157600080fd5b505af1158015613f75573d6000803e3d6000fd5b505050506040513d6020811015613f8b57600080fd5b5051613f9357fe5b613fd28287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061476d915050565b81600081518110613fdf57fe5b602002602001015134111561284f5761284f3383600081518110613fff57fe5b602002602001015134036141d5565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b602083106140e457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016140a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614146576040519150601f19603f3d011682016040523d82523d6000602084013e61414b565b606091505b5091509150818015614179575080511580614179575080806020019051602081101561417657600080fd5b50515b6141ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615dc4602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b6020831061424c57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161420f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146142ae576040519150601f19603f3d011682016040523d82523d6000602084013e6142b3565b606091505b505090508061430d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180615c6d6034913960400191505060405180910390fd5b505050565b606060028251101561438557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d6f6a69746f4c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561439d57600080fd5b506040519080825280602002602001820160405280156143c7578160200160208202803683370190505b50905082816000815181106143d857fe5b60200260200101818152505060005b60018351038110156144aa5760008061442a8786858151811061440657fe5b602002602001015187866001018151811061441d57fe5b6020026020010151615986565b9150915060006144648887868151811061444057fe5b602002602001015188876001018151811061445757fe5b6020026020010151615a6e565b905061448585858151811061447557fe5b6020026020010151848484614c8c565b85856001018151811061449457fe5b60209081029190910101525050506001016143e7565b509392505050565b60008060006144c18585615532565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f3b58864b0ea7cc084fc3a5dc3ca7ea2fb5cedd9aac7f9fff0c3dd9a15713f1c7609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b6020831061467b57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161463e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146146dd576040519150601f19603f3d011682016040523d82523d6000602084013e6146e2565b606091505b5091509150818015614710575080511580614710575080806020019051602081101561470d57600080fd5b50515b614765576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615c3c6031913960400191505060405180910390fd5b505050505050565b60005b6001835103811015614ac75760008084838151811061478b57fe5b60200260200101518584600101815181106147a257fe5b60200260200101519150915060006147ba8383615532565b50905060008785600101815181106147ce57fe5b602090810291909101015160015490915073ffffffffffffffffffffffffffffffffffffffff16156148b157600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff87811660248301528681166044830152606482018590529151919092169163a9678a189160848083019260209291908290030181600087803b15801561488457600080fd5b505af1158015614898573d6000803e3d6000fd5b505050506040513d60208110156148ae57600080fd5b50505b6000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146148ef578260006148f3565b6000835b91509150600060028a5103881061490a578861494b565b61494b7f0000000000000000000000000000000000000000000000000000000000000000878c8b6002018151811061493e57fe5b60200260200101516144b2565b90506149787f000000000000000000000000000000000000000000000000000000000000000088886144b2565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f1916602001820160405280156149c2576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614a4d578181015183820152602001614a35565b50505050905090810190601f168015614a7a5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614a9c57600080fd5b505af1158015614ab0573d6000803e3d6000fd5b505060019099019850614770975050505050505050565b50505050565b6060600282511015614b4057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d6f6a69746f4c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015614b5857600080fd5b50604051908082528060200260200182016040528015614b82578160200160208202803683370190505b5090508281600183510381518110614b9657fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b80156144aa57600080614bf687866001860381518110614be257fe5b602002602001015187868151811061441d57fe5b915091506000614c2388876001870381518110614c0f57fe5b602002602001015188878151811061445757fe5b9050614c44858581518110614c3457fe5b6020026020010151848484614db4565b856001860381518110614c5357fe5b60209081029190910101525050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614bc6565b3390565b6000808511614ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615ca16028913960400191505060405180910390fd5b600084118015614cf65750600083115b614d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d586025913960400191505060405180910390fd5b6000614d628661271085900363ffffffff615af416565b90506000614d76828663ffffffff615af416565b90506000614d9c83614d908961271063ffffffff615af416565b9063ffffffff615b7a16565b9050808281614da757fe5b0498975050505050505050565b6000808511614e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615bed6029913960400191505060405180910390fd5b600084118015614e1e5750600083115b614e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d586025913960400191505060405180910390fd5b6000614e97612710614e8b878963ffffffff615af416565b9063ffffffff615af416565b90506000614eb4612710859003614e8b878a63ffffffff6153e016565b9050614ed16001828481614ec457fe5b049063ffffffff615b7a16565b979650505050505050565b60005b600183510381101561430d57600080848381518110614efa57fe5b6020026020010151858460010181518110614f1157fe5b6020026020010151915091506000614f298383615532565b5090506000614f597f000000000000000000000000000000000000000000000000000000000000000085856144b2565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015614fa757600080fd5b505afa158015614fbb573d6000803e3d6000fd5b505050506040513d6060811015614fd157600080fd5b508051602091820151604080517ffef4622400000000000000000000000000000000000000000000000000000000815290516dffffffffffffffffffffffffffff938416965092909116935060009273ffffffffffffffffffffffffffffffffffffffff89169263fef46224926004808201939291829003018186803b15801561505a57600080fd5b505afa15801561506e573d6000803e3d6000fd5b505050506040513d602081101561508457600080fd5b5051905060008073ffffffffffffffffffffffffffffffffffffffff8b8116908a16146150b25783856150b5565b84845b9150915061513a828c73ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f1b57600080fd5b965061514887838386614c8c565b60015490965073ffffffffffffffffffffffffffffffffffffffff16159450615227935050505057600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff89811660248301528881166044830152606482018590529151919092169163a9678a189160848083019260209291908290030181600087803b1580156151fa57600080fd5b505af115801561520e573d6000803e3d6000fd5b505050506040513d602081101561522457600080fd5b50505b6000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461526557826000615269565b6000835b91509150600060028c51038a10615280578a6152b4565b6152b47f0000000000000000000000000000000000000000000000000000000000000000898e8d6002018151811061493e57fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b8381101561536457818101518382015260200161534c565b50505050905090810190601f1680156153915780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156153b357600080fd5b505af11580156153c7573d6000803e3d6000fd5b50506001909b019a50614edf9950505050505050505050565b8082038281111561148157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b60008084116154ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615cec6022913960400191505060405180910390fd5b6000831180156154bc5750600082115b615511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d586025913960400191505060405180910390fd5b82615522858463ffffffff615af416565b8161552957fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156155ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d0e6022913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16106155f45782846155f7565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff821661567e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d6f6a69746f4c6962726172793a205a45524f5f414444524553530000000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000000000000000000000000000000000000000000009092169163e6a4390591604480820192602092909190829003018186803b15801561572557600080fd5b505afa158015615739573d6000803e3d6000fd5b505050506040513d602081101561574f57600080fd5b505173ffffffffffffffffffffffffffffffffffffffff16141561583557604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163c9c65396916044808201926020929091908290030181600087803b15801561580857600080fd5b505af115801561581c573d6000803e3d6000fd5b505050506040513d602081101561583257600080fd5b50505b6000806158637f00000000000000000000000000000000000000000000000000000000000000008b8b615986565b91509150816000148015615875575080155b1561588557879350869250615979565b6000615892898484615452565b90508781116158ff57858110156158f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615cc96023913960400191505060405180910390fd5b889450925082615977565b600061590c898486615452565b90508981111561591857fe5b87811015615971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615da16023913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b60008060006159958585615532565b5090506000806159a68888886144b2565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156159eb57600080fd5b505afa1580156159ff573d6000803e3d6000fd5b505050506040513d6060811015615a1557600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff87811690841614615a5c578082615a5f565b81815b90999098509650505050505050565b6000615a7b8484846144b2565b73ffffffffffffffffffffffffffffffffffffffff1663fef462246040518163ffffffff1660e01b815260040160206040518083038186803b158015615ac057600080fd5b505afa158015615ad4573d6000803e3d6000fd5b505050506040513d6020811015615aea57600080fd5b5051949350505050565b6000811580615b0f57505080820282828281615b0c57fe5b04145b61148157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561148157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe4d6f6a69746f4c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65644d6f6a69746f4c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e544d6f6a69746f526f757465723a20494e53554646494349454e545f425f414d4f554e544d6f6a69746f4c6962726172793a20494e53554646494349454e545f414d4f554e544d6f6a69746f4c6962726172793a204944454e544943414c5f4144445245535345534d6f6a69746f526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e544d6f6a69746f4c6962726172793a20494e53554646494349454e545f4c49515549444954594d6f6a69746f526f757465723a204558434553534956455f494e5055545f414d4f554e544d6f6a69746f526f757465723a20494e53554646494349454e545f415f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c6564a2646970667358221220de6666d403b82f9d73e4f6b7ec9f8a2f5babf3d1da6280c27a49f48c66b1ada364736f6c6343000606003300000000000000000000000079855a03426e15ad120df77efa623af87bd54ef30000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c07521

Deployed ByteCode

0x6080604052600436106101c65760003560e01c80637ff36ab5116100f7578063baa2abde11610095578063e8e3370011610064578063e8e3370014610d33578063f2fde38b14610dc0578063f305d71914610e00578063fb3bdb4114610e535761020c565b8063baa2abde14610b7d578063c45a015514610be7578063d06ca61f14610bfc578063ded9382a14610cb35761020c565b8063ad5c4648116100d1578063ad5c464814610a3f578063ad615dec14610a54578063af2979eb14610a8a578063b6f9de9514610aea5761020c565b80637ff36ab5146108f25780638803dbee146109855780638da5cb5b14610a2a5761020c565b80634f887183116101645780635b0d59841161013e5780635b0d5984146107135780635c11d79514610793578063715018a614610838578063791ac9471461084d5761020c565b80634f8871831461064957806352707d8c14610689578063571fd012146106d75761020c565b80632195995c116101a05780632195995c1461043657806338ed1739146104c15780634a25d94a146105665780634e5eda111461060b5761020c565b806302751cec1461021157806318cbafe51461028a5780631f00ca741461037f5761020c565b3661020c573373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c07521161461020a57fe5b005b600080fd5b34801561021d57600080fd5b50610271600480360360c081101561023457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610ee6565b6040805192835260208301919091528051918290030190f35b34801561029657600080fd5b5061032f600480360360a08110156102ad57600080fd5b8135916020810135918101906060810160408201356401000000008111156102d457600080fd5b8201836020820111156102e657600080fd5b8035906020019184602083028401116401000000008311171561030857600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611039565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561036b578181015183820152602001610353565b505050509050019250505060405180910390f35b34801561038b57600080fd5b5061032f600480360360408110156103a257600080fd5b813591908101906040810160208201356401000000008111156103c457600080fd5b8201836020820111156103d657600080fd5b803590602001918460208302840111640100000000831117156103f857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611451945050505050565b34801561044257600080fd5b50610271600480360361016081101561045a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff6101008201351690610120810135906101400135611487565b3480156104cd57600080fd5b5061032f600480360360a08110156104e457600080fd5b81359160208101359181019060608101604082013564010000000081111561050b57600080fd5b82018360208201111561051d57600080fd5b8035906020019184602083028401116401000000008311171561053f57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356115c5565b34801561057257600080fd5b5061032f600480360360a081101561058957600080fd5b8135916020810135918101906060810160408201356401000000008111156105b057600080fd5b8201836020820111156105c257600080fd5b803590602001918460208302840111640100000000831117156105e457600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611756565b34801561061757600080fd5b50610620611999565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561065557600080fd5b5061020a6004803603602081101561066c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166119b5565b34801561069557600080fd5b506106c5600480360360808110156106ac57600080fd5b5080359060208101359060408101359060600135611aa4565b60408051918252519081900360200190f35b3480156106e357600080fd5b506106c5600480360360808110156106fa57600080fd5b5080359060208101359060408101359060600135611abb565b34801561071f57600080fd5b506106c5600480360361014081101561073757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e08201351690610100810135906101200135611ac9565b34801561079f57600080fd5b5061020a600480360360a08110156107b657600080fd5b8135916020810135918101906060810160408201356401000000008111156107dd57600080fd5b8201836020820111156107ef57600080fd5b8035906020019184602083028401116401000000008311171561081157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611c1b565b34801561084457600080fd5b5061020a611fb4565b34801561085957600080fd5b5061020a600480360360a081101561087057600080fd5b81359160208101359181019060608101604082013564010000000081111561089757600080fd5b8201836020820111156108a957600080fd5b803590602001918460208302840111640100000000831117156108cb57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356120cb565b61032f6004803603608081101561090857600080fd5b8135919081019060408101602082013564010000000081111561092a57600080fd5b82018360208201111561093c57600080fd5b8035906020019184602083028401116401000000008311171561095e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612439565b34801561099157600080fd5b5061032f600480360360a08110156109a857600080fd5b8135916020810135918101906060810160408201356401000000008111156109cf57600080fd5b8201836020820111156109e157600080fd5b80359060200191846020830284011164010000000083111715610a0357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612859565b348015610a3657600080fd5b50610620612998565b348015610a4b57600080fd5b506106206129b4565b348015610a6057600080fd5b506106c560048036036060811015610a7757600080fd5b50803590602081013590604001356129d8565b348015610a9657600080fd5b506106c5600480360360c0811015610aad57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356129ed565b61020a60048036036080811015610b0057600080fd5b81359190810190604081016020820135640100000000811115610b2257600080fd5b820183602082011115610b3457600080fd5b80359060200191846020830284011164010000000083111715610b5657600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612bcd565b348015610b8957600080fd5b50610271600480360360e0811015610ba057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c001356130b0565b348015610bf357600080fd5b506106206133ba565b348015610c0857600080fd5b5061032f60048036036040811015610c1f57600080fd5b81359190810190604081016020820135640100000000811115610c4157600080fd5b820183602082011115610c5357600080fd5b80359060200191846020830284011164010000000083111715610c7557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506133de945050505050565b348015610cbf57600080fd5b506102716004803603610140811015610cd757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e0820135169061010081013590610120013561340b565b348015610d3f57600080fd5b50610da26004803603610100811015610d5757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e00135613563565b60408051938452602084019290925282820152519081900360600190f35b348015610dcc57600080fd5b5061020a60048036036020811015610de357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166136f2565b610da2600480360360c0811015610e1657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135613893565b61032f60048036036080811015610e6957600080fd5b81359190810190604081016020820135640100000000811115610e8b57600080fd5b820183602082011115610e9d57600080fd5b80359060200191846020830284011164010000000083111715610ebf57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135613bbf565b6000808242811015610f5957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b610f88897f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075218a8a8a308a6130b0565b9093509150610f9889868561400e565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561100b57600080fd5b505af115801561101f573d6000803e3d6000fd5b5050505061102d85836141d5565b50965096945050505050565b606081428110156110ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075211686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061111057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111af57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61120d7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061431292505050565b9150868260018451038151811061122057fe5b6020026020010151101561127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b6113448686600081811061128f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff163361132a7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38a8a60008181106112de57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061130857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166144b2565b8560008151811061133757fe5b602002602001015161459d565b6113838287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525030925061476d915050565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836001855103815181106113cf57fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561140d57600080fd5b505af1158015611421573d6000803e3d6000fd5b50505050611446848360018551038151811061143957fe5b60200260200101516141d5565b509695505050505050565b606061147e7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38484614acd565b90505b92915050565b60008060006114b77f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38f8f6144b2565b90506000876114c6578c6114e8565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561158457600080fd5b505af1158015611598573d6000803e3d6000fd5b505050506115ab8f8f8f8f8f8f8f6130b0565b809450819550505050509b509b9950505050505050505050565b6060814281101561163757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6116957f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061431292505050565b915086826001845103815181106116a857fe5b60200260200101511015611707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b6117178686600081811061128f57fe5b6114468287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061476d915050565b606081428110156117c857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075211686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061182d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118cc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61192a7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef389888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614acd92505050565b9150868260008151811061193a57fe5b6020026020010151111561127f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d7d6024913960400191505060405180910390fd5b60015473ffffffffffffffffffffffffffffffffffffffff1681565b6119bd614c88565b73ffffffffffffffffffffffffffffffffffffffff166119db612998565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000611ab285858585614c8c565b95945050505050565b6000611ab285858585614db4565b600080611b177f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38d7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075216144b2565b9050600086611b26578b611b48565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b158015611be457600080fd5b505af1158015611bf8573d6000803e3d6000fd5b50505050611c0a8d8d8d8d8d8d6129ed565b9d9c50505050505050505050505050565b8042811015611c8b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b611d1a85856000818110611c9b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611d147f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef389896000818110611cea57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061130857fe5b8a61459d565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611d4a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611de357600080fd5b505afa158015611df7573d6000803e3d6000fd5b505050506040513d6020811015611e0d57600080fd5b50516040805160208881028281018201909352888252929350611e4f929091899189918291850190849080828437600092019190915250889250614edc915050565b86611f538288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611e8257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f1b57600080fd5b505afa158015611f2f573d6000803e3d6000fd5b505050506040513d6020811015611f4557600080fd5b50519063ffffffff6153e016565b1015611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b5050505050505050565b611fbc614c88565b73ffffffffffffffffffffffffffffffffffffffff16611fda612998565b73ffffffffffffffffffffffffffffffffffffffff161461205c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b804281101561213b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075211685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181106121a057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461223f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b61224f85856000818110611c9b57fe5b61228d858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614edc915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752116916370a0823191602480820192602092909190829003018186803b15801561231d57600080fd5b505afa158015612331573d6000803e3d6000fd5b505050506040513d602081101561234757600080fd5b50519050868110156123a4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561241757600080fd5b505af115801561242b573d6000803e3d6000fd5b50505050611faa84826141d5565b606081428110156124ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16868660008181106124ef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461258e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b6125ec7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef33488888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061431292505050565b915086826001845103815181106125ff57fe5b6020026020010151101561265e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615d306028913960400191505060405180910390fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db0836000815181106126a757fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156126da57600080fd5b505af11580156126ee573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6127607f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef389896000818110611cea57fe5b8460008151811061276d57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156127de57600080fd5b505af11580156127f2573d6000803e3d6000fd5b505050506040513d602081101561280857600080fd5b505161281057fe5b61284f8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061476d915050565b5095945050505050565b606081428110156128cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6129297f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef389888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614acd92505050565b9150868260008151811061293957fe5b60200260200101511115611707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d7d6024913960400191505060405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff1690565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752181565b60006129e5848484615452565b949350505050565b60008142811015612a5f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b612a8e887f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752189898930896130b0565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051919450612b3892508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b158015612b0757600080fd5b505afa158015612b1b573d6000803e3d6000fd5b505050506040513d6020811015612b3157600080fd5b505161400e565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612bab57600080fd5b505af1158015612bbf573d6000803e3d6000fd5b5050505061144684836141d5565b8042811015612c3d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1685856000818110612c8157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d2057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b60003490507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612d8d57600080fd5b505af1158015612da1573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612e137f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef389896000818110611cea57fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612e7d57600080fd5b505af1158015612e91573d6000803e3d6000fd5b505050506040513d6020811015612ea757600080fd5b5051612eaf57fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612edf57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612f7857600080fd5b505afa158015612f8c573d6000803e3d6000fd5b505050506040513d6020811015612fa257600080fd5b50516040805160208981028281018201909352898252929350612fe49290918a918a918291850190849080828437600092019190915250899250614edc915050565b87611f538289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061301757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f1b57600080fd5b600080824281101561312357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b60006131507f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38c8c6144b2565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b1580156131d157600080fd5b505af11580156131e5573d6000803e3d6000fd5b505050506040513d60208110156131fb57600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b15801561326e57600080fd5b505af1158015613282573d6000803e3d6000fd5b505050506040513d604081101561329857600080fd5b508051602090910151909250905060006132b28e8e615532565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff16146132ef5781836132f2565b82825b90975095508a871015613350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615da16023913960400191505060405180910390fd5b898610156133a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615cc96023913960400191505060405180910390fd5b505050505097509795505050505050565b7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef381565b606061147e7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38484614312565b600080600061345b7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38e7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075216144b2565b905060008761346a578c61348c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561352857600080fd5b505af115801561353c573d6000803e3d6000fd5b5050505061354e8e8e8e8e8e8e610ee6565b909f909e509c50505050505050505050505050565b600080600083428110156135d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6135e68c8c8c8c8c8c615685565b909450925060006136187f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38e8e6144b2565b90506136268d33838861459d565b6136328c33838761459d565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156136b157600080fd5b505af11580156136c5573d6000803e3d6000fd5b505050506040513d60208110156136db57600080fd5b5051949d939c50939a509198505050505050505050565b6136fa614c88565b73ffffffffffffffffffffffffffffffffffffffff16613718612998565b73ffffffffffffffffffffffffffffffffffffffff161461379a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116613806576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c166026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000806000834281101561390857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b6139368a7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075218b348c8c615685565b909450925060006139887f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38c7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c075216144b2565b90506139968b33838861459d565b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b1580156139fe57600080fd5b505af1158015613a12573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613abe57600080fd5b505af1158015613ad2573d6000803e3d6000fd5b505050506040513d6020811015613ae857600080fd5b5051613af057fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015613b6f57600080fd5b505af1158015613b83573d6000803e3d6000fd5b505050506040513d6020811015613b9957600080fd5b5051925034841015613bb157613bb1338534036141d5565b505096509650969350505050565b60608142811015613c3157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4d6f6a69746f526f757465723a20455850495245440000000000000000000000604482015290519081900360640190fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1686866000818110613c7557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613d1457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d6f6a69746f526f757465723a20494e56414c49445f50415448000000000000604482015290519081900360640190fd5b613d727f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef388888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250614acd92505050565b91503482600081518110613d8257fe5b60200260200101511115613de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d7d6024913960400191505060405180910390fd5b7f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663d0e30db083600081518110613e2a57fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b158015613e5d57600080fd5b505af1158015613e71573d6000803e3d6000fd5b50505050507f0000000000000000000000004446fc4eb47f2f6586f9faab68b3498f86c0752173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613ee37f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef389896000818110611cea57fe5b84600081518110613ef057fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613f6157600080fd5b505af1158015613f75573d6000803e3d6000fd5b505050506040513d6020811015613f8b57600080fd5b5051613f9357fe5b613fd28287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061476d915050565b81600081518110613fdf57fe5b602002602001015134111561284f5761284f3383600081518110613fff57fe5b602002602001015134036141d5565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b602083106140e457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016140a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614146576040519150601f19603f3d011682016040523d82523d6000602084013e61414b565b606091505b5091509150818015614179575080511580614179575080806020019051602081101561417657600080fd5b50515b6141ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615dc4602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b6020831061424c57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161420f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146142ae576040519150601f19603f3d011682016040523d82523d6000602084013e6142b3565b606091505b505090508061430d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180615c6d6034913960400191505060405180910390fd5b505050565b606060028251101561438557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d6f6a69746f4c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561439d57600080fd5b506040519080825280602002602001820160405280156143c7578160200160208202803683370190505b50905082816000815181106143d857fe5b60200260200101818152505060005b60018351038110156144aa5760008061442a8786858151811061440657fe5b602002602001015187866001018151811061441d57fe5b6020026020010151615986565b9150915060006144648887868151811061444057fe5b602002602001015188876001018151811061445757fe5b6020026020010151615a6e565b905061448585858151811061447557fe5b6020026020010151848484614c8c565b85856001018151811061449457fe5b60209081029190910101525050506001016143e7565b509392505050565b60008060006144c18585615532565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f3b58864b0ea7cc084fc3a5dc3ca7ea2fb5cedd9aac7f9fff0c3dd9a15713f1c7609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b6020831061467b57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161463e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146146dd576040519150601f19603f3d011682016040523d82523d6000602084013e6146e2565b606091505b5091509150818015614710575080511580614710575080806020019051602081101561470d57600080fd5b50515b614765576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615c3c6031913960400191505060405180910390fd5b505050505050565b60005b6001835103811015614ac75760008084838151811061478b57fe5b60200260200101518584600101815181106147a257fe5b60200260200101519150915060006147ba8383615532565b50905060008785600101815181106147ce57fe5b602090810291909101015160015490915073ffffffffffffffffffffffffffffffffffffffff16156148b157600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff87811660248301528681166044830152606482018590529151919092169163a9678a189160848083019260209291908290030181600087803b15801561488457600080fd5b505af1158015614898573d6000803e3d6000fd5b505050506040513d60208110156148ae57600080fd5b50505b6000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146148ef578260006148f3565b6000835b91509150600060028a5103881061490a578861494b565b61494b7f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef3878c8b6002018151811061493e57fe5b60200260200101516144b2565b90506149787f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef388886144b2565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f1916602001820160405280156149c2576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614a4d578181015183820152602001614a35565b50505050905090810190601f168015614a7a5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614a9c57600080fd5b505af1158015614ab0573d6000803e3d6000fd5b505060019099019850614770975050505050505050565b50505050565b6060600282511015614b4057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d6f6a69746f4c6962726172793a20494e56414c49445f504154480000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015614b5857600080fd5b50604051908082528060200260200182016040528015614b82578160200160208202803683370190505b5090508281600183510381518110614b9657fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b80156144aa57600080614bf687866001860381518110614be257fe5b602002602001015187868151811061441d57fe5b915091506000614c2388876001870381518110614c0f57fe5b602002602001015188878151811061445757fe5b9050614c44858581518110614c3457fe5b6020026020010151848484614db4565b856001860381518110614c5357fe5b60209081029190910101525050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614bc6565b3390565b6000808511614ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615ca16028913960400191505060405180910390fd5b600084118015614cf65750600083115b614d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d586025913960400191505060405180910390fd5b6000614d628661271085900363ffffffff615af416565b90506000614d76828663ffffffff615af416565b90506000614d9c83614d908961271063ffffffff615af416565b9063ffffffff615b7a16565b9050808281614da757fe5b0498975050505050505050565b6000808511614e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615bed6029913960400191505060405180910390fd5b600084118015614e1e5750600083115b614e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d586025913960400191505060405180910390fd5b6000614e97612710614e8b878963ffffffff615af416565b9063ffffffff615af416565b90506000614eb4612710859003614e8b878a63ffffffff6153e016565b9050614ed16001828481614ec457fe5b049063ffffffff615b7a16565b979650505050505050565b60005b600183510381101561430d57600080848381518110614efa57fe5b6020026020010151858460010181518110614f1157fe5b6020026020010151915091506000614f298383615532565b5090506000614f597f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef385856144b2565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015614fa757600080fd5b505afa158015614fbb573d6000803e3d6000fd5b505050506040513d6060811015614fd157600080fd5b508051602091820151604080517ffef4622400000000000000000000000000000000000000000000000000000000815290516dffffffffffffffffffffffffffff938416965092909116935060009273ffffffffffffffffffffffffffffffffffffffff89169263fef46224926004808201939291829003018186803b15801561505a57600080fd5b505afa15801561506e573d6000803e3d6000fd5b505050506040513d602081101561508457600080fd5b5051905060008073ffffffffffffffffffffffffffffffffffffffff8b8116908a16146150b25783856150b5565b84845b9150915061513a828c73ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f1b57600080fd5b965061514887838386614c8c565b60015490965073ffffffffffffffffffffffffffffffffffffffff16159450615227935050505057600154604080517fa9678a1800000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff89811660248301528881166044830152606482018590529151919092169163a9678a189160848083019260209291908290030181600087803b1580156151fa57600080fd5b505af115801561520e573d6000803e3d6000fd5b505050506040513d602081101561522457600080fd5b50505b6000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461526557826000615269565b6000835b91509150600060028c51038a10615280578a6152b4565b6152b47f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef3898e8d6002018151811061493e57fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b8381101561536457818101518382015260200161534c565b50505050905090810190601f1680156153915780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156153b357600080fd5b505af11580156153c7573d6000803e3d6000fd5b50506001909b019a50614edf9950505050505050505050565b8082038281111561148157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b60008084116154ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615cec6022913960400191505060405180910390fd5b6000831180156154bc5750600082115b615511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d586025913960400191505060405180910390fd5b82615522858463ffffffff615af416565b8161552957fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156155ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d0e6022913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16106155f45782846155f7565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff821661567e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d6f6a69746f4c6962726172793a205a45524f5f414444524553530000000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef39092169163e6a4390591604480820192602092909190829003018186803b15801561572557600080fd5b505afa158015615739573d6000803e3d6000fd5b505050506040513d602081101561574f57600080fd5b505173ffffffffffffffffffffffffffffffffffffffff16141561583557604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef39092169163c9c65396916044808201926020929091908290030181600087803b15801561580857600080fd5b505af115801561581c573d6000803e3d6000fd5b505050506040513d602081101561583257600080fd5b50505b6000806158637f00000000000000000000000079855a03426e15ad120df77efa623af87bd54ef38b8b615986565b91509150816000148015615875575080155b1561588557879350869250615979565b6000615892898484615452565b90508781116158ff57858110156158f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615cc96023913960400191505060405180910390fd5b889450925082615977565b600061590c898486615452565b90508981111561591857fe5b87811015615971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615da16023913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b60008060006159958585615532565b5090506000806159a68888886144b2565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156159eb57600080fd5b505afa1580156159ff573d6000803e3d6000fd5b505050506040513d6060811015615a1557600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff87811690841614615a5c578082615a5f565b81815b90999098509650505050505050565b6000615a7b8484846144b2565b73ffffffffffffffffffffffffffffffffffffffff1663fef462246040518163ffffffff1660e01b815260040160206040518083038186803b158015615ac057600080fd5b505afa158015615ad4573d6000803e3d6000fd5b505050506040513d6020811015615aea57600080fd5b5051949350505050565b6000811580615b0f57505080820282828281615b0c57fe5b04145b61148157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561148157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe4d6f6a69746f4c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65644d6f6a69746f4c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e544d6f6a69746f526f757465723a20494e53554646494349454e545f425f414d4f554e544d6f6a69746f4c6962726172793a20494e53554646494349454e545f414d4f554e544d6f6a69746f4c6962726172793a204944454e544943414c5f4144445245535345534d6f6a69746f526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e544d6f6a69746f4c6962726172793a20494e53554646494349454e545f4c49515549444954594d6f6a69746f526f757465723a204558434553534956455f494e5055545f414d4f554e544d6f6a69746f526f757465723a20494e53554646494349454e545f415f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c6564a2646970667358221220de6666d403b82f9d73e4f6b7ec9f8a2f5babf3d1da6280c27a49f48c66b1ada364736f6c63430006060033