More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 344 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Tokens | 20023342 | 322 days ago | IN | 0 ETH | 0.00035375 | ||||
Unstake | 20015276 | 323 days ago | IN | 0 ETH | 0.00064132 | ||||
Unstake | 20007843 | 324 days ago | IN | 0 ETH | 0.00113452 | ||||
Unstake | 20007599 | 324 days ago | IN | 0 ETH | 0.00062813 | ||||
Unstake | 20007583 | 324 days ago | IN | 0 ETH | 0.0005821 | ||||
Unstake | 20004662 | 324 days ago | IN | 0 ETH | 0.00142662 | ||||
Unstake | 20004198 | 324 days ago | IN | 0 ETH | 0.00066118 | ||||
Unstake | 19999753 | 325 days ago | IN | 0 ETH | 0.00070878 | ||||
Unstake | 19997918 | 325 days ago | IN | 0 ETH | 0.00108453 | ||||
Unstake | 19992251 | 326 days ago | IN | 0 ETH | 0.00070671 | ||||
Unstake | 19989703 | 326 days ago | IN | 0 ETH | 0.00119651 | ||||
Unstake | 19989369 | 326 days ago | IN | 0 ETH | 0.00081844 | ||||
Unstake | 19989321 | 326 days ago | IN | 0 ETH | 0.00084297 | ||||
Unstake | 19987448 | 327 days ago | IN | 0 ETH | 0.00151031 | ||||
Unstake | 19986493 | 327 days ago | IN | 0 ETH | 0.00060081 | ||||
Unstake | 19983795 | 327 days ago | IN | 0 ETH | 0.00214718 | ||||
Unstake | 19983480 | 327 days ago | IN | 0 ETH | 0.00336165 | ||||
Unstake | 19983141 | 327 days ago | IN | 0 ETH | 0.00168806 | ||||
Unstake | 19983128 | 327 days ago | IN | 0 ETH | 0.00189969 | ||||
Unstake | 19983082 | 327 days ago | IN | 0 ETH | 0.00276565 | ||||
Unstake | 19982649 | 327 days ago | IN | 0 ETH | 0.00092789 | ||||
Unstake | 19982616 | 327 days ago | IN | 0 ETH | 0.00078653 | ||||
Unstake | 19982122 | 327 days ago | IN | 0 ETH | 0.0006398 | ||||
Unstake | 19982111 | 327 days ago | IN | 0 ETH | 0.00063099 | ||||
Unstake | 19982098 | 327 days ago | IN | 0 ETH | 0.00061422 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 19968158 | 329 days ago | 8.09 ETH | ||||
Transfer | 19967520 | 329 days ago | 0.03508778 ETH | ||||
Transfer | 19963964 | 330 days ago | 0.03508778 ETH | ||||
Transfer | 19963961 | 330 days ago | 0.03508778 ETH | ||||
Transfer | 19962663 | 330 days ago | 0.03559475 ETH | ||||
Transfer | 19962526 | 330 days ago | 0.0352616 ETH | ||||
Transfer | 19959430 | 331 days ago | 0.0355941 ETH | ||||
Transfer | 19957290 | 331 days ago | 0.03551702 ETH | ||||
Transfer | 19957012 | 331 days ago | 0.22851816 ETH | ||||
Transfer | 19957005 | 331 days ago | 0.22851816 ETH | ||||
Transfer | 19956998 | 331 days ago | 0.22851816 ETH | ||||
Transfer | 19956992 | 331 days ago | 0.22851816 ETH | ||||
Transfer | 19955775 | 331 days ago | 0.03508778 ETH | ||||
Transfer | 19955672 | 331 days ago | 0.03643858 ETH | ||||
Transfer | 19947067 | 332 days ago | 0.0616407 ETH | ||||
Transfer | 19941148 | 333 days ago | 0.06194606 ETH | ||||
Transfer | 19937716 | 334 days ago | 0.12238169 ETH | ||||
Transfer | 19936747 | 334 days ago | 0.06253132 ETH | ||||
Transfer | 19935012 | 334 days ago | 0.12090265 ETH | ||||
Transfer | 19933236 | 334 days ago | 0.0616407 ETH | ||||
Transfer | 19933234 | 334 days ago | 0.0616407 ETH | ||||
Transfer | 19931551 | 334 days ago | 0.06495552 ETH | ||||
Transfer | 19927616 | 335 days ago | 0.02844955 ETH | ||||
Transfer | 19927283 | 335 days ago | 0.0295448 ETH | ||||
Transfer | 19925882 | 335 days ago | 0.02886008 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
StakingPool
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "./IPoolExtension.sol"; contract StakingPool is Context, Ownable, ReentrancyGuard { using SafeERC20 for IERC20; IUniswapV2Router02 immutable _router; uint256 constant MULTIPLIER = 10 ** 36; address public token; uint256 public lockupPeriod; uint256 public totalStakedUsers; uint256 public totalSharesDeposited; uint256 public usersLimit; IPoolExtension public extension; struct Share { uint256 amount; uint256 stakedTime; } struct Reward { uint256 excluded; uint256 realised; } mapping(address => Share) public shares; mapping(address => Reward) public rewards; mapping(address => bool) public blackList; uint256 public rewardsPerShare; uint256 public totalDistributed; uint256 public totalRewards; event Stake(address indexed user, uint256 amount); event Unstake(address indexed user, uint256 amount); event ClaimReward(address user); event DepositRewards(address indexed user, uint256 amountTokens); event DistributeReward( address indexed user, uint256 amount, bool _wasCompounded ); constructor( address _token, uint256 _lockupPeriod, address initialOwner ) Ownable(initialOwner) { token = _token; lockupPeriod = _lockupPeriod; _router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); usersLimit = 40; } function setUserLimit(uint256 _limit) external onlyOwner { usersLimit = _limit; } function stake(uint256 _amount) external nonReentrant { IERC20(token).safeTransferFrom(_msgSender(), address(this), _amount); _setShare(_msgSender(), _amount, false); } function stakeForWallets( address[] memory _wallets, uint256[] memory _amounts ) external nonReentrant { require(_wallets.length == _amounts.length, "INSYNC"); uint256 _totalAmount; for (uint256 _i; _i < _wallets.length; _i++) { _totalAmount += _amounts[_i]; _setShare(_wallets[_i], _amounts[_i], false); } IERC20(token).safeTransferFrom( _msgSender(), address(this), _totalAmount ); } function unstake(uint256 _amount) external nonReentrant { IERC20(token).safeTransfer(_msgSender(), _amount); _setShare(_msgSender(), _amount, true); } function _setShare( address wallet, uint256 balanceUpdate, bool isRemoving ) internal { if (address(extension) != address(0)) { try extension.setShare(wallet, balanceUpdate, isRemoving) {} catch {} } if (isRemoving) { _removeShares(wallet, balanceUpdate); emit Unstake(wallet, balanceUpdate); } else { _addShares(wallet, balanceUpdate); emit Stake(wallet, balanceUpdate); } } function _addShares(address wallet, uint256 amount) private { if (shares[wallet].amount > 0) { _distributeReward(wallet, false, 0); } uint256 sharesBefore = shares[wallet].amount; totalSharesDeposited += amount; shares[wallet].amount += amount; shares[wallet].stakedTime = block.timestamp; if (sharesBefore == 0 && shares[wallet].amount > 0) { require(totalStakedUsers < usersLimit, "Users limit reached"); totalStakedUsers++; } rewards[wallet].excluded = _cumulativeRewards(shares[wallet].amount); } function _removeShares(address wallet, uint256 amount) private { require( shares[wallet].amount > 0 && amount <= shares[wallet].amount, "REM: amount" ); require( block.timestamp > shares[wallet].stakedTime + lockupPeriod, "REM: timelock" ); uint256 _unclaimed = getUnpaid(wallet); bool _otherStakersPresent = totalSharesDeposited - amount > 0; if (!_otherStakersPresent) { _distributeReward(wallet, false, 0); } totalSharesDeposited -= amount; shares[wallet].amount -= amount; if (shares[wallet].amount == 0) { totalStakedUsers--; } rewards[wallet].excluded = _cumulativeRewards(shares[wallet].amount); // if there are other stakers and unclaimed rewards, // deposit them back into the pool for other stakers to claim if (_otherStakersPresent && _unclaimed > 0) { _depositRewards(wallet, _unclaimed); } } function depositRewards() external payable { _depositRewards(_msgSender(), msg.value); } function _depositRewards(address _wallet, uint256 _amountETH) internal { require(_amountETH > 0, "ETH"); require(totalSharesDeposited > 0, "SHARES"); totalRewards += _amountETH; rewardsPerShare += (MULTIPLIER * _amountETH) / totalSharesDeposited; emit DepositRewards(_wallet, _amountETH); } function _distributeReward( address _wallet, bool _compound, uint256 _compoundMinTokensToReceive ) internal { if (shares[_wallet].amount == 0) { return; } if (blackList[_wallet] == true) { return; } shares[_wallet].stakedTime = block.timestamp; // reset every claim uint256 _amountWei = getUnpaid(_wallet); rewards[_wallet].realised += _amountWei; rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet].amount); if (_amountWei > 0) { totalDistributed += _amountWei; if (_compound) { _compoundRewards( _wallet, _amountWei, _compoundMinTokensToReceive ); } else { uint256 _balBefore = address(this).balance; (bool success, ) = payable(_wallet).call{value: _amountWei}(""); require(success, "DIST0"); require( address(this).balance >= _balBefore - _amountWei, "DIST1" ); } emit DistributeReward(_wallet, _amountWei, _compound); } } function _compoundRewards( address _wallet, uint256 _wei, uint256 _minTokensToReceive ) internal { address[] memory path = new address[](2); path[0] = _router.WETH(); path[1] = token; IERC20 _token = IERC20(token); uint256 _tokenBalBefore = _token.balanceOf(address(this)); _router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: _wei}( _minTokensToReceive, path, address(this), block.timestamp ); uint256 _compoundAmount = _token.balanceOf(address(this)) - _tokenBalBefore; _setShare(_wallet, _compoundAmount, false); } function claimReward( bool _compound, uint256 _compMinTokensToReceive ) external nonReentrant { _distributeReward(_msgSender(), _compound, _compMinTokensToReceive); emit ClaimReward(_msgSender()); } function claimRewardAdmin( address _wallet, bool _compound, uint256 _compMinTokensToReceive ) external nonReentrant onlyOwner { _distributeReward(_wallet, _compound, _compMinTokensToReceive); emit ClaimReward(_wallet); } function getUnpaid(address wallet) public view returns (uint256) { if (shares[wallet].amount == 0) { return 0; } uint256 earnedRewards = _cumulativeRewards(shares[wallet].amount); uint256 rewardsExcluded = rewards[wallet].excluded; if (earnedRewards <= rewardsExcluded) { return 0; } return earnedRewards - rewardsExcluded; } function _cumulativeRewards(uint256 share) internal view returns (uint256) { return (share * rewardsPerShare) / MULTIPLIER; } function setPoolExtension(IPoolExtension _extension) external onlyOwner { extension = _extension; } function setLockupPeriod(uint256 _seconds) external onlyOwner { require(_seconds < 365 days, "lte 1 year"); lockupPeriod = _seconds; } function withdrawTokens(uint256 _amount) external onlyOwner { IERC20 _token = IERC20(token); _token.safeTransfer( _msgSender(), _amount == 0 ? _token.balanceOf(address(this)) : _amount ); } function setBlackList(address _wallet, bool _bool) external onlyOwner { blackList[_wallet] = _bool; } // Add this function to allow the owner to withdraw ETH function withdrawETH(uint256 _amount) external onlyOwner { require(address(this).balance >= _amount, "Insufficient balance"); (bool success, ) = payable(owner()).call{value: _amount}(""); require(success, "ETH transfer failed"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface IPoolExtension { function setShare( address wallet, uint256 balanceChange, bool isRemoving ) external; }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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 if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) 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 FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_lockupPeriod","type":"uint256"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"ClaimReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokens","type":"uint256"}],"name":"DepositRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_wasCompounded","type":"bool"}],"name":"DistributeReward","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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unstake","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_compound","type":"bool"},{"internalType":"uint256","name":"_compMinTokensToReceive","type":"uint256"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_compound","type":"bool"},{"internalType":"uint256","name":"_compMinTokensToReceive","type":"uint256"}],"name":"claimRewardAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositRewards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"contract IPoolExtension","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getUnpaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockupPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"excluded","type":"uint256"},{"internalType":"uint256","name":"realised","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_seconds","type":"uint256"}],"name":"setLockupPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPoolExtension","name":"_extension","type":"address"}],"name":"setPoolExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setUserLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"stakedTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"stakeForWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSharesDeposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedUsers","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":"uint256","name":"_amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usersLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405234801562000010575f80fd5b5060405162001ce938038062001ce9833981016040819052620000339162000125565b806001600160a01b0381166200006257604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6200006d81620000ba565b505060018055600280546001600160a01b0319166001600160a01b039390931692909217909155600355737a250d5630b4cf539739df2c5dacb4c659f2488d608052602860065562000163565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811462000120575f80fd5b919050565b5f805f6060848603121562000138575f80fd5b620001438462000109565b9250602084015191506200015a6040850162000109565b90509250925092565b608051611b66620001835f395f818161139f01526114df0152611b665ff3fe6080604052600436106101af575f3560e01c806389d96917116100e7578063c7e1d0b111610087578063efca2eed11610062578063efca2eed146104c1578063f14210a6146104d6578063f2fde38b146104f5578063fc0c546a14610514575f80fd5b8063c7e1d0b114610465578063ce7c2ac21461047a578063ee947a7c146104ac575f80fd5b8063a694fc3a116100c2578063a694fc3a146103f3578063b2a7e22414610412578063bf03a57514610431578063c771c39014610446575f80fd5b806389d96917146103995780638da5cb5b146103b857806395319435146103d4575f80fd5b806341aef1621161015257806360b803311161012d57806360b803311461033257806368092bd914610351578063715018a61461037057806380bb405514610384575f80fd5b806341aef162146102b6578063472f13f3146102d55780634838d165146102f4575f80fd5b80632d5537b01161018d5780632d5537b01461022c5780632e17de7814610263578063315a095d146102825780633c6e6789146102a1575f80fd5b80630700037d146101b35780630e15561a146101ff578063152111f714610222575b5f80fd5b3480156101be575f80fd5b506101e56101cd36600461172e565b60096020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561020a575f80fd5b50610214600d5481565b6040519081526020016101f6565b61022a610533565b005b348015610237575f80fd5b5060075461024b906001600160a01b031681565b6040516001600160a01b0390911681526020016101f6565b34801561026e575f80fd5b5061022a61027d366004611749565b61053f565b34801561028d575f80fd5b5061022a61029c366004611749565b610576565b3480156102ac575f80fd5b5061021460055481565b3480156102c1575f80fd5b5061022a6102d036600461176d565b610615565b3480156102e0575f80fd5b5061022a6102ef3660046117ab565b61067a565b3480156102ff575f80fd5b5061032261030e36600461172e565b600a6020525f908152604090205460ff1681565b60405190151581526020016101f6565b34801561033d575f80fd5b5061022a61034c366004611749565b6106c9565b34801561035c575f80fd5b5061022a61036b3660046117d5565b6106d6565b34801561037b575f80fd5b5061022a610708565b34801561038f575f80fd5b5061021460045481565b3480156103a4575f80fd5b506102146103b336600461172e565b610719565b3480156103c3575f80fd5b505f546001600160a01b031661024b565b3480156103df575f80fd5b5061022a6103ee3660046118e0565b61079c565b3480156103fe575f80fd5b5061022a61040d366004611749565b61087f565b34801561041d575f80fd5b5061022a61042c36600461172e565b61089b565b34801561043c575f80fd5b5061021460065481565b348015610451575f80fd5b5061022a610460366004611749565b6108c5565b348015610470575f80fd5b50610214600b5481565b348015610485575f80fd5b506101e561049436600461172e565b60086020525f90815260409020805460019091015482565b3480156104b7575f80fd5b5061021460035481565b3480156104cc575f80fd5b50610214600c5481565b3480156104e1575f80fd5b5061022a6104f0366004611749565b610912565b348015610500575f80fd5b5061022a61050f36600461172e565b6109f7565b34801561051f575f80fd5b5060025461024b906001600160a01b031681565b61053d3334610a31565b565b610547610b33565b61055e336002546001600160a01b03169083610b5d565b61056a33826001610bbc565b61057360018055565b50565b61057e610cd0565b6002546001600160a01b031661061133831561059a5783610600565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156105dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610600919061199c565b6001600160a01b0384169190610b5d565b5050565b61061d610b33565b610625610cd0565b610630838383610cfc565b6040516001600160a01b03841681527f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89060200160405180910390a161067560018055565b505050565b610682610b33565b61068d338383610cfc565b6040805133815290517f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89181900360200190a161061160018055565b6106d1610cd0565b600655565b6106de610cd0565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b610710610cd0565b61053d5f610f26565b6001600160a01b0381165f90815260086020526040812054810361073e57505f919050565b6001600160a01b0382165f9081526008602052604081205461075f90610f75565b6001600160a01b0384165f9081526009602052604090205490915080821161078a57505f9392505050565b61079481836119c7565b949350505050565b6107a4610b33565b80518251146107e35760405162461bcd60e51b8152602060048201526006602482015265494e53594e4360d01b60448201526064015b60405180910390fd5b5f805b835181101561085b57828181518110610801576108016119da565b60200260200101518261081491906119ee565b915061085384828151811061082b5761082b6119da565b6020026020010151848381518110610845576108456119da565b60200260200101515f610bbc565b6001016107e6565b50610875335b6002546001600160a01b0316903084610fa4565b5061061160018055565b610887610b33565b61089033610861565b61056a33825f610bbc565b6108a3610cd0565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6108cd610cd0565b6301e13380811061090d5760405162461bcd60e51b815260206004820152600a602482015269363a329018903cb2b0b960b11b60448201526064016107da565b600355565b61091a610cd0565b804710156109615760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016107da565b5f80546040516001600160a01b039091169083908381818185875af1925050503d805f81146109ab576040519150601f19603f3d011682016040523d82523d5f602084013e6109b0565b606091505b50509050806106115760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016107da565b6109ff610cd0565b6001600160a01b038116610a2857604051631e4fbdf760e01b81525f60048201526024016107da565b61057381610f26565b5f8111610a665760405162461bcd60e51b815260206004820152600360248201526208aa8960eb1b60448201526064016107da565b5f60055411610aa05760405162461bcd60e51b815260206004820152600660248201526553484152455360d01b60448201526064016107da565b80600d5f828254610ab191906119ee565b9091555050600554610ad2826ec097ce7bc90715b34b9f1000000000611a01565b610adc9190611a18565b600b5f828254610aec91906119ee565b90915550506040518181526001600160a01b038316907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a25050565b600260015403610b5657604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b6040516001600160a01b0383811660248301526044820183905261067591859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610fdd565b6007546001600160a01b031615610c33576007546040516329cc05cf60e01b81526001600160a01b038581166004830152602482018590528315156044830152909116906329cc05cf906064015f604051808303815f87803b158015610c20575f80fd5b505af1925050508015610c31575060015b505b8015610c8b57610c43838361103e565b826001600160a01b03167f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd83604051610c7e91815260200190565b60405180910390a2505050565b610c958383611213565b826001600160a01b03167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a83604051610c7e91815260200190565b5f546001600160a01b0316331461053d5760405163118cdaa760e01b81523360048201526024016107da565b6001600160a01b0383165f908152600860205260408120549003610d1f57505050565b6001600160a01b0383165f908152600a602052604090205460ff161515600103610d4857505050565b6001600160a01b0383165f90815260086020526040812042600190910155610d6f84610719565b6001600160a01b0385165f90815260096020526040812060010180549293508392909190610d9e9084906119ee565b90915550506001600160a01b0384165f90815260086020526040902054610dc490610f75565b6001600160a01b0385165f908152600960205260409020558015610f205780600c5f828254610df391906119ee565b90915550508215610e0e57610e0984828461137d565b610eda565b60405147905f906001600160a01b0387169084908381818185875af1925050503d805f8114610e58576040519150601f19603f3d011682016040523d82523d5f602084013e610e5d565b606091505b5050905080610e965760405162461bcd60e51b8152602060048201526005602482015264044495354360dc1b60448201526064016107da565b610ea083836119c7565b471015610ed75760405162461bcd60e51b8152602060048201526005602482015264444953543160d81b60448201526064016107da565b50505b6040805182815284151560208201526001600160a01b038616917ff34664cb7e3473d9bcd089297cc2ec340fede133eaf733d0ca506f1e05e2fee0910160405180910390a25b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6ec097ce7bc90715b34b9f1000000000600b5483610f949190611a01565b610f9e9190611a18565b92915050565b6040516001600160a01b038481166024830152838116604483015260648201839052610f209186918216906323b872dd90608401610b8a565b5f610ff16001600160a01b038416836115e8565b905080515f141580156110155750808060200190518101906110139190611a37565b155b1561067557604051635274afe760e01b81526001600160a01b03841660048201526024016107da565b6001600160a01b0382165f908152600860205260409020541580159061107b57506001600160a01b0382165f908152600860205260409020548111155b6110b55760405162461bcd60e51b815260206004820152600b60248201526a1491534e88185b5bdd5b9d60aa1b60448201526064016107da565b6003546001600160a01b0383165f908152600860205260409020600101546110dd91906119ee565b421161111b5760405162461bcd60e51b815260206004820152600d60248201526c52454d3a2074696d656c6f636b60981b60448201526064016107da565b5f61112583610719565b90505f808360055461113791906119c7565b1190508061114a5761114a845f80610cfc565b8260055f82825461115b91906119c7565b90915550506001600160a01b0384165f90815260086020526040812080548592906111879084906119c7565b90915550506001600160a01b0384165f9081526008602052604081205490036111bf5760048054905f6111b983611a52565b91905055505b6001600160a01b0384165f908152600860205260409020546111e090610f75565b6001600160a01b0385165f9081526009602052604090205580801561120457505f82115b15610f2057610f208483610a31565b6001600160a01b0382165f908152600860205260409020541561123b5761123b825f80610cfc565b6001600160a01b0382165f9081526008602052604081205460058054919284926112669084906119ee565b90915550506001600160a01b0383165f90815260086020526040812080548492906112929084906119ee565b90915550506001600160a01b0383165f90815260086020526040902042600190910155801580156112d957506001600160a01b0383165f9081526008602052604090205415155b1561133c57600654600454106113275760405162461bcd60e51b8152602060048201526013602482015272155cd95c9cc81b1a5b5a5d081c995858da1959606a1b60448201526064016107da565b60048054905f61133683611a67565b91905055505b6001600160a01b0383165f9081526008602052604090205461135d90610f75565b6001600160a01b039093165f908152600960205260409020929092555050565b6040805160028082526060820183525f926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141d9190611a7f565b815f8151811061142f5761142f6119da565b6001600160a01b039283166020918202929092010152600254825191169082906001908110611460576114606119da565b6001600160a01b0392831660209182029290920101526002546040516370a0823160e01b81523060048201529116905f9082906370a0823190602401602060405180830381865afa1580156114b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114db919061199c565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b6f9de9586868630426040518663ffffffff1660e01b81526004016115309493929190611a9a565b5f604051808303818588803b158015611547575f80fd5b505af1158015611559573d5f803e3d5ffd5b50506040516370a0823160e01b81523060048201525f93508492506001600160a01b03861691506370a0823190602401602060405180830381865afa1580156115a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c8919061199c565b6115d291906119c7565b90506115df87825f610bbc565b50505050505050565b60606115f583835f6115fc565b9392505050565b6060814710156116215760405163cd78605960e01b81523060048201526024016107da565b5f80856001600160a01b0316848660405161163c9190611b04565b5f6040518083038185875af1925050503d805f8114611676576040519150601f19603f3d011682016040523d82523d5f602084013e61167b565b606091505b509150915061168b868383611695565b9695505050505050565b6060826116aa576116a5826116f1565b6115f5565b81511580156116c157506001600160a01b0384163b155b156116ea57604051639996b31560e01b81526001600160a01b03851660048201526024016107da565b50806115f5565b8051156117015780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114610573575f80fd5b5f6020828403121561173e575f80fd5b81356115f58161171a565b5f60208284031215611759575f80fd5b5035919050565b8015158114610573575f80fd5b5f805f6060848603121561177f575f80fd5b833561178a8161171a565b9250602084013561179a81611760565b929592945050506040919091013590565b5f80604083850312156117bc575f80fd5b82356117c781611760565b946020939093013593505050565b5f80604083850312156117e6575f80fd5b82356117f18161171a565b9150602083013561180181611760565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156118495761184961180c565b604052919050565b5f67ffffffffffffffff82111561186a5761186a61180c565b5060051b60200190565b5f82601f830112611883575f80fd5b8135602061189861189383611851565b611820565b8083825260208201915060208460051b8701019350868411156118b9575f80fd5b602086015b848110156118d557803583529183019183016118be565b509695505050505050565b5f80604083850312156118f1575f80fd5b823567ffffffffffffffff80821115611908575f80fd5b818501915085601f83011261191b575f80fd5b8135602061192b61189383611851565b82815260059290921b84018101918181019089841115611949575f80fd5b948201945b838610156119705785356119618161171a565b8252948201949082019061194e565b96505086013592505080821115611985575f80fd5b5061199285828601611874565b9150509250929050565b5f602082840312156119ac575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610f9e57610f9e6119b3565b634e487b7160e01b5f52603260045260245ffd5b80820180821115610f9e57610f9e6119b3565b8082028115828204841417610f9e57610f9e6119b3565b5f82611a3257634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611a47575f80fd5b81516115f581611760565b5f81611a6057611a606119b3565b505f190190565b5f60018201611a7857611a786119b3565b5060010190565b5f60208284031215611a8f575f80fd5b81516115f58161171a565b5f6080820186835260206080602085015281875180845260a0860191506020890193505f5b81811015611ae45784516001600160a01b031683529383019391830191600101611abf565b50506001600160a01b039690961660408501525050506060015292915050565b5f82515f5b81811015611b235760208186018101518583015201611b09565b505f92019182525091905056fea2646970667358221220e127138b87a53df4938a0aa025ccd3e8bfc80a2f25bcfb71f1802760dbf9e68d64736f6c63430008180033000000000000000000000000c668695dcbcf682de106da94bde65c9bc79362d30000000000000000000000000000000000000000000000000000000000278d000000000000000000000000009bc02868e5fb157f05812a06b02d1cc45125d07c
Deployed Bytecode
0x6080604052600436106101af575f3560e01c806389d96917116100e7578063c7e1d0b111610087578063efca2eed11610062578063efca2eed146104c1578063f14210a6146104d6578063f2fde38b146104f5578063fc0c546a14610514575f80fd5b8063c7e1d0b114610465578063ce7c2ac21461047a578063ee947a7c146104ac575f80fd5b8063a694fc3a116100c2578063a694fc3a146103f3578063b2a7e22414610412578063bf03a57514610431578063c771c39014610446575f80fd5b806389d96917146103995780638da5cb5b146103b857806395319435146103d4575f80fd5b806341aef1621161015257806360b803311161012d57806360b803311461033257806368092bd914610351578063715018a61461037057806380bb405514610384575f80fd5b806341aef162146102b6578063472f13f3146102d55780634838d165146102f4575f80fd5b80632d5537b01161018d5780632d5537b01461022c5780632e17de7814610263578063315a095d146102825780633c6e6789146102a1575f80fd5b80630700037d146101b35780630e15561a146101ff578063152111f714610222575b5f80fd5b3480156101be575f80fd5b506101e56101cd36600461172e565b60096020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561020a575f80fd5b50610214600d5481565b6040519081526020016101f6565b61022a610533565b005b348015610237575f80fd5b5060075461024b906001600160a01b031681565b6040516001600160a01b0390911681526020016101f6565b34801561026e575f80fd5b5061022a61027d366004611749565b61053f565b34801561028d575f80fd5b5061022a61029c366004611749565b610576565b3480156102ac575f80fd5b5061021460055481565b3480156102c1575f80fd5b5061022a6102d036600461176d565b610615565b3480156102e0575f80fd5b5061022a6102ef3660046117ab565b61067a565b3480156102ff575f80fd5b5061032261030e36600461172e565b600a6020525f908152604090205460ff1681565b60405190151581526020016101f6565b34801561033d575f80fd5b5061022a61034c366004611749565b6106c9565b34801561035c575f80fd5b5061022a61036b3660046117d5565b6106d6565b34801561037b575f80fd5b5061022a610708565b34801561038f575f80fd5b5061021460045481565b3480156103a4575f80fd5b506102146103b336600461172e565b610719565b3480156103c3575f80fd5b505f546001600160a01b031661024b565b3480156103df575f80fd5b5061022a6103ee3660046118e0565b61079c565b3480156103fe575f80fd5b5061022a61040d366004611749565b61087f565b34801561041d575f80fd5b5061022a61042c36600461172e565b61089b565b34801561043c575f80fd5b5061021460065481565b348015610451575f80fd5b5061022a610460366004611749565b6108c5565b348015610470575f80fd5b50610214600b5481565b348015610485575f80fd5b506101e561049436600461172e565b60086020525f90815260409020805460019091015482565b3480156104b7575f80fd5b5061021460035481565b3480156104cc575f80fd5b50610214600c5481565b3480156104e1575f80fd5b5061022a6104f0366004611749565b610912565b348015610500575f80fd5b5061022a61050f36600461172e565b6109f7565b34801561051f575f80fd5b5060025461024b906001600160a01b031681565b61053d3334610a31565b565b610547610b33565b61055e336002546001600160a01b03169083610b5d565b61056a33826001610bbc565b61057360018055565b50565b61057e610cd0565b6002546001600160a01b031661061133831561059a5783610600565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156105dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610600919061199c565b6001600160a01b0384169190610b5d565b5050565b61061d610b33565b610625610cd0565b610630838383610cfc565b6040516001600160a01b03841681527f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89060200160405180910390a161067560018055565b505050565b610682610b33565b61068d338383610cfc565b6040805133815290517f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89181900360200190a161061160018055565b6106d1610cd0565b600655565b6106de610cd0565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b610710610cd0565b61053d5f610f26565b6001600160a01b0381165f90815260086020526040812054810361073e57505f919050565b6001600160a01b0382165f9081526008602052604081205461075f90610f75565b6001600160a01b0384165f9081526009602052604090205490915080821161078a57505f9392505050565b61079481836119c7565b949350505050565b6107a4610b33565b80518251146107e35760405162461bcd60e51b8152602060048201526006602482015265494e53594e4360d01b60448201526064015b60405180910390fd5b5f805b835181101561085b57828181518110610801576108016119da565b60200260200101518261081491906119ee565b915061085384828151811061082b5761082b6119da565b6020026020010151848381518110610845576108456119da565b60200260200101515f610bbc565b6001016107e6565b50610875335b6002546001600160a01b0316903084610fa4565b5061061160018055565b610887610b33565b61089033610861565b61056a33825f610bbc565b6108a3610cd0565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6108cd610cd0565b6301e13380811061090d5760405162461bcd60e51b815260206004820152600a602482015269363a329018903cb2b0b960b11b60448201526064016107da565b600355565b61091a610cd0565b804710156109615760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b60448201526064016107da565b5f80546040516001600160a01b039091169083908381818185875af1925050503d805f81146109ab576040519150601f19603f3d011682016040523d82523d5f602084013e6109b0565b606091505b50509050806106115760405162461bcd60e51b8152602060048201526013602482015272115512081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016107da565b6109ff610cd0565b6001600160a01b038116610a2857604051631e4fbdf760e01b81525f60048201526024016107da565b61057381610f26565b5f8111610a665760405162461bcd60e51b815260206004820152600360248201526208aa8960eb1b60448201526064016107da565b5f60055411610aa05760405162461bcd60e51b815260206004820152600660248201526553484152455360d01b60448201526064016107da565b80600d5f828254610ab191906119ee565b9091555050600554610ad2826ec097ce7bc90715b34b9f1000000000611a01565b610adc9190611a18565b600b5f828254610aec91906119ee565b90915550506040518181526001600160a01b038316907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a25050565b600260015403610b5657604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b6040516001600160a01b0383811660248301526044820183905261067591859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610fdd565b6007546001600160a01b031615610c33576007546040516329cc05cf60e01b81526001600160a01b038581166004830152602482018590528315156044830152909116906329cc05cf906064015f604051808303815f87803b158015610c20575f80fd5b505af1925050508015610c31575060015b505b8015610c8b57610c43838361103e565b826001600160a01b03167f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd83604051610c7e91815260200190565b60405180910390a2505050565b610c958383611213565b826001600160a01b03167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a83604051610c7e91815260200190565b5f546001600160a01b0316331461053d5760405163118cdaa760e01b81523360048201526024016107da565b6001600160a01b0383165f908152600860205260408120549003610d1f57505050565b6001600160a01b0383165f908152600a602052604090205460ff161515600103610d4857505050565b6001600160a01b0383165f90815260086020526040812042600190910155610d6f84610719565b6001600160a01b0385165f90815260096020526040812060010180549293508392909190610d9e9084906119ee565b90915550506001600160a01b0384165f90815260086020526040902054610dc490610f75565b6001600160a01b0385165f908152600960205260409020558015610f205780600c5f828254610df391906119ee565b90915550508215610e0e57610e0984828461137d565b610eda565b60405147905f906001600160a01b0387169084908381818185875af1925050503d805f8114610e58576040519150601f19603f3d011682016040523d82523d5f602084013e610e5d565b606091505b5050905080610e965760405162461bcd60e51b8152602060048201526005602482015264044495354360dc1b60448201526064016107da565b610ea083836119c7565b471015610ed75760405162461bcd60e51b8152602060048201526005602482015264444953543160d81b60448201526064016107da565b50505b6040805182815284151560208201526001600160a01b038616917ff34664cb7e3473d9bcd089297cc2ec340fede133eaf733d0ca506f1e05e2fee0910160405180910390a25b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6ec097ce7bc90715b34b9f1000000000600b5483610f949190611a01565b610f9e9190611a18565b92915050565b6040516001600160a01b038481166024830152838116604483015260648201839052610f209186918216906323b872dd90608401610b8a565b5f610ff16001600160a01b038416836115e8565b905080515f141580156110155750808060200190518101906110139190611a37565b155b1561067557604051635274afe760e01b81526001600160a01b03841660048201526024016107da565b6001600160a01b0382165f908152600860205260409020541580159061107b57506001600160a01b0382165f908152600860205260409020548111155b6110b55760405162461bcd60e51b815260206004820152600b60248201526a1491534e88185b5bdd5b9d60aa1b60448201526064016107da565b6003546001600160a01b0383165f908152600860205260409020600101546110dd91906119ee565b421161111b5760405162461bcd60e51b815260206004820152600d60248201526c52454d3a2074696d656c6f636b60981b60448201526064016107da565b5f61112583610719565b90505f808360055461113791906119c7565b1190508061114a5761114a845f80610cfc565b8260055f82825461115b91906119c7565b90915550506001600160a01b0384165f90815260086020526040812080548592906111879084906119c7565b90915550506001600160a01b0384165f9081526008602052604081205490036111bf5760048054905f6111b983611a52565b91905055505b6001600160a01b0384165f908152600860205260409020546111e090610f75565b6001600160a01b0385165f9081526009602052604090205580801561120457505f82115b15610f2057610f208483610a31565b6001600160a01b0382165f908152600860205260409020541561123b5761123b825f80610cfc565b6001600160a01b0382165f9081526008602052604081205460058054919284926112669084906119ee565b90915550506001600160a01b0383165f90815260086020526040812080548492906112929084906119ee565b90915550506001600160a01b0383165f90815260086020526040902042600190910155801580156112d957506001600160a01b0383165f9081526008602052604090205415155b1561133c57600654600454106113275760405162461bcd60e51b8152602060048201526013602482015272155cd95c9cc81b1a5b5a5d081c995858da1959606a1b60448201526064016107da565b60048054905f61133683611a67565b91905055505b6001600160a01b0383165f9081526008602052604090205461135d90610f75565b6001600160a01b039093165f908152600960205260409020929092555050565b6040805160028082526060820183525f926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141d9190611a7f565b815f8151811061142f5761142f6119da565b6001600160a01b039283166020918202929092010152600254825191169082906001908110611460576114606119da565b6001600160a01b0392831660209182029290920101526002546040516370a0823160e01b81523060048201529116905f9082906370a0823190602401602060405180830381865afa1580156114b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114db919061199c565b90507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663b6f9de9586868630426040518663ffffffff1660e01b81526004016115309493929190611a9a565b5f604051808303818588803b158015611547575f80fd5b505af1158015611559573d5f803e3d5ffd5b50506040516370a0823160e01b81523060048201525f93508492506001600160a01b03861691506370a0823190602401602060405180830381865afa1580156115a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c8919061199c565b6115d291906119c7565b90506115df87825f610bbc565b50505050505050565b60606115f583835f6115fc565b9392505050565b6060814710156116215760405163cd78605960e01b81523060048201526024016107da565b5f80856001600160a01b0316848660405161163c9190611b04565b5f6040518083038185875af1925050503d805f8114611676576040519150601f19603f3d011682016040523d82523d5f602084013e61167b565b606091505b509150915061168b868383611695565b9695505050505050565b6060826116aa576116a5826116f1565b6115f5565b81511580156116c157506001600160a01b0384163b155b156116ea57604051639996b31560e01b81526001600160a01b03851660048201526024016107da565b50806115f5565b8051156117015780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114610573575f80fd5b5f6020828403121561173e575f80fd5b81356115f58161171a565b5f60208284031215611759575f80fd5b5035919050565b8015158114610573575f80fd5b5f805f6060848603121561177f575f80fd5b833561178a8161171a565b9250602084013561179a81611760565b929592945050506040919091013590565b5f80604083850312156117bc575f80fd5b82356117c781611760565b946020939093013593505050565b5f80604083850312156117e6575f80fd5b82356117f18161171a565b9150602083013561180181611760565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156118495761184961180c565b604052919050565b5f67ffffffffffffffff82111561186a5761186a61180c565b5060051b60200190565b5f82601f830112611883575f80fd5b8135602061189861189383611851565b611820565b8083825260208201915060208460051b8701019350868411156118b9575f80fd5b602086015b848110156118d557803583529183019183016118be565b509695505050505050565b5f80604083850312156118f1575f80fd5b823567ffffffffffffffff80821115611908575f80fd5b818501915085601f83011261191b575f80fd5b8135602061192b61189383611851565b82815260059290921b84018101918181019089841115611949575f80fd5b948201945b838610156119705785356119618161171a565b8252948201949082019061194e565b96505086013592505080821115611985575f80fd5b5061199285828601611874565b9150509250929050565b5f602082840312156119ac575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610f9e57610f9e6119b3565b634e487b7160e01b5f52603260045260245ffd5b80820180821115610f9e57610f9e6119b3565b8082028115828204841417610f9e57610f9e6119b3565b5f82611a3257634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611a47575f80fd5b81516115f581611760565b5f81611a6057611a606119b3565b505f190190565b5f60018201611a7857611a786119b3565b5060010190565b5f60208284031215611a8f575f80fd5b81516115f58161171a565b5f6080820186835260206080602085015281875180845260a0860191506020890193505f5b81811015611ae45784516001600160a01b031683529383019391830191600101611abf565b50506001600160a01b039690961660408501525050506060015292915050565b5f82515f5b81811015611b235760208186018101518583015201611b09565b505f92019182525091905056fea2646970667358221220e127138b87a53df4938a0aa025ccd3e8bfc80a2f25bcfb71f1802760dbf9e68d64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c668695dcbcf682de106da94bde65c9bc79362d30000000000000000000000000000000000000000000000000000000000278d000000000000000000000000009bc02868e5fb157f05812a06b02d1cc45125d07c
-----Decoded View---------------
Arg [0] : _token (address): 0xc668695dcbCf682dE106Da94bDE65c9bc79362d3
Arg [1] : _lockupPeriod (uint256): 2592000
Arg [2] : initialOwner (address): 0x9BC02868E5fB157F05812A06b02d1cc45125d07c
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c668695dcbcf682de106da94bde65c9bc79362d3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000278d00
Arg [2] : 0000000000000000000000009bc02868e5fb157f05812a06b02d1cc45125d07c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,795.86 | 0.00965675 | $17.34 |
Loading...
Loading
Loading...
Loading
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.