ETH Price: $3,387.75 (-1.72%)
Gas: 1 Gwei

Contract

0xE3C4e5daf8faC12277377CAE5D7F1d5eF9E9ed38
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Initialize Min L...192589062024-02-19 2:44:47130 days ago1708310687IN
0xE3C4e5da...eF9E9ed38
0 ETH0.0008429518.534538
Transfer Ownersh...192376032024-02-16 2:50:35133 days ago1708051835IN
0xE3C4e5da...eF9E9ed38
0 ETH0.0006648722.98698655
Set Proof Admin192376022024-02-16 2:50:23133 days ago1708051823IN
0xE3C4e5da...eF9E9ed38
0 ETH0.00063421.79311343
Create Token192373502024-02-16 1:59:59134 days ago1708048799IN
0xE3C4e5da...eF9E9ed38
0 ETH0.179770920.72565647
0x60803462192373312024-02-16 1:55:59134 days ago1708048559IN
 Create: ProofFactory
0 ETH0.0352485622.67303707

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ProofFactory

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : proofFactory.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./libraries/Ownable.sol";
import "./interfaces/ITeamFinanceLocker.sol";
import "./interfaces/ITokenCutter.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./interfaces/IProofFactoryTokenCutter.sol";
import "./interfaces/IProofFactoryGate.sol";
import "./interfaces/IProofFactory.sol";


contract ProofFactory is Ownable, IProofFactory {
    mapping(address => ProofToken) public validatedPairs;
    mapping(address => bool) private whitelisted;

    // struct WhitelistAdd_ {
    //     address[] whitelists;
    // }

    address public proofAdmin;
    address public routerAddress;
    address public lockerAddress;
    address public factoryGate;
    address payable public revenueAddress;
    address payable public rewardPoolAddress;
    uint256 private minLiq = 0;

    constructor(
        address _initialRouterAddress,
        address _initialLockerAddress,
        address _initialRewardPoolAddress,
        address _initialRevenueAddress,
        address _factoryGate
    ) {
        require(_initialRouterAddress != address(0), "zero router");
        require(_initialLockerAddress != address(0), "zero locker");
        require(
            _initialRewardPoolAddress != address(0),
            "zero rewardPool"
        );
        require(_initialRevenueAddress != address(0), "zero revenue");
        require(_factoryGate != address(0), "zero factory gate");

        routerAddress = _initialRouterAddress;
        lockerAddress = _initialLockerAddress;
        proofAdmin = msg.sender;
        revenueAddress = payable(_initialRevenueAddress);
        rewardPoolAddress = payable(_initialRewardPoolAddress);
        factoryGate = _factoryGate;
    }

    function updateProofFactory(
        address _tokenAddress,
        address _newFactory
    ) external onlyOwner {
        require(
            validatedPairs[_tokenAddress].owner != address(0),
            "invalid tokenAddress"
        );
        IProofFactoryTokenCutter(_tokenAddress).updateProofFactory(_newFactory);
    }

    function createToken(TokenParam memory _tokenParam) external payable{
        require(
            _tokenParam.unlockTime >= block.timestamp + 30 days,
            "unlock too short"
        );
        require(msg.value >= minLiq, "not enough liquidity");

        address newToken = IProofFactoryGate(factoryGate).createToken(
            _tokenParam,
            routerAddress,
            proofAdmin,
            msg.sender
        );

        if (msg.value != 0) {
            IERC20(newToken).approve(routerAddress, type(uint256).max);

            IUniswapV2Router02 router = IUniswapV2Router02(routerAddress);
            router.addLiquidityETH{value: msg.value}(
                address(newToken),
                IERC20(newToken).balanceOf(address(this)),
                0,
                0,
                address(this),
                block.timestamp
            );
        }

        // disable trading
        IProofFactoryTokenCutter(newToken).swapTradingStatus();

        validatedPairs[newToken] = ProofToken(
            false,
            IProofFactoryTokenCutter(newToken).pair(),
            msg.sender,
            _tokenParam.unlockTime,
            0
        );

        emit TokenCreated(newToken);
    }

    function finalizeToken(address tokenAddress) external override payable {
        _checkTokenStatus(tokenAddress);

        address _pair = validatedPairs[tokenAddress].pair;
        uint256 _unlockTime = validatedPairs[tokenAddress].unlockTime;
        IERC20(_pair).approve(lockerAddress, type(uint256).max);

        uint256 lpBalance = IERC20(_pair).balanceOf(address(this));

        uint256 _lockId = ITeamFinanceLocker(lockerAddress).lockToken{
            value: msg.value
        }(_pair, msg.sender, lpBalance, _unlockTime, false, 0x0000000000000000000000000000000000000000);
        validatedPairs[tokenAddress].lockId = _lockId;

        IProofFactoryTokenCutter(tokenAddress).addNFTSnapshot();

        //enable trading
        ITokenCutter(tokenAddress).swapTradingStatus();
        ITokenCutter(tokenAddress).setLaunchedAt();

        validatedPairs[tokenAddress].status = true;
    }

    function addmoreWhitelist(address tokenAddress, WhitelistAdd_ memory _WhitelistAdd) external override {
        _checkTokenStatus(tokenAddress);

        IProofFactoryTokenCutter(tokenAddress).addMoreToWhitelist(IProofFactoryTokenCutter.WhitelistAdd_(_WhitelistAdd.whitelists));
        
    }

    function cancelToken(address tokenAddress) external {
        _checkTokenStatus(tokenAddress);

        address _pair = validatedPairs[tokenAddress].pair;
        address _owner = validatedPairs[tokenAddress].owner;

        IUniswapV2Router02 router = IUniswapV2Router02(routerAddress);
        IERC20(_pair).approve(routerAddress, type(uint256).max);
        uint256 _lpBalance = IERC20(_pair).balanceOf(address(this));

        // enable transfer and allow router to exceed tx limit to remove liquidity
        ITokenCutter(tokenAddress).cancelToken();
        router.removeLiquidityETH(
            address(tokenAddress),
            _lpBalance,
            0,
            0,
            _owner,
            block.timestamp
        );

        // disable transfer of token
        ITokenCutter(tokenAddress).swapTradingStatus();

        delete validatedPairs[tokenAddress];
    }

    function factoryRevenue() external payable virtual {
        if (address(this).balance >= 0) {
            uint256 bal = address(this).balance / 2;
            revenueAddress.transfer(bal);
            rewardPoolAddress.transfer(bal);
        }
    }


    function initializeMinLiq() external onlyOwner {
        require(minLiq == 0, "already executed");
        minLiq = 1 ether;
    }

    function setWhitelist(address[] memory users, bool[] memory statuses) external onlyOwner {
        uint256 len = users.length;
        require(len == statuses.length, "list mismatch");
        for (uint256 i; i < len; i++) {
            whitelisted[users[i]] = statuses[i];
        }
    }

    function setProofAdmin(address newProofAdmin) external onlyOwner {
        proofAdmin = newProofAdmin;
    }

    function setLockerAddress(address newlockerAddress) external onlyOwner {
        lockerAddress = newlockerAddress;
    }

    function setRouterAddress(address newRouterAddress) external onlyOwner {
        routerAddress = payable(newRouterAddress);
    }

    function setRevenueAddress(address newRevenueAddress) external onlyOwner {
        revenueAddress = payable(newRevenueAddress);
    }

    function setRewardPoolAddress(
        address newRewardPoolAddress
    ) external onlyOwner {
        rewardPoolAddress = payable(newRewardPoolAddress);
    }

    function proofRevenueAddress() external view returns (address) {
        return revenueAddress;
    }

    function proofRewardPoolAddress() external view returns (address) {
        return rewardPoolAddress;
    }

    function _checkTokenStatus(address tokenAddress) internal view {
        require(validatedPairs[tokenAddress].owner == msg.sender, "!owner");
        require(validatedPairs[tokenAddress].status == false, "validated");
    }

    function isWhitelisted(address user) external view returns(bool) {
        return whitelisted[user];
    }

    receive() external payable {}
}

File 2 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 3 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 4 of 12 : IProofFactory.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

interface IProofFactory {
    struct ProofToken {
        bool status;
        address pair;
        address owner;
        uint256 unlockTime;
        uint256 lockId;
    }

    struct WhitelistAdd_ {
        address[] whitelists;
    }

    struct TokenParam {
        string tokenName;
        string tokenSymbol;
        uint256 initialSupply;
        uint256 percentToLP;
        address reflectionToken;
        address devWallet;
        uint256 initialReflectionFee;
        uint256 initialReflectionFeeOnSell;
        uint256 initialLpFee;
        uint256 initialLpFeeOnSell;
        uint256 initialDevFee;
        uint256 initialDevFeeOnSell;
        uint256 unlockTime;
        uint256 whitelistPeriod;
        address[] whitelists;
    }

    event TokenCreated(address _address);

    function createToken(TokenParam memory _tokenParam) external payable;
    function addmoreWhitelist(address tokenAddress, WhitelistAdd_ memory _WhitelistAdd) external;
    function finalizeToken(address tokenAddress) external payable;
}

File 5 of 12 : IProofFactoryGate.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

import "./IProofFactory.sol";

interface IProofFactoryGate {
    function updateProofFactory(address _newFactory) external;

    function createToken(
        IProofFactory.TokenParam memory _tokenParam,
        address _routerAddress,
        address _proofAdmin,
        address _owner
    ) external returns (address);
}

File 6 of 12 : IProofFactoryTokenCutter.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "../libraries/ProofFactoryFees.sol";

interface IProofFactoryTokenCutter is IERC20, IERC20Metadata {
    struct BaseData {
        string tokenName;
        string tokenSymbol;
        uint256 initialSupply;
        uint256 percentToLP;
        uint256 whitelistPeriod;
        address owner;
        address devWallet;
        address reflectionToken;
        address routerAddress;
        address initialProofAdmin;
        address[] whitelists;
        address nftWhitelist;
    }

    struct WhitelistAdd_ {
        address [] whitelists;
    }

    function setBasicData(
        BaseData memory _baseData,
        ProofFactoryFees.allFees memory fees
    ) external;

    function pair() external view returns (address);

    function swapTradingStatus() external;

    function updateProofFactory(address _newFactory) external;

    function addMoreToWhitelist(
        WhitelistAdd_ memory _WhitelistAdd
    ) external;

    function updateWhitelistPeriod(
        uint256 _whitelistPeriod
    ) external;

    function changeIsTxLimitExempt(
        address holder,
        bool exempt
    ) external;

    function addNFTSnapshot() external;

    event DistributorFail();

            function changeFees(
        uint256 initialMainFee,
        uint256 initialMainFeeOnSell,
        uint256 initialLpFee,
        uint256 initialLpFeeOnSell,
        uint256 initialDevFee,
        uint256 initialDevFeeOnSell
    ) external;
}

File 7 of 12 : ITeamFinanceLocker.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

interface ITeamFinanceLocker {
    function lockToken(
        address _tokenAddress,
        address _withdrawalAddress,
        uint256 _amount,
        uint256 _unlockTime,
        bool _mintNFT, 
        address referrer
    ) external payable returns (uint256 _id);
}

File 8 of 12 : ITokenCutter.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

interface ITokenCutter {
    function swapTradingStatus() external;

    function setLaunchedAt() external;

    function cancelToken() external;
}

File 9 of 12 : IUniswapV2Router02.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

File 10 of 12 : Context.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

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 11 of 12 : Ownable.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

import "./Context.sol";

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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "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),
            "new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

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

File 12 of 12 : ProofFactoryFees.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.17;

library ProofFactoryFees {
    struct allFees {
        uint256 reflectionFee;
        uint256 reflectionFeeOnSell;
        uint256 lpFee;
        uint256 lpFeeOnSell;
        uint256 devFee;
        uint256 devFeeOnSell;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200,
    "details": {
      "yul": true
    }
  },
  "viaIR": true,
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_initialRouterAddress","type":"address"},{"internalType":"address","name":"_initialLockerAddress","type":"address"},{"internalType":"address","name":"_initialRewardPoolAddress","type":"address"},{"internalType":"address","name":"_initialRevenueAddress","type":"address"},{"internalType":"address","name":"_factoryGate","type":"address"}],"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":"_address","type":"address"}],"name":"TokenCreated","type":"event"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"components":[{"internalType":"address[]","name":"whitelists","type":"address[]"}],"internalType":"struct IProofFactory.WhitelistAdd_","name":"_WhitelistAdd","type":"tuple"}],"name":"addmoreWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"cancelToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"percentToLP","type":"uint256"},{"internalType":"address","name":"reflectionToken","type":"address"},{"internalType":"address","name":"devWallet","type":"address"},{"internalType":"uint256","name":"initialReflectionFee","type":"uint256"},{"internalType":"uint256","name":"initialReflectionFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"initialLpFee","type":"uint256"},{"internalType":"uint256","name":"initialLpFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"initialDevFee","type":"uint256"},{"internalType":"uint256","name":"initialDevFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"},{"internalType":"uint256","name":"whitelistPeriod","type":"uint256"},{"internalType":"address[]","name":"whitelists","type":"address[]"}],"internalType":"struct IProofFactory.TokenParam","name":"_tokenParam","type":"tuple"}],"name":"createToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"factoryGate","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factoryRevenue","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"finalizeToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"initializeMinLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofRevenueAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofRewardPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revenueAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPoolAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newlockerAddress","type":"address"}],"name":"setLockerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newProofAdmin","type":"address"}],"name":"setProofAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevenueAddress","type":"address"}],"name":"setRevenueAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRewardPoolAddress","type":"address"}],"name":"setRewardPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool[]","name":"statuses","type":"bool[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_newFactory","type":"address"}],"name":"updateProofFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"validatedPairs","outputs":[{"internalType":"bool","name":"status","type":"bool"},{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"unlockTime","type":"uint256"},{"internalType":"uint256","name":"lockId","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080346200025457601f62001a9038819003918201601f191683019291906001600160401b0384118385101762000259578160a09284926040968752833981010312620002545762000051816200026f565b602091620000618382016200026f565b916200006f8583016200026f565b6200008b608062000083606086016200026f565b94016200026f565b916000549060018060a01b031995338784161760005588519260018060a01b03928391823391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36000600955169283156200022457508116928315620001f2578116948515620001bc5781169384156200018957169586156200015257508460045416176004558360055416176005553383600354161760035582600754161760075581600854161760085560065416176006555161180b9081620002858239f35b60649088519062461bcd60e51b8252600482015260116024820152707a65726f20666163746f7279206761746560781b6044820152fd5b885162461bcd60e51b815260048101899052600c60248201526b7a65726f20726576656e756560a01b6044820152606490fd5b885162461bcd60e51b815260048101899052600f60248201526e1e995c9bc81c995dd85c99141bdbdb608a1b6044820152606490fd5b885162461bcd60e51b815260048101899052600b60248201526a3d32b937903637b1b5b2b960a91b6044820152606490fd5b62461bcd60e51b815260048101899052600b60248201526a3d32b937903937baba32b960a91b6044820152606490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b0382168203620002545756fe6080604052600436101561001b575b361561001957600080fd5b005b6000803560e01c80630bc337d8146114515780632dcacf44146113e25780633268cc56146113b95780633675f29b146113905780633690e28714610c935780633af32abf146113515780633b99adf7146111ef57806341cb87fc146111af57806345338d631461116f57806359a51c3414611146578063653ed5d414610f0c57806370a7899114610ecc578063715018a614610e7257806373caf53614610d90578063845a51ec146105da5780638da5cb5b14610d695780639ee25ae414610cfc578063b24cf5d714610cbc578063b410908d14610c93578063c34a257f14610603578063d7e7a9e7146105da578063d9b13ce014610502578063e6a053d0146104c2578063f2c2842214610499578063f2fde38b146103df5763f4f1af3a14610145575061000e565b6020806003193601126103db5761015a6114b8565b906101648261173b565b6001600160a01b039182168084526001825260408085208054600290910154600554925163095ea7b360e01b815292861660048401526000196024840152929460089190911c81169184816044818a875af180156103a3576103ae575b506040516370a0823160e01b8152306004820152918483602481845afa9182156103a3578593889361036f575b509060c491600554166040519586948593635af06fed60e01b85526004850152336024850152604484015260648301528860848301528860a483015234905af1908115610364578491610332575b50828452600182526003604085200155813b156102fb5760405163f576f53960e01b81528390818160048183885af180156102ff5761031e575b5050813b156102fb5760405163fbd7575360e01b81528390818160048183885af180156102ff5761030a575b5050813b156102fb576040516309c64ef160e21b81528390818160048183885af180156102ff576102e7575b5091600192525260408120600160ff1982541617905580f35b6102f0906114e2565b6102fb5782386102ce565b8280fd5b6040513d84823e3d90fd5b610313906114e2565b6102fb5782386102a2565b610327906114e2565b6102fb578238610276565b90508181813d831161035d575b6103498183611510565b8101031261035857513861023c565b600080fd5b503d61033f565b6040513d86823e3d90fd5b848193959294503d831161039c575b6103888183611510565b8101031261035857518492909160c46101ee565b503d61037e565b6040513d89823e3d90fd5b6103cd90853d87116103d4575b6103c58183611510565b8101906116f9565b50386101c1565b503d6103bb565b5080fd5b5034610496576020366003190112610496576103f96114b8565b610401611604565b6001600160a01b0390811690811561045157600054826001600160601b0360a01b821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a380f35b60405162461bcd60e51b815260206004820152601d60248201527f6e6577206f776e657220697320746865207a65726f20616464726573730000006044820152606490fd5b80fd5b50346104965780600319360112610496576006546040516001600160a01b039091168152602090f35b5034610496576020366003190112610496576104dc6114b8565b6104e4611604565b60018060a01b03166001600160601b0360a01b600554161760055580f35b50346104965760403660031901126104965761051c6114b8565b6001600160a01b03602435818116929083900361035857819061053d611604565b169081845260016020526001604085200154161561059e578291813b1561059a57829160248392604051948593849263326c0bfd60e11b845260048401525af180156102ff5761058a5750f35b610593906114e2565b6104965780f35b5050fd5b60405162461bcd60e51b8152602060048201526014602482015273696e76616c696420746f6b656e4164647265737360601b6044820152606490fd5b50346104965780600319360112610496576008546040516001600160a01b039091168152602090f35b506003196020368201126103db576001600160401b03600435116103db576101e09060043536030112610496576040516101e081018181106001600160401b03821117610a1b57604052600435600401356001600160401b0381116102fb576106739060043691813501016115ae565b8152602460043501356001600160401b0381116102fb5761069b9060043691813501016115ae565b602082015260043560448101356040830152606481013560608301526106c3906084016114ce565b60808201526106d660a4600435016114ce565b60a082015260043560c481013560c083015260e481013560e08301526101048101356101008301526101248101356101208301526101448101356101408301526101648101356101608301526101848101356101808301526101a48101356101a08301526001600160401b036101c490910135116103db5761076336600480356101c48101350101611548565b6101c082015261018081015162278d00420190814211610c7f5710610c47576009543410610c0b5781602060018060a01b036006541660018060a01b03600454169060018060a01b03600354166040519485809481936309f2560b60e41b8352608060048401526108a96107fd6107e88c516101e0608488015261026487019061167c565b8c8b01518682036083190160a488015261167c565b60408c015160c486015260608c015160e486015260808c01516001600160a01b0390811661010487015260a08d01511661012486015260c08c015161014486015260e08c01516101648601526101008c01516101848601526101208c01516101a48601526101408c01516101c48601526101608c01516101e48601526101808c01516102048601526101a08c01516102248601526101c08c0151858203608319016102448701526116bc565b916024840152604483015233606483015203925af1908115610c00578391610be1575b5034610a7a575b6001600160a01b0316803b156102fb5760405163fbd7575360e01b81528390818160048183875af180156102ff57610a66575b505060405163a8aa1b3160e01b815291602083600481855afa928315610364578493610a31575b5061018001519060405160a081018181106001600160401b03821117610a1b577f2e2b3f61b70d2d131b2a807371103cc98d51adcaa5e9a8f9c32658ad8426e74e946020946003926040528784528584019160018060a01b0316825260408401338152606085019182526080850192898452868a52600188526109c360408b2096511515879060ff801983541691151516179055565b518554610100600160a81b03191660089190911b610100600160a81b0316178555516001850180546001600160a01b0319166001600160a01b039290921691909117905551600284015551910155604051908152a180f35b634e487b7160e01b600052604160045260246000fd5b610180919350610a589060203d602011610a5f575b610a508183611510565b81019061165d565b929061092d565b503d610a46565b610a6f906114e2565b6102fb578238610906565b6004805460405163095ea7b360e01b81526001600160a01b0391821692810192909252600019602483015282169060208160448188865af18015610bb757610bc2575b506024602060018060a01b036004541692604051928380926370a0823160e01b82523060048301525afa908115610bb7578591610b83575b5060405163f305d71960e01b81526001600160a01b0384166004820152602481019190915260006044820181905260648201523060848201524260a4820152906060908290818060c481015b039134905af1801561036457610b58575b506108d3565b606090813d8311610b7c575b610b6e8183611510565b810103126102fb5738610b52565b503d610b64565b90506020813d602011610baf575b81610b9e60209383611510565b810103126103585751610b41610af5565b3d9150610b91565b6040513d87823e3d90fd5b610bda9060203d6020116103d4576103c58183611510565b5038610abd565b610bfa915060203d602011610a5f57610a508183611510565b386108cc565b6040513d85823e3d90fd5b60405162461bcd60e51b81526020600482015260146024820152736e6f7420656e6f756768206c697175696469747960601b6044820152606490fd5b60405162461bcd60e51b815260206004820152601060248201526f1d5b9b1bd8dac81d1bdbc81cda1bdc9d60821b6044820152606490fd5b634e487b7160e01b84526011600452602484fd5b50346104965780600319360112610496576007546040516001600160a01b039091168152602090f35b503461049657602036600319011261049657610cd66114b8565b610cde611604565b60018060a01b03166001600160601b0360a01b600854161760085580f35b508060031936011261049657804760011c60018060a01b038060075416908380808086819681159788610d60575bf115610c005783928392839260085416908390610d57575bf115610d4b5780f35b604051903d90823e3d90fd5b506108fc610d42565b506108fc610d2a565b5034610496578060031936011261049657546040516001600160a01b039091168152602090f35b50346104965780600319604036820112610e6f57610dac6114b8565b602435916001600160401b0390818411610e66576020908436030112610e6a5760405192610dd9846114f5565b8060040135918211610e66576004610df49236920101611548565b8252610dff8161173b565b9051604051916001600160a01b031690610e18836114f5565b8252803b1561059a57610e55839291839260405194858094819363e572967b60e01b835260206004840152516020602484015260448301906116bc565b03925af180156102ff5761058a5750f35b8480fd5b505050fd5b50fd5b5034610496578060031936011261049657610e8b611604565b600080546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b503461049657602036600319011261049657610ee66114b8565b610eee611604565b60018060a01b03166001600160601b0360a01b600354161760035580f35b5034610496576020806003193601126103db57610f276114b8565b90610f318261173b565b6001600160a01b0382811680855260018084526040808720805492015460048054925163095ea7b360e01b815292861690830181905260001960248401529396949081169260081c1685826044818b855af19081156110ed576024928792611129575b506040516370a0823160e01b815230600482015292839182905afa9081156103a35787916110fc575b50853b156110f85760405163546a881160e01b81528781600481838b5af180156110ed576110cf575b5060408051629d473b60e21b81526001600160a01b039586166004820152602481019290925260006044830181905260648301529190931660848401524260a484015290829081878160c481015b03925af18015610364576110a4575b50813b156102fb5760405163fbd7575360e01b81528390818160048183885af180156102ff57611090575b5091600192525280600360408220828155826001820155826002820155015580f35b611099906114e2565b6102fb57823861106e565b604090813d83116110c8575b6110ba8183611510565b810103126102fb5738611043565b503d6110b0565b9160409391976110e261103496946114e2565b979193509193610fe6565b6040513d8a823e3d90fd5b8680fd5b90508481813d8311611122575b6111138183611510565b810103126110f8575138610fbd565b503d611109565b61113f90833d85116103d4576103c58183611510565b5038610f94565b50346104965780600319360112610496576003546040516001600160a01b039091168152602090f35b5034610496576020366003190112610496576111896114b8565b611191611604565b60018060a01b03166001600160601b0360a01b600754161760075580f35b5034610496576020366003190112610496576111c96114b8565b6111d1611604565b60018060a01b03166001600160601b0360a01b600454161760045580f35b5034610496576040366003190112610496576001600160401b03906004358281116103db57611222903690600401611548565b9160249081359081116102fb57366023820112156102fb5780600401359361124985611531565b916112576040519384611510565b858352602095848785019160051b830101913683116110f8578501905b82821061133557505050611286611604565b8051918051830361130157845b83811061129e578580f35b6112dd6112ab8284611711565b5115156001600160a01b036112c08487611711565b5116885260028952604088209060ff801983541691151516179055565b60001981146112ee57600101611293565b634e487b7160e01b865260116004528486fd5b60405162461bcd60e51b815260048101879052600d818601526c0d8d2e6e840dad2e6dac2e8c6d609b1b6044820152606490fd5b8135801515810361134d578152908701908701611274565b8780fd5b50346104965760203660031901126104965760209060ff906040906001600160a01b0361137c6114b8565b168152600284522054166040519015158152f35b50346104965780600319360112610496576005546040516001600160a01b039091168152602090f35b50346104965780600319360112610496576004546040516001600160a01b039091168152602090f35b50346104965760203660031901126104965760a0906001600160a01b03906040908261140c6114b8565b168152600160205220908154918160018201541660036002830154920154926040519460ff81161515865260081c166020850152604084015260608301526080820152f35b503461049657806003193601126104965761146a611604565b60095461148057670de0b6b3a764000060095580f35b60405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b600435906001600160a01b038216820361035857565b35906001600160a01b038216820361035857565b6001600160401b038111610a1b57604052565b602081019081106001600160401b03821117610a1b57604052565b90601f801991011681019081106001600160401b03821117610a1b57604052565b6001600160401b038111610a1b5760051b60200190565b81601f820112156103585780359161155f83611531565b9261156d6040519485611510565b808452602092838086019260051b820101928311610358578301905b828210611597575050505090565b8380916115a3846114ce565b815201910190611589565b81601f82011215610358578035906001600160401b038211610a1b57604051926115e2601f8401601f191660200185611510565b8284526020838301011161035857816000926020809301838601378301015290565b6000546001600160a01b0316330361161857565b60405162461bcd60e51b815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e65720000000000000000006044820152606490fd5b9081602091031261035857516001600160a01b03811681036103585790565b919082519283825260005b8481106116a8575050826000602080949584010152601f8019910116010190565b602081830181015184830182015201611687565b90815180825260208080930193019160005b8281106116dc575050505090565b83516001600160a01b0316855293810193928101926001016116ce565b90816020910312610358575180151581036103585790565b80518210156117255760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b60018060a01b03809116908160005260016020526001604060002001541633036117a757600052600160205260ff6040600020541661177657565b60405162461bcd60e51b81526020600482015260096024820152681d985b1a59185d195960ba1b6044820152606490fd5b60405162461bcd60e51b815260206004820152600660248201526510b7bbb732b960d11b6044820152606490fdfea2646970667358221220dffa014d50d1de457eb9604451acd5689078d8add901fe7cdd169facae78b0f964736f6c634300081100330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb000000000000000000000000377e168af6a06075423aede50856de177efaac3e000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e000000000000000000000000581d41c897ed2113b8525e03a22e1807541ae8c1

Deployed Bytecode

0x6080604052600436101561001b575b361561001957600080fd5b005b6000803560e01c80630bc337d8146114515780632dcacf44146113e25780633268cc56146113b95780633675f29b146113905780633690e28714610c935780633af32abf146113515780633b99adf7146111ef57806341cb87fc146111af57806345338d631461116f57806359a51c3414611146578063653ed5d414610f0c57806370a7899114610ecc578063715018a614610e7257806373caf53614610d90578063845a51ec146105da5780638da5cb5b14610d695780639ee25ae414610cfc578063b24cf5d714610cbc578063b410908d14610c93578063c34a257f14610603578063d7e7a9e7146105da578063d9b13ce014610502578063e6a053d0146104c2578063f2c2842214610499578063f2fde38b146103df5763f4f1af3a14610145575061000e565b6020806003193601126103db5761015a6114b8565b906101648261173b565b6001600160a01b039182168084526001825260408085208054600290910154600554925163095ea7b360e01b815292861660048401526000196024840152929460089190911c81169184816044818a875af180156103a3576103ae575b506040516370a0823160e01b8152306004820152918483602481845afa9182156103a3578593889361036f575b509060c491600554166040519586948593635af06fed60e01b85526004850152336024850152604484015260648301528860848301528860a483015234905af1908115610364578491610332575b50828452600182526003604085200155813b156102fb5760405163f576f53960e01b81528390818160048183885af180156102ff5761031e575b5050813b156102fb5760405163fbd7575360e01b81528390818160048183885af180156102ff5761030a575b5050813b156102fb576040516309c64ef160e21b81528390818160048183885af180156102ff576102e7575b5091600192525260408120600160ff1982541617905580f35b6102f0906114e2565b6102fb5782386102ce565b8280fd5b6040513d84823e3d90fd5b610313906114e2565b6102fb5782386102a2565b610327906114e2565b6102fb578238610276565b90508181813d831161035d575b6103498183611510565b8101031261035857513861023c565b600080fd5b503d61033f565b6040513d86823e3d90fd5b848193959294503d831161039c575b6103888183611510565b8101031261035857518492909160c46101ee565b503d61037e565b6040513d89823e3d90fd5b6103cd90853d87116103d4575b6103c58183611510565b8101906116f9565b50386101c1565b503d6103bb565b5080fd5b5034610496576020366003190112610496576103f96114b8565b610401611604565b6001600160a01b0390811690811561045157600054826001600160601b0360a01b821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a380f35b60405162461bcd60e51b815260206004820152601d60248201527f6e6577206f776e657220697320746865207a65726f20616464726573730000006044820152606490fd5b80fd5b50346104965780600319360112610496576006546040516001600160a01b039091168152602090f35b5034610496576020366003190112610496576104dc6114b8565b6104e4611604565b60018060a01b03166001600160601b0360a01b600554161760055580f35b50346104965760403660031901126104965761051c6114b8565b6001600160a01b03602435818116929083900361035857819061053d611604565b169081845260016020526001604085200154161561059e578291813b1561059a57829160248392604051948593849263326c0bfd60e11b845260048401525af180156102ff5761058a5750f35b610593906114e2565b6104965780f35b5050fd5b60405162461bcd60e51b8152602060048201526014602482015273696e76616c696420746f6b656e4164647265737360601b6044820152606490fd5b50346104965780600319360112610496576008546040516001600160a01b039091168152602090f35b506003196020368201126103db576001600160401b03600435116103db576101e09060043536030112610496576040516101e081018181106001600160401b03821117610a1b57604052600435600401356001600160401b0381116102fb576106739060043691813501016115ae565b8152602460043501356001600160401b0381116102fb5761069b9060043691813501016115ae565b602082015260043560448101356040830152606481013560608301526106c3906084016114ce565b60808201526106d660a4600435016114ce565b60a082015260043560c481013560c083015260e481013560e08301526101048101356101008301526101248101356101208301526101448101356101408301526101648101356101608301526101848101356101808301526101a48101356101a08301526001600160401b036101c490910135116103db5761076336600480356101c48101350101611548565b6101c082015261018081015162278d00420190814211610c7f5710610c47576009543410610c0b5781602060018060a01b036006541660018060a01b03600454169060018060a01b03600354166040519485809481936309f2560b60e41b8352608060048401526108a96107fd6107e88c516101e0608488015261026487019061167c565b8c8b01518682036083190160a488015261167c565b60408c015160c486015260608c015160e486015260808c01516001600160a01b0390811661010487015260a08d01511661012486015260c08c015161014486015260e08c01516101648601526101008c01516101848601526101208c01516101a48601526101408c01516101c48601526101608c01516101e48601526101808c01516102048601526101a08c01516102248601526101c08c0151858203608319016102448701526116bc565b916024840152604483015233606483015203925af1908115610c00578391610be1575b5034610a7a575b6001600160a01b0316803b156102fb5760405163fbd7575360e01b81528390818160048183875af180156102ff57610a66575b505060405163a8aa1b3160e01b815291602083600481855afa928315610364578493610a31575b5061018001519060405160a081018181106001600160401b03821117610a1b577f2e2b3f61b70d2d131b2a807371103cc98d51adcaa5e9a8f9c32658ad8426e74e946020946003926040528784528584019160018060a01b0316825260408401338152606085019182526080850192898452868a52600188526109c360408b2096511515879060ff801983541691151516179055565b518554610100600160a81b03191660089190911b610100600160a81b0316178555516001850180546001600160a01b0319166001600160a01b039290921691909117905551600284015551910155604051908152a180f35b634e487b7160e01b600052604160045260246000fd5b610180919350610a589060203d602011610a5f575b610a508183611510565b81019061165d565b929061092d565b503d610a46565b610a6f906114e2565b6102fb578238610906565b6004805460405163095ea7b360e01b81526001600160a01b0391821692810192909252600019602483015282169060208160448188865af18015610bb757610bc2575b506024602060018060a01b036004541692604051928380926370a0823160e01b82523060048301525afa908115610bb7578591610b83575b5060405163f305d71960e01b81526001600160a01b0384166004820152602481019190915260006044820181905260648201523060848201524260a4820152906060908290818060c481015b039134905af1801561036457610b58575b506108d3565b606090813d8311610b7c575b610b6e8183611510565b810103126102fb5738610b52565b503d610b64565b90506020813d602011610baf575b81610b9e60209383611510565b810103126103585751610b41610af5565b3d9150610b91565b6040513d87823e3d90fd5b610bda9060203d6020116103d4576103c58183611510565b5038610abd565b610bfa915060203d602011610a5f57610a508183611510565b386108cc565b6040513d85823e3d90fd5b60405162461bcd60e51b81526020600482015260146024820152736e6f7420656e6f756768206c697175696469747960601b6044820152606490fd5b60405162461bcd60e51b815260206004820152601060248201526f1d5b9b1bd8dac81d1bdbc81cda1bdc9d60821b6044820152606490fd5b634e487b7160e01b84526011600452602484fd5b50346104965780600319360112610496576007546040516001600160a01b039091168152602090f35b503461049657602036600319011261049657610cd66114b8565b610cde611604565b60018060a01b03166001600160601b0360a01b600854161760085580f35b508060031936011261049657804760011c60018060a01b038060075416908380808086819681159788610d60575bf115610c005783928392839260085416908390610d57575bf115610d4b5780f35b604051903d90823e3d90fd5b506108fc610d42565b506108fc610d2a565b5034610496578060031936011261049657546040516001600160a01b039091168152602090f35b50346104965780600319604036820112610e6f57610dac6114b8565b602435916001600160401b0390818411610e66576020908436030112610e6a5760405192610dd9846114f5565b8060040135918211610e66576004610df49236920101611548565b8252610dff8161173b565b9051604051916001600160a01b031690610e18836114f5565b8252803b1561059a57610e55839291839260405194858094819363e572967b60e01b835260206004840152516020602484015260448301906116bc565b03925af180156102ff5761058a5750f35b8480fd5b505050fd5b50fd5b5034610496578060031936011261049657610e8b611604565b600080546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b503461049657602036600319011261049657610ee66114b8565b610eee611604565b60018060a01b03166001600160601b0360a01b600354161760035580f35b5034610496576020806003193601126103db57610f276114b8565b90610f318261173b565b6001600160a01b0382811680855260018084526040808720805492015460048054925163095ea7b360e01b815292861690830181905260001960248401529396949081169260081c1685826044818b855af19081156110ed576024928792611129575b506040516370a0823160e01b815230600482015292839182905afa9081156103a35787916110fc575b50853b156110f85760405163546a881160e01b81528781600481838b5af180156110ed576110cf575b5060408051629d473b60e21b81526001600160a01b039586166004820152602481019290925260006044830181905260648301529190931660848401524260a484015290829081878160c481015b03925af18015610364576110a4575b50813b156102fb5760405163fbd7575360e01b81528390818160048183885af180156102ff57611090575b5091600192525280600360408220828155826001820155826002820155015580f35b611099906114e2565b6102fb57823861106e565b604090813d83116110c8575b6110ba8183611510565b810103126102fb5738611043565b503d6110b0565b9160409391976110e261103496946114e2565b979193509193610fe6565b6040513d8a823e3d90fd5b8680fd5b90508481813d8311611122575b6111138183611510565b810103126110f8575138610fbd565b503d611109565b61113f90833d85116103d4576103c58183611510565b5038610f94565b50346104965780600319360112610496576003546040516001600160a01b039091168152602090f35b5034610496576020366003190112610496576111896114b8565b611191611604565b60018060a01b03166001600160601b0360a01b600754161760075580f35b5034610496576020366003190112610496576111c96114b8565b6111d1611604565b60018060a01b03166001600160601b0360a01b600454161760045580f35b5034610496576040366003190112610496576001600160401b03906004358281116103db57611222903690600401611548565b9160249081359081116102fb57366023820112156102fb5780600401359361124985611531565b916112576040519384611510565b858352602095848785019160051b830101913683116110f8578501905b82821061133557505050611286611604565b8051918051830361130157845b83811061129e578580f35b6112dd6112ab8284611711565b5115156001600160a01b036112c08487611711565b5116885260028952604088209060ff801983541691151516179055565b60001981146112ee57600101611293565b634e487b7160e01b865260116004528486fd5b60405162461bcd60e51b815260048101879052600d818601526c0d8d2e6e840dad2e6dac2e8c6d609b1b6044820152606490fd5b8135801515810361134d578152908701908701611274565b8780fd5b50346104965760203660031901126104965760209060ff906040906001600160a01b0361137c6114b8565b168152600284522054166040519015158152f35b50346104965780600319360112610496576005546040516001600160a01b039091168152602090f35b50346104965780600319360112610496576004546040516001600160a01b039091168152602090f35b50346104965760203660031901126104965760a0906001600160a01b03906040908261140c6114b8565b168152600160205220908154918160018201541660036002830154920154926040519460ff81161515865260081c166020850152604084015260608301526080820152f35b503461049657806003193601126104965761146a611604565b60095461148057670de0b6b3a764000060095580f35b60405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e48195e1958dd5d195960821b6044820152606490fd5b600435906001600160a01b038216820361035857565b35906001600160a01b038216820361035857565b6001600160401b038111610a1b57604052565b602081019081106001600160401b03821117610a1b57604052565b90601f801991011681019081106001600160401b03821117610a1b57604052565b6001600160401b038111610a1b5760051b60200190565b81601f820112156103585780359161155f83611531565b9261156d6040519485611510565b808452602092838086019260051b820101928311610358578301905b828210611597575050505090565b8380916115a3846114ce565b815201910190611589565b81601f82011215610358578035906001600160401b038211610a1b57604051926115e2601f8401601f191660200185611510565b8284526020838301011161035857816000926020809301838601378301015290565b6000546001600160a01b0316330361161857565b60405162461bcd60e51b815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e65720000000000000000006044820152606490fd5b9081602091031261035857516001600160a01b03811681036103585790565b919082519283825260005b8481106116a8575050826000602080949584010152601f8019910116010190565b602081830181015184830182015201611687565b90815180825260208080930193019160005b8281106116dc575050505090565b83516001600160a01b0316855293810193928101926001016116ce565b90816020910312610358575180151581036103585790565b80518210156117255760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b60018060a01b03809116908160005260016020526001604060002001541633036117a757600052600160205260ff6040600020541661177657565b60405162461bcd60e51b81526020600482015260096024820152681d985b1a59185d195960ba1b6044820152606490fd5b60405162461bcd60e51b815260206004820152600660248201526510b7bbb732b960d11b6044820152606490fdfea2646970667358221220dffa014d50d1de457eb9604451acd5689078d8add901fe7cdd169facae78b0f964736f6c63430008110033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb000000000000000000000000377e168af6a06075423aede50856de177efaac3e000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e000000000000000000000000581d41c897ed2113b8525e03a22e1807541ae8c1

-----Decoded View---------------
Arg [0] : _initialRouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _initialLockerAddress (address): 0xE2fE530C047f2d85298b07D9333C05737f1435fB
Arg [2] : _initialRewardPoolAddress (address): 0x377E168aF6A06075423AEDe50856dE177EfaAc3E
Arg [3] : _initialRevenueAddress (address): 0xe9b4d32f829951a3Ce145D2CaA84Cf66af56CA5e
Arg [4] : _factoryGate (address): 0x581D41C897eD2113B8525E03A22E1807541aE8c1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb
Arg [2] : 000000000000000000000000377e168af6a06075423aede50856de177efaac3e
Arg [3] : 000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e
Arg [4] : 000000000000000000000000581d41c897ed2113b8525e03a22e1807541ae8c1


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.