ETH Price: $3,323.32 (+1.95%)
Gas: 3 Gwei

Contract

0xac6425eFd99263351C1b52d0A88c32bD457136fD
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim Tokens181591592023-09-18 0:03:35315 days ago1694995415IN
0xac6425eF...D457136fD
0 ETH0.000713989.40918395
Claim Tokens180370072023-08-31 20:41:59333 days ago1693514519IN
0xac6425eF...D457136fD
0 ETH0.0024155125.97826185
Claim Tokens179831212023-08-24 7:37:59340 days ago1692862679IN
0xac6425eF...D457136fD
0 ETH0.001493616.06338661
Claim Tokens179517762023-08-19 22:24:11344 days ago1692483851IN
0xac6425eF...D457136fD
0 ETH0.0011843612.35842485
Claim Tokens179435102023-08-18 18:38:23346 days ago1692383903IN
0xac6425eF...D457136fD
0 ETH0.0023986931.61081198
Claim Tokens179388212023-08-18 2:51:59346 days ago1692327119IN
0xac6425eF...D457136fD
0 ETH0.001914820.59324991
Claim Tokens179335182023-08-17 9:02:47347 days ago1692262967IN
0xac6425eF...D457136fD
0 ETH0.0021209219.26673419
Claim Tokens179312512023-08-17 1:25:59347 days ago1692235559IN
0xac6425eF...D457136fD
0 ETH0.0030393127.60956274
Claim Tokens179299522023-08-16 21:04:35348 days ago1692219875IN
0xac6425eF...D457136fD
0 ETH0.0039167649.74616987
Claim Tokens179271852023-08-16 11:46:59348 days ago1692186419IN
0xac6425eF...D457136fD
0 ETH0.0016573421.84107175
Claim Tokens179270902023-08-16 11:27:59348 days ago1692185279IN
0xac6425eF...D457136fD
0 ETH0.0015353620.23356541
Claim Tokens179269552023-08-16 11:00:47348 days ago1692183647IN
0xac6425eF...D457136fD
0 ETH0.001691422.28998332
Claim Tokens179260312023-08-16 7:54:23348 days ago1692172463IN
0xac6425eF...D457136fD
0 ETH0.0014904816.02979729
Claim Tokens179236392023-08-15 23:52:47348 days ago1692143567IN
0xac6425eF...D457136fD
0 ETH0.0017799219.14271846
Claim Tokens179227132023-08-15 20:46:35349 days ago1692132395IN
0xac6425eF...D457136fD
0 ETH0.00319634.37233458
Claim Tokens179196312023-08-15 10:25:11349 days ago1692095111IN
0xac6425eF...D457136fD
0 ETH0.0012548616.53705612
Claim Tokens179164182023-08-14 23:38:23349 days ago1692056303IN
0xac6425eF...D457136fD
0 ETH0.0013745518.11431177
Claim Tokens179155822023-08-14 20:50:23350 days ago1692046223IN
0xac6425eF...D457136fD
0 ETH0.0025194427.09607306
Claim Tokens179146142023-08-14 17:35:11350 days ago1692034511IN
0xac6425eF...D457136fD
0 ETH0.004307446.32514247
Claim Tokens179142712023-08-14 16:26:23350 days ago1692030383IN
0xac6425eF...D457136fD
0 ETH0.0029572831.80487233
Claim Tokens179134992023-08-14 13:51:11350 days ago1692021071IN
0xac6425eF...D457136fD
0 ETH0.0017980923.69597358
Claim Tokens179133672023-08-14 13:24:47350 days ago1692019487IN
0xac6425eF...D457136fD
0 ETH0.0019982221.49046466
Claim Tokens179131562023-08-14 12:42:23350 days ago1692016943IN
0xac6425eF...D457136fD
0 ETH0.0017525623.09595371
Claim Tokens179131092023-08-14 12:32:59350 days ago1692016379IN
0xac6425eF...D457136fD
0 ETH0.002662328.6324402
Claim Tokens179125552023-08-14 10:41:59350 days ago1692009719IN
0xac6425eF...D457136fD
0 ETH0.0012667913.62409736
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
178855402023-08-10 16:00:23354 days ago1691683223
0xac6425eF...D457136fD
50 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StrongXPresale

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : StrongXPresale.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

import "./interfaces/IStrongXNodeManager.sol";
import "./access/Whitelist.sol";

contract StrongXPresale is Ownable, Whitelist, ReentrancyGuard {
    using Address for address payable;
    using SafeMath for uint;

    bool public isInit;
    bool public isRefund;
    bool public isFinish;
    bool public isWhitelist;
    address public creatorWallet;
    uint public ethRaised;

    struct Pool {
        uint startTime;
        uint endTime;
        uint hardCap;
        uint softCap;
        uint maxBuy;
        uint minBuy;
        uint percentageOnTge;
        uint vestingPeriod;
    }

    Pool public pool;
    IERC20 public token;
    IStrongXNodeManager public nodeManager;

    mapping(address => uint) public ethContribution;
    mapping(address => uint) public tokensReleased;
    mapping(address => bool) public hasClaimedNodes;

    modifier onlyActive {
        require(block.timestamp >= pool.startTime, "Presale must be active.");
        require(block.timestamp <= pool.endTime, "Presale must be active.");
        _;
    }

    modifier onlyInactive {
        require(
            block.timestamp < pool.startTime || 
            block.timestamp > pool.endTime || 
            ethRaised >= pool.hardCap, "Presale must be inactive."
            );
        _;
    }

    modifier onlyRefund {
        require(
            isRefund == true || 
            (block.timestamp > pool.endTime && ethRaised < pool.softCap), "Refund unavailable."
        );
        _;
    }

    constructor(
        bool _isWhitelist,
        address _token,
        address _nodeManager,
        address _safeWallet
    ) {
        isInit = false;
        isFinish = false;
        isRefund = false;
        ethRaised = 0;

        isWhitelist = _isWhitelist;
        token = IERC20(_token);
        nodeManager = IStrongXNodeManager(_nodeManager);
        creatorWallet = _safeWallet;
    }

    receive() external payable {
        if (block.timestamp >= pool.startTime && block.timestamp <= pool.endTime) {
            purchase();
        } else {
            revert("Presale is closed");
        }
    }

    function purchase() public payable onlyActive {
        require(!isRefund, "Presale has been cancelled.");
        require(msg.value % pool.minBuy == 0, "Please only buy in increments of the minimum buy");

        uint weiAmount = msg.value;
        _checkSaleRequirements(msg.sender, weiAmount);
        ethRaised += weiAmount;
        ethContribution[msg.sender] += weiAmount;
        emit Bought(_msgSender(), weiAmount);
    }

    function refund() external onlyRefund {
        uint refundAmount = ethContribution[msg.sender];

        if (address(this).balance >= refundAmount) {
            if (refundAmount > 0) {
                ethContribution[msg.sender] = 0;
                Address.sendValue(payable(msg.sender), refundAmount);
                emit Refunded(msg.sender, refundAmount);
            }
        }
    }

    function claimTokens() external nonReentrant {
        require(isFinish, "Presale is not finished");
        (uint ethAmount, , , uint vestedAmount) = getUserInfo(msg.sender);
        require(ethAmount > 0, "User did not contribute");

        if (vestedAmount > 0) {
            tokensReleased[msg.sender] += vestedAmount;
            token.transfer(msg.sender, vestedAmount);
        }
    }

    function claimNodes() external nonReentrant {
        require(isFinish, "Presale is not finished");
        require(!hasClaimedNodes[msg.sender], "User already claimed their nodes");
        (, , uint nodeAmount) = _getUserInfo(msg.sender);
        require(nodeAmount > 0, "User did not contribute");

        hasClaimedNodes[msg.sender] = true;
        nodeManager.claim(msg.sender, nodeAmount);
    }

    /** VIEW FUNCTIONS */

    function getUserInfo(address beneficiary) public view returns (uint ethAmount, uint tokenAmount, uint nodeAmount, uint vestedAmount) {
        (ethAmount, tokenAmount, nodeAmount) = _getUserInfo(beneficiary);
        vestedAmount = _getUserVested(beneficiary, tokenAmount);
    }

    /** INTERNAL FUNCTIONS */

    function _checkSaleRequirements(address _beneficiary, uint _amount) internal view { 
        if (isWhitelist) {
            require(_whitelist[_msgSender()], "User is not whitelisted.");
        }

        require(_beneficiary != address(0), "Transfer to 0 address.");
        require(_amount != 0, "Wei Amount is 0");
        require(_amount >= pool.minBuy, "Min buy is not met.");
        require(_amount + ethContribution[_beneficiary] <= pool.maxBuy, "Max buy limit exceeded.");
        require(ethRaised + _amount <= pool.hardCap, "HC Reached.");
        this;
    }

    function _getUserInfo(address _beneficiary) internal view returns (uint, uint, uint) {
        uint ethAmount = ethContribution[_beneficiary];
        uint tokenAmount = uint((ethContribution[_beneficiary] * 1e18 / pool.minBuy) * 50);
        uint nodeAmount = uint(ethContribution[_beneficiary] * 5 / pool.minBuy);
        return (ethAmount, tokenAmount, nodeAmount);
    }

    function _getUserVested(address beneficiary, uint tokenAmount) internal view returns (uint releasableAmount) {
        if (tokenAmount > 0) {
            uint tokensOnTge = tokenAmount * pool.percentageOnTge / 100;
            uint tokensToVest = tokenAmount - tokensOnTge;
            uint alreadyReleased = tokensReleased[beneficiary];
            if (tokensToVest > 0) {
                uint vestedAmount = _getVestedAmount(tokensToVest, block.timestamp);
                releasableAmount = tokensOnTge + vestedAmount - alreadyReleased;
            } else {
                if (alreadyReleased == 0) {
                    releasableAmount = tokensOnTge;
                } else {
                    releasableAmount = 0;
                }
            }
        } else {
            releasableAmount = 0;
        }
    }

    function _getVestedAmount(uint _totalAmount, uint _timestamp) internal view returns (uint) {
        if (_timestamp < pool.endTime) {
            return 0;
        } else if (_timestamp > pool.endTime + pool.vestingPeriod) {
            return _totalAmount;
        } else {
            return (_totalAmount * (_timestamp - pool.endTime)) / pool.vestingPeriod;
        }
    }

    /** RESTRICTED FUNCTIONS */

    function initSale(
        uint _startTime,
        uint _endTime,
        uint _hardCap,
        uint _softCap,
        uint _maxBuy,
        uint _minBuy,
        uint _percentageOnTge,
        uint _vestingPeriod
    ) external onlyOwner onlyInactive {        
        require(isInit == false, "Presale is not initialized");
        require(_startTime >= block.timestamp, "Invalid start time.");
        require(_endTime > block.timestamp, "Invalid end time.");
        require(_minBuy < _maxBuy, "Min buy must be greater than max buy.");
        require(_minBuy > 0, "Min buy must exceed 0.");

        Pool memory newPool = Pool(
            _startTime,
            _endTime, 
            _hardCap,
            _softCap, 
            _maxBuy, 
            _minBuy,
            _percentageOnTge,
            _vestingPeriod
        );

        pool = newPool;
        
        isInit = true;
    }

    function finishSale() external onlyOwner {
        require(ethRaised >= pool.softCap, "Soft Cap is not met.");
        require(!isFinish, "Presale is already closed.");
        require(!isRefund, "Presale is in refund process.");

        isFinish = true;
        pool.endTime = block.timestamp;
        Address.sendValue(payable(creatorWallet), address(this).balance);
    }

    function cancelSale() external onlyOwner onlyActive {
        require(!isFinish, "Sale is finished.");
        pool.endTime = 0;
        isRefund = true;

        emit Cancelled(msg.sender, address(this));
    }

    function disableWhitelist() external onlyOwner {
        require(isWhitelist, "Whitelist is already disabled.");

        isWhitelist = false;
    }

    function setNodeManager(address _nodeManager) external onlyOwner {
        require(_nodeManager != address(0), "Must be a valid address");
        nodeManager = IStrongXNodeManager(_nodeManager);
    }

    function recoverTokens(address _token) external onlyOwner {
        IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this)));
    }

    /** EVENTS */

    event Cancelled(
        address indexed _inititator, 
        address indexed _presale
    );

    event Bought(
        address indexed _buyer, 
        uint _ethAmount
    );

    event Refunded(
        address indexed _refunder, 
        uint _ethAmount
    );
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

File 3 of 9 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 9 : 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 5 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 6 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 7 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 8 of 9 : Whitelist.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract Whitelist is Ownable {
    mapping(address => bool) public _whitelist;

    function whitelistAddresses(address[] calldata _users) external onlyOwner {
        for (uint i = 0; i < _users.length; i++){
            _whitelist[_users[i]] = true;
        }
    }

    function removeAddresses(address[] calldata _users) external onlyOwner {
        for (uint i = 0; i < _users.length; i++){
            _whitelist[_users[i]] = false;
        }
    }
}

File 9 of 9 : IStrongXNodeManager.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IStrongXNodeManager {
    function claim(address beneficiary, uint nodeAmount) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bool","name":"_isWhitelist","type":"bool"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_nodeManager","type":"address"},{"internalType":"address","name":"_safeWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ethAmount","type":"uint256"}],"name":"Bought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_inititator","type":"address"},{"indexed":true,"internalType":"address","name":"_presale","type":"address"}],"name":"Cancelled","type":"event"},{"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":true,"internalType":"address","name":"_refunder","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ethAmount","type":"uint256"}],"name":"Refunded","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimNodes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ethContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"getUserInfo","outputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"nodeAmount","type":"uint256"},{"internalType":"uint256","name":"vestedAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimedNodes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_hardCap","type":"uint256"},{"internalType":"uint256","name":"_softCap","type":"uint256"},{"internalType":"uint256","name":"_maxBuy","type":"uint256"},{"internalType":"uint256","name":"_minBuy","type":"uint256"},{"internalType":"uint256","name":"_percentageOnTge","type":"uint256"},{"internalType":"uint256","name":"_vestingPeriod","type":"uint256"}],"name":"initSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isFinish","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nodeManager","outputs":[{"internalType":"contract IStrongXNodeManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"hardCap","type":"uint256"},{"internalType":"uint256","name":"softCap","type":"uint256"},{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"minBuy","type":"uint256"},{"internalType":"uint256","name":"percentageOnTge","type":"uint256"},{"internalType":"uint256","name":"vestingPeriod","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nodeManager","type":"address"}],"name":"setNodeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200397a3803806200397a833981810160405281019062000037919062000311565b620000576200004b6200019e60201b60201c565b620001a660201b60201c565b60016002819055506000600360006101000a81548160ff0219169083151502179055506000600360026101000a81548160ff0219169083151502179055506000600360016101000a81548160ff0219169083151502179055506000600481905550836003806101000a81548160ff02191690831515021790555082600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000383565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b60008115159050919050565b62000286816200026f565b81146200029257600080fd5b50565b600081519050620002a6816200027b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002d982620002ac565b9050919050565b620002eb81620002cc565b8114620002f757600080fd5b50565b6000815190506200030b81620002e0565b92915050565b600080600080608085870312156200032e576200032d6200026a565b5b60006200033e8782880162000295565b94505060206200035187828801620002fa565b93505060406200036487828801620002fa565b92505060606200037787828801620002fa565b91505092959194509250565b6135e780620003936000396000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063cfdb63ac11610095578063e7e1049011610064578063e7e104901461062d578063f2fde38b14610644578063fc0c546a1461066d578063fddf0fc01461069857610234565b8063cfdb63ac14610597578063d32e70e4146105d4578063d6b0f484146105eb578063d921eb781461060257610234565b80638f86f5ea116100d15780638f86f5ea146105015780639bb5cd3f14610518578063a84eb99914610543578063b145a5b81461056c57610234565b8063715018a6146104945780637cdc65f2146104ab5780638da5cb5b146104d657610234565b806337fdd73f1161016457806348c54b9d1161013e57806348c54b9d1461041c578063590e1ae3146104335780636386c1c71461044a57806364edfbf01461048a57610234565b806337fdd73f1461038b5780634034175e146103b45780634146ed0a146103f157610234565b806316f0115b116101a057806316f0115b146102c857806327cea3a8146102fa5780632bf04304146103375780632c8ca0ea1461036057610234565b806310eef7a8146102395780631319e7e11461027657806316114acd1461029f57610234565b366102345760056000015442101580156101e557506005600101544211155b156101f7576101f26106c3565b610232565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022990612130565b60405180910390fd5b005b600080fd5b34801561024557600080fd5b50610260600480360381019061025b91906121b8565b6108cb565b60405161026d9190612200565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906121b8565b6108eb565b005b3480156102ab57600080fd5b506102c660048036038101906102c191906121b8565b6109a6565b005b3480156102d457600080fd5b506102dd610ab0565b6040516102f1989796959493929190612234565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906121b8565b610ae6565b60405161032e91906122b2565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612332565b610afe565b005b34801561036c57600080fd5b50610375610baa565b6040516103829190612200565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906123ab565b610bbd565b005b3480156103c057600080fd5b506103db60048036038101906103d691906121b8565b610e47565b6040516103e891906122b2565b60405180910390f35b3480156103fd57600080fd5b50610406610e5f565b6040516104139190612200565b60405180910390f35b34801561042857600080fd5b50610431610e70565b005b34801561043f57600080fd5b50610448611029565b005b34801561045657600080fd5b50610471600480360381019061046c91906121b8565b611196565b6040516104819493929190612461565b60405180910390f35b6104926106c3565b005b3480156104a057600080fd5b506104a96111c4565b005b3480156104b757600080fd5b506104c06111d8565b6040516104cd91906124b5565b60405180910390f35b3480156104e257600080fd5b506104eb6111fe565b6040516104f891906124b5565b60405180910390f35b34801561050d57600080fd5b50610516611227565b005b34801561052457600080fd5b5061052d61136c565b60405161053a919061252f565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612332565b611392565b005b34801561057857600080fd5b5061058161143f565b60405161058e9190612200565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906121b8565b611452565b6040516105cb9190612200565b60405180910390f35b3480156105e057600080fd5b506105e9611472565b005b3480156105f757600080fd5b5061060061169a565b005b34801561060e57600080fd5b5061061761170b565b6040516106249190612200565b60405180910390f35b34801561063957600080fd5b5061064261171e565b005b34801561065057600080fd5b5061066b600480360381019061066691906121b8565b611888565b005b34801561067957600080fd5b5061068261190b565b60405161068f919061256b565b60405180910390f35b3480156106a457600080fd5b506106ad611931565b6040516106ba91906122b2565b60405180910390f35b60056000015442101561070b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610702906125d2565b60405180910390fd5b600560010154421115610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a906125d2565b60405180910390fd5b600360019054906101000a900460ff16156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a9061263e565b60405180910390fd5b60006005800154346107b5919061268d565b146107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90612730565b60405180910390fd5b60003490506108043382611937565b8060046000828254610816919061277f565b9250508190555080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461086c919061277f565b9250508190555061087b611bc2565b73ffffffffffffffffffffffffffffffffffffffff167fc55650ccda1011e1cdc769b1fbf546ebb8c97800b6072b49e06cd560305b1d67826040516108c091906122b2565b60405180910390a250565b60116020528060005260406000206000915054906101000a900460ff1681565b6108f3611bca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906127ff565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6109ae611bca565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6109d26111fe565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a0b91906124b5565b602060405180830381865afa158015610a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c9190612834565b6040518363ffffffff1660e01b8152600401610a69929190612861565b6020604051808303816000875af1158015610a88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aac91906128b6565b5050565b60058060000154908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b60106020528060005260406000206000915090505481565b610b06611bca565b60005b82829050811015610ba5576001806000858585818110610b2c57610b2b6128e3565b5b9050602002016020810190610b4191906121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b9d90612912565b915050610b09565b505050565b600360029054906101000a900460ff1681565b610bc5611bca565b600560000154421080610bdc575060056001015442115b80610bee575060056002015460045410155b610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906129a6565b60405180910390fd5b60001515600360009054906101000a900460ff16151514610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90612a12565b60405180910390fd5b42881015610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90612a7e565b60405180910390fd5b428711610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90612aea565b60405180910390fd5b838310610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190612b7c565b60405180910390fd5b60008311610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490612be8565b60405180910390fd5b60006040518061010001604052808a8152602001898152602001888152602001878152602001868152602001858152602001848152602001838152509050806005600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701559050506001600360006101000a81548160ff021916908315150217905550505050505050505050565b600f6020528060005260406000206000915090505481565b60038054906101000a900460ff1681565b610e78611c48565b600360029054906101000a900460ff16610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90612c54565b60405180910390fd5b600080610ed333611196565b93505050915060008211610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390612cc0565b60405180910390fd5b600081111561101d5780601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f74919061277f565b92505081905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610fd8929190612861565b6020604051808303816000875af1158015610ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101b91906128b6565b505b5050611027611c95565b565b60011515600360019054906101000a900460ff16151514806110615750600560010154421180156110605750600560030154600454105b5b6110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790612d2c565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050804710611193576000811115611192576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111433382611c9f565b3373ffffffffffffffffffffffffffffffffffffffff167fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d06518260405161118991906122b2565b60405180910390a25b5b50565b6000806000806111a585611d93565b8094508195508296505050506111bb8584611ebf565b90509193509193565b6111cc611bca565b6111d66000611f9d565b565b600360049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122f611bca565b6005600301546004541015611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090612d98565b60405180910390fd5b600360029054906101000a900460ff16156112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090612e04565b60405180910390fd5b600360019054906101000a900460ff1615611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090612e70565b60405180910390fd5b6001600360026101000a81548160ff0219169083151502179055504260056001018190555061136a600360049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647611c9f565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61139a611bca565b60005b8282905081101561143a576000600160008585858181106113c1576113c06128e3565b5b90506020020160208101906113d691906121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061143290612912565b91505061139d565b505050565b600360009054906101000a900460ff1681565b60016020528060005260406000206000915054906101000a900460ff1681565b61147a611c48565b600360029054906101000a900460ff166114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090612c54565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90612edc565b60405180910390fd5b600061156133611d93565b92505050600081116115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90612cc0565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aad3ec9633836040518363ffffffff1660e01b815260040161165d929190612861565b600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b5050505050611698611c95565b565b6116a2611bca565b60038054906101000a900460ff166116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612f48565b60405180910390fd5b60006003806101000a81548160ff021916908315150217905550565b600360019054906101000a900460ff1681565b611726611bca565b60056000015442101561176e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611765906125d2565b60405180910390fd5b6005600101544211156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906125d2565b60405180910390fd5b600360029054906101000a900460ff1615611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90612fb4565b60405180910390fd5b60006005600101819055506001600360016101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167ff91f011c087a627ca425b0ca8a8859a2ae764d033f94c53b18359b02b374726f60405160405180910390a3565b611890611bca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613046565b60405180910390fd5b61190881611f9d565b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60038054906101000a900460ff16156119de5760016000611956611bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906130b2565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a449061311e565b60405180910390fd5b60008103611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a879061318a565b60405180910390fd5b6005800154811015611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906131f6565b60405180910390fd5b600560040154600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611b28919061277f565b1115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613262565b60405180910390fd5b60056002015481600454611b7d919061277f565b1115611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906132ce565b60405180910390fd5b5050565b600033905090565b611bd2611bc2565b73ffffffffffffffffffffffffffffffffffffffff16611bf06111fe565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d9061333a565b60405180910390fd5b565b6002805403611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c83906133a6565b60405180910390fd5b60028081905550565b6001600281905550565b80471015611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990613412565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d0890613463565b60006040518083038185875af1925050503d8060008114611d45576040519150601f19603f3d011682016040523d82523d6000602084013e611d4a565b606091505b5050905080611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906134ea565b60405180910390fd5b505050565b600080600080600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060326005800154670de0b6b3a7640000600f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e37919061350a565b611e41919061354c565b611e4b919061350a565b9050600060058001546005600f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea0919061350a565b611eaa919061354c565b90508282829550955095505050509193909250565b600080821115611f92576000606460056006015484611ede919061350a565b611ee8919061354c565b905060008184611ef8919061357d565b90506000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000821115611f74576000611f538342612061565b9050818185611f62919061277f565b611f6c919061357d565b945050611f8a565b60008103611f8457829350611f89565b600093505b5b505050611f97565b600090505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060056001015482101561207957600090506120cd565b60056007015460056001015461208f919061277f565b82111561209e578290506120cd565b600560070154600560010154836120b5919061357d565b846120c0919061350a565b6120ca919061354c565b90505b92915050565b600082825260208201905092915050565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b600061211a6011836120d3565b9150612125826120e4565b602082019050919050565b600060208201905081810360008301526121498161210d565b9050919050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121858261215a565b9050919050565b6121958161217a565b81146121a057600080fd5b50565b6000813590506121b28161218c565b92915050565b6000602082840312156121ce576121cd612150565b5b60006121dc848285016121a3565b91505092915050565b60008115159050919050565b6121fa816121e5565b82525050565b600060208201905061221560008301846121f1565b92915050565b6000819050919050565b61222e8161221b565b82525050565b60006101008201905061224a600083018b612225565b612257602083018a612225565b6122646040830189612225565b6122716060830188612225565b61227e6080830187612225565b61228b60a0830186612225565b61229860c0830185612225565b6122a560e0830184612225565b9998505050505050505050565b60006020820190506122c76000830184612225565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122f2576122f16122cd565b5b8235905067ffffffffffffffff81111561230f5761230e6122d2565b5b60208301915083602082028301111561232b5761232a6122d7565b5b9250929050565b6000806020838503121561234957612348612150565b5b600083013567ffffffffffffffff81111561236757612366612155565b5b612373858286016122dc565b92509250509250929050565b6123888161221b565b811461239357600080fd5b50565b6000813590506123a58161237f565b92915050565b600080600080600080600080610100898b0312156123cc576123cb612150565b5b60006123da8b828c01612396565b98505060206123eb8b828c01612396565b97505060406123fc8b828c01612396565b965050606061240d8b828c01612396565b955050608061241e8b828c01612396565b94505060a061242f8b828c01612396565b93505060c06124408b828c01612396565b92505060e06124518b828c01612396565b9150509295985092959890939650565b60006080820190506124766000830187612225565b6124836020830186612225565b6124906040830185612225565b61249d6060830184612225565b95945050505050565b6124af8161217a565b82525050565b60006020820190506124ca60008301846124a6565b92915050565b6000819050919050565b60006124f56124f06124eb8461215a565b6124d0565b61215a565b9050919050565b6000612507826124da565b9050919050565b6000612519826124fc565b9050919050565b6125298161250e565b82525050565b60006020820190506125446000830184612520565b92915050565b6000612555826124fc565b9050919050565b6125658161254a565b82525050565b6000602082019050612580600083018461255c565b92915050565b7f50726573616c65206d757374206265206163746976652e000000000000000000600082015250565b60006125bc6017836120d3565b91506125c782612586565b602082019050919050565b600060208201905081810360008301526125eb816125af565b9050919050565b7f50726573616c6520686173206265656e2063616e63656c6c65642e0000000000600082015250565b6000612628601b836120d3565b9150612633826125f2565b602082019050919050565b600060208201905081810360008301526126578161261b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006126988261221b565b91506126a38361221b565b9250826126b3576126b261265e565b5b828206905092915050565b7f506c65617365206f6e6c792062757920696e20696e6372656d656e7473206f6660008201527f20746865206d696e696d756d2062757900000000000000000000000000000000602082015250565b600061271a6030836120d3565b9150612725826126be565b604082019050919050565b600060208201905081810360008301526127498161270d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061278a8261221b565b91506127958361221b565b92508282019050808211156127ad576127ac612750565b5b92915050565b7f4d75737420626520612076616c69642061646472657373000000000000000000600082015250565b60006127e96017836120d3565b91506127f4826127b3565b602082019050919050565b60006020820190508181036000830152612818816127dc565b9050919050565b60008151905061282e8161237f565b92915050565b60006020828403121561284a57612849612150565b5b60006128588482850161281f565b91505092915050565b600060408201905061287660008301856124a6565b6128836020830184612225565b9392505050565b612893816121e5565b811461289e57600080fd5b50565b6000815190506128b08161288a565b92915050565b6000602082840312156128cc576128cb612150565b5b60006128da848285016128a1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061291d8261221b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361294f5761294e612750565b5b600182019050919050565b7f50726573616c65206d75737420626520696e6163746976652e00000000000000600082015250565b60006129906019836120d3565b915061299b8261295a565b602082019050919050565b600060208201905081810360008301526129bf81612983565b9050919050565b7f50726573616c65206973206e6f7420696e697469616c697a6564000000000000600082015250565b60006129fc601a836120d3565b9150612a07826129c6565b602082019050919050565b60006020820190508181036000830152612a2b816129ef565b9050919050565b7f496e76616c69642073746172742074696d652e00000000000000000000000000600082015250565b6000612a686013836120d3565b9150612a7382612a32565b602082019050919050565b60006020820190508181036000830152612a9781612a5b565b9050919050565b7f496e76616c696420656e642074696d652e000000000000000000000000000000600082015250565b6000612ad46011836120d3565b9150612adf82612a9e565b602082019050919050565b60006020820190508181036000830152612b0381612ac7565b9050919050565b7f4d696e20627579206d7573742062652067726561746572207468616e206d617860008201527f206275792e000000000000000000000000000000000000000000000000000000602082015250565b6000612b666025836120d3565b9150612b7182612b0a565b604082019050919050565b60006020820190508181036000830152612b9581612b59565b9050919050565b7f4d696e20627579206d7573742065786365656420302e00000000000000000000600082015250565b6000612bd26016836120d3565b9150612bdd82612b9c565b602082019050919050565b60006020820190508181036000830152612c0181612bc5565b9050919050565b7f50726573616c65206973206e6f742066696e6973686564000000000000000000600082015250565b6000612c3e6017836120d3565b9150612c4982612c08565b602082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f5573657220646964206e6f7420636f6e74726962757465000000000000000000600082015250565b6000612caa6017836120d3565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b7f526566756e6420756e617661696c61626c652e00000000000000000000000000600082015250565b6000612d166013836120d3565b9150612d2182612ce0565b602082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b7f536f667420436170206973206e6f74206d65742e000000000000000000000000600082015250565b6000612d826014836120d3565b9150612d8d82612d4c565b602082019050919050565b60006020820190508181036000830152612db181612d75565b9050919050565b7f50726573616c6520697320616c726561647920636c6f7365642e000000000000600082015250565b6000612dee601a836120d3565b9150612df982612db8565b602082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f50726573616c6520697320696e20726566756e642070726f636573732e000000600082015250565b6000612e5a601d836120d3565b9150612e6582612e24565b602082019050919050565b60006020820190508181036000830152612e8981612e4d565b9050919050565b7f5573657220616c726561647920636c61696d6564207468656972206e6f646573600082015250565b6000612ec66020836120d3565b9150612ed182612e90565b602082019050919050565b60006020820190508181036000830152612ef581612eb9565b9050919050565b7f57686974656c69737420697320616c72656164792064697361626c65642e0000600082015250565b6000612f32601e836120d3565b9150612f3d82612efc565b602082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b7f53616c652069732066696e69736865642e000000000000000000000000000000600082015250565b6000612f9e6011836120d3565b9150612fa982612f68565b602082019050919050565b60006020820190508181036000830152612fcd81612f91565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130306026836120d3565b915061303b82612fd4565b604082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f55736572206973206e6f742077686974656c69737465642e0000000000000000600082015250565b600061309c6018836120d3565b91506130a782613066565b602082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b7f5472616e7366657220746f203020616464726573732e00000000000000000000600082015250565b60006131086016836120d3565b9150613113826130d2565b602082019050919050565b60006020820190508181036000830152613137816130fb565b9050919050565b7f57656920416d6f756e7420697320300000000000000000000000000000000000600082015250565b6000613174600f836120d3565b915061317f8261313e565b602082019050919050565b600060208201905081810360008301526131a381613167565b9050919050565b7f4d696e20627579206973206e6f74206d65742e00000000000000000000000000600082015250565b60006131e06013836120d3565b91506131eb826131aa565b602082019050919050565b6000602082019050818103600083015261320f816131d3565b9050919050565b7f4d617820627579206c696d69742065786365656465642e000000000000000000600082015250565b600061324c6017836120d3565b915061325782613216565b602082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f484320526561636865642e000000000000000000000000000000000000000000600082015250565b60006132b8600b836120d3565b91506132c382613282565b602082019050919050565b600060208201905081810360008301526132e7816132ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133246020836120d3565b915061332f826132ee565b602082019050919050565b6000602082019050818103600083015261335381613317565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613390601f836120d3565b915061339b8261335a565b602082019050919050565b600060208201905081810360008301526133bf81613383565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006133fc601d836120d3565b9150613407826133c6565b602082019050919050565b6000602082019050818103600083015261342b816133ef565b9050919050565b600081905092915050565b50565b600061344d600083613432565b91506134588261343d565b600082019050919050565b600061346e82613440565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006134d4603a836120d3565b91506134df82613478565b604082019050919050565b60006020820190508181036000830152613503816134c7565b9050919050565b60006135158261221b565b91506135208361221b565b925082820261352e8161221b565b9150828204841483151761354557613544612750565b5b5092915050565b60006135578261221b565b91506135628361221b565b9250826135725761357161265e565b5b828204905092915050565b60006135888261221b565b91506135938361221b565b92508282039050818111156135ab576135aa612750565b5b9291505056fea264697066735822122003210f2ac68a5bbdf6ff41dd992ae2b78308dd231d087bd65435c3aec9cf18a964736f6c634300081300330000000000000000000000000000000000000000000000000000000000000001000000000000000000000000900f92677679b1008a2a9b25dca19e2669e6961e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e400b3dac5cd52213ae576b4e30039998af391c6

Deployed Bytecode

0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063cfdb63ac11610095578063e7e1049011610064578063e7e104901461062d578063f2fde38b14610644578063fc0c546a1461066d578063fddf0fc01461069857610234565b8063cfdb63ac14610597578063d32e70e4146105d4578063d6b0f484146105eb578063d921eb781461060257610234565b80638f86f5ea116100d15780638f86f5ea146105015780639bb5cd3f14610518578063a84eb99914610543578063b145a5b81461056c57610234565b8063715018a6146104945780637cdc65f2146104ab5780638da5cb5b146104d657610234565b806337fdd73f1161016457806348c54b9d1161013e57806348c54b9d1461041c578063590e1ae3146104335780636386c1c71461044a57806364edfbf01461048a57610234565b806337fdd73f1461038b5780634034175e146103b45780634146ed0a146103f157610234565b806316f0115b116101a057806316f0115b146102c857806327cea3a8146102fa5780632bf04304146103375780632c8ca0ea1461036057610234565b806310eef7a8146102395780631319e7e11461027657806316114acd1461029f57610234565b366102345760056000015442101580156101e557506005600101544211155b156101f7576101f26106c3565b610232565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022990612130565b60405180910390fd5b005b600080fd5b34801561024557600080fd5b50610260600480360381019061025b91906121b8565b6108cb565b60405161026d9190612200565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906121b8565b6108eb565b005b3480156102ab57600080fd5b506102c660048036038101906102c191906121b8565b6109a6565b005b3480156102d457600080fd5b506102dd610ab0565b6040516102f1989796959493929190612234565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906121b8565b610ae6565b60405161032e91906122b2565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612332565b610afe565b005b34801561036c57600080fd5b50610375610baa565b6040516103829190612200565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906123ab565b610bbd565b005b3480156103c057600080fd5b506103db60048036038101906103d691906121b8565b610e47565b6040516103e891906122b2565b60405180910390f35b3480156103fd57600080fd5b50610406610e5f565b6040516104139190612200565b60405180910390f35b34801561042857600080fd5b50610431610e70565b005b34801561043f57600080fd5b50610448611029565b005b34801561045657600080fd5b50610471600480360381019061046c91906121b8565b611196565b6040516104819493929190612461565b60405180910390f35b6104926106c3565b005b3480156104a057600080fd5b506104a96111c4565b005b3480156104b757600080fd5b506104c06111d8565b6040516104cd91906124b5565b60405180910390f35b3480156104e257600080fd5b506104eb6111fe565b6040516104f891906124b5565b60405180910390f35b34801561050d57600080fd5b50610516611227565b005b34801561052457600080fd5b5061052d61136c565b60405161053a919061252f565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612332565b611392565b005b34801561057857600080fd5b5061058161143f565b60405161058e9190612200565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906121b8565b611452565b6040516105cb9190612200565b60405180910390f35b3480156105e057600080fd5b506105e9611472565b005b3480156105f757600080fd5b5061060061169a565b005b34801561060e57600080fd5b5061061761170b565b6040516106249190612200565b60405180910390f35b34801561063957600080fd5b5061064261171e565b005b34801561065057600080fd5b5061066b600480360381019061066691906121b8565b611888565b005b34801561067957600080fd5b5061068261190b565b60405161068f919061256b565b60405180910390f35b3480156106a457600080fd5b506106ad611931565b6040516106ba91906122b2565b60405180910390f35b60056000015442101561070b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610702906125d2565b60405180910390fd5b600560010154421115610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a906125d2565b60405180910390fd5b600360019054906101000a900460ff16156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a9061263e565b60405180910390fd5b60006005800154346107b5919061268d565b146107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90612730565b60405180910390fd5b60003490506108043382611937565b8060046000828254610816919061277f565b9250508190555080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461086c919061277f565b9250508190555061087b611bc2565b73ffffffffffffffffffffffffffffffffffffffff167fc55650ccda1011e1cdc769b1fbf546ebb8c97800b6072b49e06cd560305b1d67826040516108c091906122b2565b60405180910390a250565b60116020528060005260406000206000915054906101000a900460ff1681565b6108f3611bca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906127ff565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6109ae611bca565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6109d26111fe565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a0b91906124b5565b602060405180830381865afa158015610a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c9190612834565b6040518363ffffffff1660e01b8152600401610a69929190612861565b6020604051808303816000875af1158015610a88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aac91906128b6565b5050565b60058060000154908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b60106020528060005260406000206000915090505481565b610b06611bca565b60005b82829050811015610ba5576001806000858585818110610b2c57610b2b6128e3565b5b9050602002016020810190610b4191906121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b9d90612912565b915050610b09565b505050565b600360029054906101000a900460ff1681565b610bc5611bca565b600560000154421080610bdc575060056001015442115b80610bee575060056002015460045410155b610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906129a6565b60405180910390fd5b60001515600360009054906101000a900460ff16151514610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90612a12565b60405180910390fd5b42881015610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90612a7e565b60405180910390fd5b428711610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90612aea565b60405180910390fd5b838310610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190612b7c565b60405180910390fd5b60008311610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490612be8565b60405180910390fd5b60006040518061010001604052808a8152602001898152602001888152602001878152602001868152602001858152602001848152602001838152509050806005600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701559050506001600360006101000a81548160ff021916908315150217905550505050505050505050565b600f6020528060005260406000206000915090505481565b60038054906101000a900460ff1681565b610e78611c48565b600360029054906101000a900460ff16610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90612c54565b60405180910390fd5b600080610ed333611196565b93505050915060008211610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390612cc0565b60405180910390fd5b600081111561101d5780601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f74919061277f565b92505081905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610fd8929190612861565b6020604051808303816000875af1158015610ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101b91906128b6565b505b5050611027611c95565b565b60011515600360019054906101000a900460ff16151514806110615750600560010154421180156110605750600560030154600454105b5b6110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790612d2c565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050804710611193576000811115611192576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111433382611c9f565b3373ffffffffffffffffffffffffffffffffffffffff167fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d06518260405161118991906122b2565b60405180910390a25b5b50565b6000806000806111a585611d93565b8094508195508296505050506111bb8584611ebf565b90509193509193565b6111cc611bca565b6111d66000611f9d565b565b600360049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122f611bca565b6005600301546004541015611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090612d98565b60405180910390fd5b600360029054906101000a900460ff16156112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090612e04565b60405180910390fd5b600360019054906101000a900460ff1615611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090612e70565b60405180910390fd5b6001600360026101000a81548160ff0219169083151502179055504260056001018190555061136a600360049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647611c9f565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61139a611bca565b60005b8282905081101561143a576000600160008585858181106113c1576113c06128e3565b5b90506020020160208101906113d691906121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061143290612912565b91505061139d565b505050565b600360009054906101000a900460ff1681565b60016020528060005260406000206000915054906101000a900460ff1681565b61147a611c48565b600360029054906101000a900460ff166114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090612c54565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90612edc565b60405180910390fd5b600061156133611d93565b92505050600081116115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90612cc0565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aad3ec9633836040518363ffffffff1660e01b815260040161165d929190612861565b600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b5050505050611698611c95565b565b6116a2611bca565b60038054906101000a900460ff166116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612f48565b60405180910390fd5b60006003806101000a81548160ff021916908315150217905550565b600360019054906101000a900460ff1681565b611726611bca565b60056000015442101561176e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611765906125d2565b60405180910390fd5b6005600101544211156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906125d2565b60405180910390fd5b600360029054906101000a900460ff1615611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90612fb4565b60405180910390fd5b60006005600101819055506001600360016101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167ff91f011c087a627ca425b0ca8a8859a2ae764d033f94c53b18359b02b374726f60405160405180910390a3565b611890611bca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613046565b60405180910390fd5b61190881611f9d565b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60038054906101000a900460ff16156119de5760016000611956611bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d4906130b2565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a449061311e565b60405180910390fd5b60008103611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a879061318a565b60405180910390fd5b6005800154811015611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906131f6565b60405180910390fd5b600560040154600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611b28919061277f565b1115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613262565b60405180910390fd5b60056002015481600454611b7d919061277f565b1115611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906132ce565b60405180910390fd5b5050565b600033905090565b611bd2611bc2565b73ffffffffffffffffffffffffffffffffffffffff16611bf06111fe565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d9061333a565b60405180910390fd5b565b6002805403611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c83906133a6565b60405180910390fd5b60028081905550565b6001600281905550565b80471015611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990613412565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d0890613463565b60006040518083038185875af1925050503d8060008114611d45576040519150601f19603f3d011682016040523d82523d6000602084013e611d4a565b606091505b5050905080611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906134ea565b60405180910390fd5b505050565b600080600080600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060326005800154670de0b6b3a7640000600f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e37919061350a565b611e41919061354c565b611e4b919061350a565b9050600060058001546005600f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea0919061350a565b611eaa919061354c565b90508282829550955095505050509193909250565b600080821115611f92576000606460056006015484611ede919061350a565b611ee8919061354c565b905060008184611ef8919061357d565b90506000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000821115611f74576000611f538342612061565b9050818185611f62919061277f565b611f6c919061357d565b945050611f8a565b60008103611f8457829350611f89565b600093505b5b505050611f97565b600090505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060056001015482101561207957600090506120cd565b60056007015460056001015461208f919061277f565b82111561209e578290506120cd565b600560070154600560010154836120b5919061357d565b846120c0919061350a565b6120ca919061354c565b90505b92915050565b600082825260208201905092915050565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b600061211a6011836120d3565b9150612125826120e4565b602082019050919050565b600060208201905081810360008301526121498161210d565b9050919050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121858261215a565b9050919050565b6121958161217a565b81146121a057600080fd5b50565b6000813590506121b28161218c565b92915050565b6000602082840312156121ce576121cd612150565b5b60006121dc848285016121a3565b91505092915050565b60008115159050919050565b6121fa816121e5565b82525050565b600060208201905061221560008301846121f1565b92915050565b6000819050919050565b61222e8161221b565b82525050565b60006101008201905061224a600083018b612225565b612257602083018a612225565b6122646040830189612225565b6122716060830188612225565b61227e6080830187612225565b61228b60a0830186612225565b61229860c0830185612225565b6122a560e0830184612225565b9998505050505050505050565b60006020820190506122c76000830184612225565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122f2576122f16122cd565b5b8235905067ffffffffffffffff81111561230f5761230e6122d2565b5b60208301915083602082028301111561232b5761232a6122d7565b5b9250929050565b6000806020838503121561234957612348612150565b5b600083013567ffffffffffffffff81111561236757612366612155565b5b612373858286016122dc565b92509250509250929050565b6123888161221b565b811461239357600080fd5b50565b6000813590506123a58161237f565b92915050565b600080600080600080600080610100898b0312156123cc576123cb612150565b5b60006123da8b828c01612396565b98505060206123eb8b828c01612396565b97505060406123fc8b828c01612396565b965050606061240d8b828c01612396565b955050608061241e8b828c01612396565b94505060a061242f8b828c01612396565b93505060c06124408b828c01612396565b92505060e06124518b828c01612396565b9150509295985092959890939650565b60006080820190506124766000830187612225565b6124836020830186612225565b6124906040830185612225565b61249d6060830184612225565b95945050505050565b6124af8161217a565b82525050565b60006020820190506124ca60008301846124a6565b92915050565b6000819050919050565b60006124f56124f06124eb8461215a565b6124d0565b61215a565b9050919050565b6000612507826124da565b9050919050565b6000612519826124fc565b9050919050565b6125298161250e565b82525050565b60006020820190506125446000830184612520565b92915050565b6000612555826124fc565b9050919050565b6125658161254a565b82525050565b6000602082019050612580600083018461255c565b92915050565b7f50726573616c65206d757374206265206163746976652e000000000000000000600082015250565b60006125bc6017836120d3565b91506125c782612586565b602082019050919050565b600060208201905081810360008301526125eb816125af565b9050919050565b7f50726573616c6520686173206265656e2063616e63656c6c65642e0000000000600082015250565b6000612628601b836120d3565b9150612633826125f2565b602082019050919050565b600060208201905081810360008301526126578161261b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006126988261221b565b91506126a38361221b565b9250826126b3576126b261265e565b5b828206905092915050565b7f506c65617365206f6e6c792062757920696e20696e6372656d656e7473206f6660008201527f20746865206d696e696d756d2062757900000000000000000000000000000000602082015250565b600061271a6030836120d3565b9150612725826126be565b604082019050919050565b600060208201905081810360008301526127498161270d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061278a8261221b565b91506127958361221b565b92508282019050808211156127ad576127ac612750565b5b92915050565b7f4d75737420626520612076616c69642061646472657373000000000000000000600082015250565b60006127e96017836120d3565b91506127f4826127b3565b602082019050919050565b60006020820190508181036000830152612818816127dc565b9050919050565b60008151905061282e8161237f565b92915050565b60006020828403121561284a57612849612150565b5b60006128588482850161281f565b91505092915050565b600060408201905061287660008301856124a6565b6128836020830184612225565b9392505050565b612893816121e5565b811461289e57600080fd5b50565b6000815190506128b08161288a565b92915050565b6000602082840312156128cc576128cb612150565b5b60006128da848285016128a1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061291d8261221b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361294f5761294e612750565b5b600182019050919050565b7f50726573616c65206d75737420626520696e6163746976652e00000000000000600082015250565b60006129906019836120d3565b915061299b8261295a565b602082019050919050565b600060208201905081810360008301526129bf81612983565b9050919050565b7f50726573616c65206973206e6f7420696e697469616c697a6564000000000000600082015250565b60006129fc601a836120d3565b9150612a07826129c6565b602082019050919050565b60006020820190508181036000830152612a2b816129ef565b9050919050565b7f496e76616c69642073746172742074696d652e00000000000000000000000000600082015250565b6000612a686013836120d3565b9150612a7382612a32565b602082019050919050565b60006020820190508181036000830152612a9781612a5b565b9050919050565b7f496e76616c696420656e642074696d652e000000000000000000000000000000600082015250565b6000612ad46011836120d3565b9150612adf82612a9e565b602082019050919050565b60006020820190508181036000830152612b0381612ac7565b9050919050565b7f4d696e20627579206d7573742062652067726561746572207468616e206d617860008201527f206275792e000000000000000000000000000000000000000000000000000000602082015250565b6000612b666025836120d3565b9150612b7182612b0a565b604082019050919050565b60006020820190508181036000830152612b9581612b59565b9050919050565b7f4d696e20627579206d7573742065786365656420302e00000000000000000000600082015250565b6000612bd26016836120d3565b9150612bdd82612b9c565b602082019050919050565b60006020820190508181036000830152612c0181612bc5565b9050919050565b7f50726573616c65206973206e6f742066696e6973686564000000000000000000600082015250565b6000612c3e6017836120d3565b9150612c4982612c08565b602082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f5573657220646964206e6f7420636f6e74726962757465000000000000000000600082015250565b6000612caa6017836120d3565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b7f526566756e6420756e617661696c61626c652e00000000000000000000000000600082015250565b6000612d166013836120d3565b9150612d2182612ce0565b602082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b7f536f667420436170206973206e6f74206d65742e000000000000000000000000600082015250565b6000612d826014836120d3565b9150612d8d82612d4c565b602082019050919050565b60006020820190508181036000830152612db181612d75565b9050919050565b7f50726573616c6520697320616c726561647920636c6f7365642e000000000000600082015250565b6000612dee601a836120d3565b9150612df982612db8565b602082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f50726573616c6520697320696e20726566756e642070726f636573732e000000600082015250565b6000612e5a601d836120d3565b9150612e6582612e24565b602082019050919050565b60006020820190508181036000830152612e8981612e4d565b9050919050565b7f5573657220616c726561647920636c61696d6564207468656972206e6f646573600082015250565b6000612ec66020836120d3565b9150612ed182612e90565b602082019050919050565b60006020820190508181036000830152612ef581612eb9565b9050919050565b7f57686974656c69737420697320616c72656164792064697361626c65642e0000600082015250565b6000612f32601e836120d3565b9150612f3d82612efc565b602082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b7f53616c652069732066696e69736865642e000000000000000000000000000000600082015250565b6000612f9e6011836120d3565b9150612fa982612f68565b602082019050919050565b60006020820190508181036000830152612fcd81612f91565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130306026836120d3565b915061303b82612fd4565b604082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f55736572206973206e6f742077686974656c69737465642e0000000000000000600082015250565b600061309c6018836120d3565b91506130a782613066565b602082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b7f5472616e7366657220746f203020616464726573732e00000000000000000000600082015250565b60006131086016836120d3565b9150613113826130d2565b602082019050919050565b60006020820190508181036000830152613137816130fb565b9050919050565b7f57656920416d6f756e7420697320300000000000000000000000000000000000600082015250565b6000613174600f836120d3565b915061317f8261313e565b602082019050919050565b600060208201905081810360008301526131a381613167565b9050919050565b7f4d696e20627579206973206e6f74206d65742e00000000000000000000000000600082015250565b60006131e06013836120d3565b91506131eb826131aa565b602082019050919050565b6000602082019050818103600083015261320f816131d3565b9050919050565b7f4d617820627579206c696d69742065786365656465642e000000000000000000600082015250565b600061324c6017836120d3565b915061325782613216565b602082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b7f484320526561636865642e000000000000000000000000000000000000000000600082015250565b60006132b8600b836120d3565b91506132c382613282565b602082019050919050565b600060208201905081810360008301526132e7816132ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133246020836120d3565b915061332f826132ee565b602082019050919050565b6000602082019050818103600083015261335381613317565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613390601f836120d3565b915061339b8261335a565b602082019050919050565b600060208201905081810360008301526133bf81613383565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006133fc601d836120d3565b9150613407826133c6565b602082019050919050565b6000602082019050818103600083015261342b816133ef565b9050919050565b600081905092915050565b50565b600061344d600083613432565b91506134588261343d565b600082019050919050565b600061346e82613440565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006134d4603a836120d3565b91506134df82613478565b604082019050919050565b60006020820190508181036000830152613503816134c7565b9050919050565b60006135158261221b565b91506135208361221b565b925082820261352e8161221b565b9150828204841483151761354557613544612750565b5b5092915050565b60006135578261221b565b91506135628361221b565b9250826135725761357161265e565b5b828204905092915050565b60006135888261221b565b91506135938361221b565b92508282039050818111156135ab576135aa612750565b5b9291505056fea264697066735822122003210f2ac68a5bbdf6ff41dd992ae2b78308dd231d087bd65435c3aec9cf18a964736f6c63430008130033

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

0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000900f92677679b1008a2a9b25dca19e2669e6961e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e400b3dac5cd52213ae576b4e30039998af391c6

-----Decoded View---------------
Arg [0] : _isWhitelist (bool): True
Arg [1] : _token (address): 0x900f92677679B1008A2A9b25DcA19E2669e6961e
Arg [2] : _nodeManager (address): 0x0000000000000000000000000000000000000000
Arg [3] : _safeWallet (address): 0xe400b3daC5CD52213aE576b4E30039998af391C6

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 000000000000000000000000900f92677679b1008a2a9b25dca19e2669e6961e
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 000000000000000000000000e400b3dac5cd52213ae576b4e30039998af391c6


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  ]
[ 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.