More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 45 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Unstake | 15753816 | 870 days ago | IN | 0 ETH | 0.00117829 | ||||
Stake | 15753808 | 870 days ago | IN | 0 ETH | 0.0019771 | ||||
Stake | 15742094 | 871 days ago | IN | 0 ETH | 0.00161976 | ||||
Stake | 15711638 | 875 days ago | IN | 0 ETH | 0.00141471 | ||||
Unstake | 15709128 | 876 days ago | IN | 0 ETH | 0.00182354 | ||||
Stake | 15691024 | 878 days ago | IN | 0 ETH | 0.00155038 | ||||
Stake | 15690590 | 878 days ago | IN | 0 ETH | 0.00104498 | ||||
Unstake | 15690108 | 878 days ago | IN | 0 ETH | 0.00142437 | ||||
Stake | 15689998 | 878 days ago | IN | 0 ETH | 0.00176652 | ||||
Stake | 15685346 | 879 days ago | IN | 0 ETH | 0.00066289 | ||||
Stake | 15683102 | 879 days ago | IN | 0 ETH | 0.00326974 | ||||
Unstake | 15670165 | 881 days ago | IN | 0 ETH | 0.00147761 | ||||
Unstake | 15667582 | 882 days ago | IN | 0 ETH | 0.00109671 | ||||
Unstake | 15667259 | 882 days ago | IN | 0 ETH | 0.00061357 | ||||
Stake | 15630578 | 887 days ago | IN | 0 ETH | 0.00085469 | ||||
Stake | 15578263 | 894 days ago | IN | 0 ETH | 0.00079564 | ||||
Stake | 15578246 | 894 days ago | IN | 0 ETH | 0.00093778 | ||||
Rage Quit | 15577279 | 894 days ago | IN | 0 ETH | 0.00175964 | ||||
Stake | 15576480 | 894 days ago | IN | 0 ETH | 0.00138321 | ||||
Stake | 15562529 | 896 days ago | IN | 0 ETH | 0.00072104 | ||||
Stake | 15562330 | 896 days ago | IN | 0 ETH | 0.00148483 | ||||
Stake | 15552674 | 898 days ago | IN | 0 ETH | 0.0005398 | ||||
Unstake | 15552618 | 898 days ago | IN | 0 ETH | 0.00045837 | ||||
Stake | 15547600 | 898 days ago | IN | 0 ETH | 0.0016044 | ||||
Unstake | 15546690 | 898 days ago | IN | 0 ETH | 0.00147568 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
InfinityStaker
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 99999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import {Ownable} from '@openzeppelin/contracts/access/Ownable.sol'; import {IERC20} from '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import {Pausable} from '@openzeppelin/contracts/security/Pausable.sol'; /** * @title InfinityStaker * @author nneverlander. Twitter @nneverlander * @notice The staker contract that allows people to stake tokens and earn voting power to be used in curation and possibly other places */ contract InfinityStaker is Ownable, Pausable { struct StakeAmount { uint256 amount; uint256 timestamp; } enum Duration { NONE, THREE_MONTHS, SIX_MONTHS, TWELVE_MONTHS } enum StakeLevel { NONE, BRONZE, SILVER, GOLD, PLATINUM } ///@dev Storage variable to keep track of the staker's staked duration and amounts mapping(address => mapping(Duration => StakeAmount)) public userstakedAmounts; ///@dev Infinity token address address public immutable INFINITY_TOKEN; ///@dev Infinity treasury address - will be a EOA/multisig address public infinityTreasury; /**@dev Power levels to reach the specified stake thresholds. Users can reach these levels either by staking the specified number of tokens for no duration or a less number of tokens but with higher durations. See getUserStakePower() to see how users can reach these levels. */ uint32 public bronzeStakeThreshold = 1000; uint32 public silverStakeThreshold = 5000; uint32 public goldStakeThreshold = 10000; uint32 public platinumStakeThreshold = 20000; ///@dev Penalties if staked tokens are rageQuit early. Example: If 100 tokens are staked for twelve months but rageQuit right away, /// the user will get back 100/4 tokens. uint32 public threeMonthPenalty = 2; uint32 public sixMonthPenalty = 3; uint32 public twelveMonthPenalty = 4; event Staked(address indexed user, uint256 amount, Duration duration); event DurationChanged(address indexed user, uint256 amount, Duration oldDuration, Duration newDuration); event UnStaked(address indexed user, uint256 amount); event RageQuit(address indexed user, uint256 totalToUser, uint256 penalty); event RageQuitPenaltiesUpdated(uint32 threeMonth, uint32 sixMonth, uint32 twelveMonth); event StakeLevelThresholdUpdated(StakeLevel stakeLevel, uint32 threshold); /** @param _tokenAddress The address of the Infinity token contract @param _infinityTreasury The address of the Infinity treasury used for sending rageQuit penalties */ constructor(address _tokenAddress, address _infinityTreasury) { INFINITY_TOKEN = _tokenAddress; infinityTreasury = _infinityTreasury; } // =================================================== USER FUNCTIONS ======================================================= /** * @notice Stake tokens for a specified duration * @dev Tokens are transferred from the user to this contract * @param amount Amount of tokens to stake * @param duration Duration of the stake */ function stake(uint256 amount, Duration duration) external whenNotPaused { require(amount != 0, 'stake amount cant be 0'); // update storage userstakedAmounts[msg.sender][duration].amount += amount; userstakedAmounts[msg.sender][duration].timestamp = block.timestamp; // perform transfer; no need for safeTransferFrom since we know the implementation of the token contract IERC20(INFINITY_TOKEN).transferFrom(msg.sender, address(this), amount); // emit event emit Staked(msg.sender, amount, duration); } /** * @notice Change duration of staked tokens * @dev Duration can be changed from low to high but not from high to low. State updates are performed * @param amount Amount of tokens to change duration * @param oldDuration Old duration of the stake * @param newDuration New duration of the stake */ function changeDuration( uint256 amount, Duration oldDuration, Duration newDuration ) external whenNotPaused { require(amount != 0, 'amount cant be 0'); require(userstakedAmounts[msg.sender][oldDuration].amount >= amount, 'insuf stake to change duration'); require(newDuration > oldDuration, 'new duration must exceed old'); // update storage userstakedAmounts[msg.sender][oldDuration].amount -= amount; userstakedAmounts[msg.sender][newDuration].amount += amount; // update timestamp for new duration userstakedAmounts[msg.sender][newDuration].timestamp = block.timestamp; // only update old duration timestamp if old duration amount is 0 if (userstakedAmounts[msg.sender][oldDuration].amount == 0) { delete userstakedAmounts[msg.sender][oldDuration].timestamp; } // emit event emit DurationChanged(msg.sender, amount, oldDuration, newDuration); } /** * @notice Unstake tokens * @dev Storage updates are done for each stake level. See _updateUserStakedAmounts for more details * @param amount Amount of tokens to unstake */ function unstake(uint256 amount) external whenNotPaused { require(amount != 0, 'unstake amount cant be 0'); uint256 noVesting = userstakedAmounts[msg.sender][Duration.NONE].amount; uint256 vestedThreeMonths = getVestedAmount(msg.sender, Duration.THREE_MONTHS); uint256 vestedSixMonths = getVestedAmount(msg.sender, Duration.SIX_MONTHS); uint256 vestedTwelveMonths = getVestedAmount(msg.sender, Duration.TWELVE_MONTHS); uint256 totalVested = noVesting + vestedThreeMonths + vestedSixMonths + vestedTwelveMonths; require(totalVested >= amount, 'insufficient balance to unstake'); // update storage _updateUserStakedAmounts(msg.sender, amount, noVesting, vestedThreeMonths, vestedSixMonths, vestedTwelveMonths); // perform transfer IERC20(INFINITY_TOKEN).transfer(msg.sender, amount); // emit event emit UnStaked(msg.sender, amount); } /** * @notice Ragequit tokens. Applies penalties for unvested tokens */ function rageQuit() external { (uint256 totalToUser, uint256 penalty) = getRageQuitAmounts(msg.sender); // update storage _clearUserStakedAmounts(msg.sender); // perform transfers IERC20(INFINITY_TOKEN).transfer(msg.sender, totalToUser); IERC20(INFINITY_TOKEN).transfer(infinityTreasury, penalty); // emit event emit RageQuit(msg.sender, totalToUser, penalty); } // ====================================================== VIEW FUNCTIONS ====================================================== /** * @notice Get total staked tokens for a user for all durations * @param user address of the user * @return total amount of tokens staked by the user */ function getUserTotalStaked(address user) external view returns (uint256) { return userstakedAmounts[user][Duration.NONE].amount + userstakedAmounts[user][Duration.THREE_MONTHS].amount + userstakedAmounts[user][Duration.SIX_MONTHS].amount + userstakedAmounts[user][Duration.TWELVE_MONTHS].amount; } /** * @notice Get total vested tokens for a user for all durations * @param user address of the user * @return total amount of vested tokens for the user */ function getUserTotalVested(address user) external view returns (uint256) { return getVestedAmount(user, Duration.NONE) + getVestedAmount(user, Duration.THREE_MONTHS) + getVestedAmount(user, Duration.SIX_MONTHS) + getVestedAmount(user, Duration.TWELVE_MONTHS); } /** * @notice Gets rageQuit amounts for a user after applying penalties * @dev Penalty amounts are sent to Infinity treasury * @param user address of the user * @return Total amount to user and penalties */ function getRageQuitAmounts(address user) public view returns (uint256, uint256) { uint256 noLock = userstakedAmounts[user][Duration.NONE].amount; uint256 threeMonthLock = userstakedAmounts[user][Duration.THREE_MONTHS].amount; uint256 sixMonthLock = userstakedAmounts[user][Duration.SIX_MONTHS].amount; uint256 twelveMonthLock = userstakedAmounts[user][Duration.TWELVE_MONTHS].amount; uint256 totalStaked = noLock + threeMonthLock + sixMonthLock + twelveMonthLock; require(totalStaked != 0, 'nothing staked to rage quit'); uint256 threeMonthVested = getVestedAmount(user, Duration.THREE_MONTHS); uint256 sixMonthVested = getVestedAmount(user, Duration.SIX_MONTHS); uint256 twelveMonthVested = getVestedAmount(user, Duration.TWELVE_MONTHS); uint256 totalVested = noLock + threeMonthVested + sixMonthVested + twelveMonthVested; uint256 totalToUser = totalVested + ((threeMonthLock - threeMonthVested) / threeMonthPenalty) + ((sixMonthLock - sixMonthVested) / sixMonthPenalty) + ((twelveMonthLock - twelveMonthVested) / twelveMonthPenalty); uint256 penalty = totalStaked - totalToUser; return (totalToUser, penalty); } /** * @notice Gets a user's stake level * @param user address of the user * @return StakeLevel */ function getUserStakeLevel(address user) external view returns (StakeLevel) { uint256 totalPower = getUserStakePower(user); if (totalPower <= bronzeStakeThreshold) { return StakeLevel.NONE; } else if (totalPower <= silverStakeThreshold) { return StakeLevel.BRONZE; } else if (totalPower <= goldStakeThreshold) { return StakeLevel.SILVER; } else if (totalPower <= platinumStakeThreshold) { return StakeLevel.GOLD; } else { return StakeLevel.PLATINUM; } } /** * @notice Gets a user stake power. Used to determine voting power in curating collections and possibly other places * @dev Tokens staked for higher duration apply a multiplier * @param user address of the user * @return user stake power */ function getUserStakePower(address user) public view returns (uint256) { return ((userstakedAmounts[user][Duration.NONE].amount) + (userstakedAmounts[user][Duration.THREE_MONTHS].amount * 2) + (userstakedAmounts[user][Duration.SIX_MONTHS].amount * 3) + (userstakedAmounts[user][Duration.TWELVE_MONTHS].amount * 4)) / (1e18); } /** * @notice Returns staking info for a user's staked amounts for different durations * @param user address of the user * @return Staking amounts for different durations */ function getStakingInfo(address user) external view returns (StakeAmount[] memory) { StakeAmount[] memory stakingInfo = new StakeAmount[](4); stakingInfo[0] = userstakedAmounts[user][Duration.NONE]; stakingInfo[1] = userstakedAmounts[user][Duration.THREE_MONTHS]; stakingInfo[2] = userstakedAmounts[user][Duration.SIX_MONTHS]; stakingInfo[3] = userstakedAmounts[user][Duration.TWELVE_MONTHS]; return stakingInfo; } /** * @notice Returns vested amount for a user for a given duration * @param user address of the user * @param duration the duration * @return Vested amount for the given duration */ function getVestedAmount(address user, Duration duration) public view returns (uint256) { uint256 timestamp = userstakedAmounts[user][duration].timestamp; // short circuit if no vesting for this duration if (timestamp == 0) { return 0; } uint256 durationInSeconds = _getDurationInSeconds(duration); uint256 secondsSinceStake = block.timestamp - timestamp; uint256 amount = userstakedAmounts[user][duration].amount; return secondsSinceStake >= durationInSeconds ? amount : 0; } // ====================================================== INTERNAL FUNCTIONS ================================================ function _getDurationInSeconds(Duration duration) internal pure returns (uint256) { if (duration == Duration.THREE_MONTHS) { return 90 days; } else if (duration == Duration.SIX_MONTHS) { return 180 days; } else if (duration == Duration.TWELVE_MONTHS) { return 360 days; } else { return 0 seconds; } } /** @notice Update user staked amounts for different duration on unstake * @dev A more elegant recursive function is possible but this is more gas efficient */ function _updateUserStakedAmounts( address user, uint256 amount, uint256 noVesting, uint256 vestedThreeMonths, uint256 vestedSixMonths, uint256 vestedTwelveMonths ) internal { if (amount > noVesting) { delete userstakedAmounts[user][Duration.NONE].amount; delete userstakedAmounts[user][Duration.NONE].timestamp; amount = amount - noVesting; if (amount > vestedThreeMonths) { if (vestedThreeMonths != 0) { delete userstakedAmounts[user][Duration.THREE_MONTHS].amount; delete userstakedAmounts[user][Duration.THREE_MONTHS].timestamp; amount = amount - vestedThreeMonths; } if (amount > vestedSixMonths) { if (vestedSixMonths != 0) { delete userstakedAmounts[user][Duration.SIX_MONTHS].amount; delete userstakedAmounts[user][Duration.SIX_MONTHS].timestamp; amount = amount - vestedSixMonths; } if (amount > vestedTwelveMonths) { revert('should not happen'); } else { userstakedAmounts[user][Duration.TWELVE_MONTHS].amount -= amount; if (userstakedAmounts[user][Duration.TWELVE_MONTHS].amount == 0) { delete userstakedAmounts[user][Duration.TWELVE_MONTHS].timestamp; } } } else { userstakedAmounts[user][Duration.SIX_MONTHS].amount -= amount; if (userstakedAmounts[user][Duration.SIX_MONTHS].amount == 0) { delete userstakedAmounts[user][Duration.SIX_MONTHS].timestamp; } } } else { userstakedAmounts[user][Duration.THREE_MONTHS].amount -= amount; if (userstakedAmounts[user][Duration.THREE_MONTHS].amount == 0) { delete userstakedAmounts[user][Duration.THREE_MONTHS].timestamp; } } } else { userstakedAmounts[user][Duration.NONE].amount -= amount; if (userstakedAmounts[user][Duration.NONE].amount == 0) { delete userstakedAmounts[user][Duration.NONE].timestamp; } } } /// @dev clears staking info for a user on rageQuit function _clearUserStakedAmounts(address user) internal { // clear amounts delete userstakedAmounts[user][Duration.NONE].amount; delete userstakedAmounts[user][Duration.THREE_MONTHS].amount; delete userstakedAmounts[user][Duration.SIX_MONTHS].amount; delete userstakedAmounts[user][Duration.TWELVE_MONTHS].amount; // clear timestamps delete userstakedAmounts[user][Duration.NONE].timestamp; delete userstakedAmounts[user][Duration.THREE_MONTHS].timestamp; delete userstakedAmounts[user][Duration.SIX_MONTHS].timestamp; delete userstakedAmounts[user][Duration.TWELVE_MONTHS].timestamp; } // ====================================================== ADMIN FUNCTIONS ================================================ /// @dev Admin function to update stake level thresholds function updateStakeLevelThreshold(StakeLevel stakeLevel, uint32 threshold) external onlyOwner { if (stakeLevel == StakeLevel.BRONZE) { bronzeStakeThreshold = threshold; } else if (stakeLevel == StakeLevel.SILVER) { silverStakeThreshold = threshold; } else if (stakeLevel == StakeLevel.GOLD) { goldStakeThreshold = threshold; } else if (stakeLevel == StakeLevel.PLATINUM) { platinumStakeThreshold = threshold; } emit StakeLevelThresholdUpdated(stakeLevel, threshold); } /// @dev Admin function to update rageQuit penalties function updatePenalties( uint32 _threeMonthPenalty, uint32 _sixMonthPenalty, uint32 _twelveMonthPenalty ) external onlyOwner { require(_threeMonthPenalty > 0 && _threeMonthPenalty < threeMonthPenalty, 'invalid value'); require(_sixMonthPenalty > 0 && _sixMonthPenalty < sixMonthPenalty, 'invalid value'); require(_twelveMonthPenalty > 0 && _twelveMonthPenalty < twelveMonthPenalty, 'invalid value'); threeMonthPenalty = _threeMonthPenalty; sixMonthPenalty = _sixMonthPenalty; twelveMonthPenalty = _twelveMonthPenalty; emit RageQuitPenaltiesUpdated(threeMonthPenalty, sixMonthPenalty, twelveMonthPenalty); } /// @dev Admin function to update Infinity treasury function updateInfinityTreasury(address _infinityTreasury) external onlyOwner { require(_infinityTreasury != address(0), 'invalid address'); infinityTreasury = _infinityTreasury; } /// @dev Admin function to pause the contract function pause() external onlyOwner { _pause(); } /// @dev Admin function to unpause the contract function unpause() external onlyOwner { _unpause(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../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; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(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, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 * ==== * * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 99999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_infinityTreasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum InfinityStaker.Duration","name":"oldDuration","type":"uint8"},{"indexed":false,"internalType":"enum InfinityStaker.Duration","name":"newDuration","type":"uint8"}],"name":"DurationChanged","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalToUser","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"penalty","type":"uint256"}],"name":"RageQuit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"threeMonth","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"sixMonth","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"twelveMonth","type":"uint32"}],"name":"RageQuitPenaltiesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum InfinityStaker.StakeLevel","name":"stakeLevel","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"threshold","type":"uint32"}],"name":"StakeLevelThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum InfinityStaker.Duration","name":"duration","type":"uint8"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"INFINITY_TOKEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bronzeStakeThreshold","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"enum InfinityStaker.Duration","name":"oldDuration","type":"uint8"},{"internalType":"enum InfinityStaker.Duration","name":"newDuration","type":"uint8"}],"name":"changeDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getRageQuitAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getStakingInfo","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"internalType":"struct InfinityStaker.StakeAmount[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserStakeLevel","outputs":[{"internalType":"enum InfinityStaker.StakeLevel","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserStakePower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserTotalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserTotalVested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"enum InfinityStaker.Duration","name":"duration","type":"uint8"}],"name":"getVestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldStakeThreshold","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"infinityTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platinumStakeThreshold","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rageQuit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"silverStakeThreshold","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sixMonthPenalty","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"enum InfinityStaker.Duration","name":"duration","type":"uint8"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"threeMonthPenalty","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"twelveMonthPenalty","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_infinityTreasury","type":"address"}],"name":"updateInfinityTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_threeMonthPenalty","type":"uint32"},{"internalType":"uint32","name":"_sixMonthPenalty","type":"uint32"},{"internalType":"uint32","name":"_twelveMonthPenalty","type":"uint32"}],"name":"updatePenalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum InfinityStaker.StakeLevel","name":"stakeLevel","type":"uint8"},{"internalType":"uint32","name":"threshold","type":"uint32"}],"name":"updateStakeLevelThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"enum InfinityStaker.Duration","name":"","type":"uint8"}],"name":"userstakedAmounts","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a0346200009457601f620030ea38819003918201601f19168301916001600160401b03831184841017620000995780849260409485528339810103126200009457806200005f6020620000576200006694620000af565b9201620000af565b90620000c4565b604051612f8b90816200015f82396080518181816103c4015281816105690152818161149501526117fd0152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200009457565b600080546040516001600160a01b039493923391868416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36001600160a81b0319163360ff60a01b191617600055600380546001600160801b0319166c04000000030000000200004e201790556080527d271000001388000003e8000000000000000000000000000000000000000091161760025556fe60806040526004361015610013575b600080fd5b60003560e01c806310087fb11461026b5780632e17de78146102625780633315214b14610259578063341da96b146102505780633c8eb4d0146102475780633f4ba83a1461023e5780633f5677101461023557806340326cd31461022c5780634057942e1461022357806340a771551461021a57806347591fbc1461021157806357a41657146102085780635c975abb146101ff5780636e2f1696146101f65780637077ed94146101ed578063715018a6146101e457806372e562cf146101db5780638456cb59146101d25780638da5cb5b146101c95780638ed9d772146101c05780639c813bae146101b75780639fc647d8146101ae578063a8181711146101a5578063aa4704f31461019c578063b0ccbf8c14610193578063c5b136fe1461018a578063c951665a14610181578063cec8f83814610178578063dfc91e161461016f5763f2fde38b1461016757600080fd5b61000e611ae6565b5061000e611a9b565b5061000e611a48565b5061000e611a05565b5061000e611913565b5061000e61173d565b5061000e61158f565b5061000e6114ff565b5061000e6114b9565b5061000e611449565b5061000e611220565b5061000e6111cd565b5061000e6110ff565b5061000e610ef1565b5061000e610e13565b5061000e610dd3565b5061000e610cca565b5061000e610c85565b5061000e610c40565b5061000e610bee565b5061000e610b9d565b5061000e610b39565b5061000e610938565b5061000e6108c3565b5061000e6107af565b5061000e610769565b5061000e610723565b5061000e610699565b5061000e610456565b5061000e610292565b60243590600482101561000e57565b60443590600482101561000e57565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004357f8acf475137e0cd74ca7f611d16b1e6383ec9a9c71a8e5b85967781b9c7214d116104166102f1610274565b61030360ff60005460a01c1615611cac565b61030e841515611d11565b6103418161033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b610673565b61034c858254611da6565b905542600161037f8361033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b01556040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810185905260208160648160007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff165af18015610449575b61041b575b50604051918291339583611ea6565b0390a2005b61043b9060203d8111610442575b6104338183611e33565b810190611e74565b5038610407565b503d610429565b610451611e8c565b610402565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043561049b60ff60005460a01c1615611cac565b6104a6811515612028565b61052c6104e56104d63373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b60008052602052604060002090565b546104ef336125e6565b6104f83361266f565b90610502336126e0565b926105258661051e86610519876105198888611da6565b611da6565b101561208d565b8533612902565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905260208160448160007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff165af180156105ff575b6105e1575b5060405190815233907f79d3df6837cc49ff0e09fd3258e6e45594e0703445bb06825e9d75156eaee8f0908060208101610416565b6105f89060203d8111610442576104338183611e33565b50386105ac565b610607611e8c565b6105a7565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361000e57565b507f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004111561066957565b61067161062f565b565b90600481101561068c575b600052602052604060002090565b61069461062f565b61067e565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576107056106d461060c565b73ffffffffffffffffffffffffffffffffffffffff6106f1610274565b911660005260016020526040600020610673565b805460019091015460408051928352602083019190915290f35b0390f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60025460a01c16604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60035460601c16604051908152f35b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c05780546108033373ffffffffffffffffffffffffffffffffffffffff831614611bd8565b60ff8160a01c1615610862577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1604051f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152fd5b80fd5b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602061093061090061060c565b61091b61092a61092161091284612752565b61091b856127b7565b90611da6565b61091b8461266f565b916126e0565b604051908152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004357f63150e8b5e4641c6dcb33218dfa68e0fb495103c2026d8bc4f4d2f5ea8dc3b5e610994610274565b61099c610283565b906109af60ff60005460a01c1615611cac565b6109ba841515611ebc565b6109f4846109ec8361033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b541015611f21565b6109fd8161065f565b610a068261065f565b610a11818311611f86565b610a3f8161033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b610a4a858254611feb565b9055610a7a8261033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b610a85858254611da6565b9055426001610ab88461033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155610ae88161033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415610b00575b610416604051928392339684612002565b60006001610b328361033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155610aef565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020610930610b7661060c565b612419565b6005111561066957565b906005821015610b925752565b610b9a61062f565b52565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020610bdf610bda61060c565b61236e565b610bec6040518092610b85565bf35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610c2e610c2961060c565b612190565b60408051928352602083019190915290f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060035463ffffffff60405191831c168152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060ff60005460a01c166040519015158152f35b503461000e576020807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610930610d0661060c565b610d95610dc3610d9c610d5873ffffffffffffffffffffffffffffffffffffffff85166040600082815260018a528181208180528a528181205492815260018a52818120600182528a52205490611da6565b610d95610d858673ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6002600052602052604060002090565b5490611da6565b9273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6003600052602052604060002090565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060025460e01c604051908152f35b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c05780547fffffffffffffffffffffffff000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff821691610e8a338414611bd8565b16825581604051917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08284a3f35b6024359063ffffffff8216820361000e57565b6004359063ffffffff8216820361000e57565b6044359063ffffffff8216820361000e57565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57600435600581101561000e577f066e910cbba4db64b9cc889e0f6c78b8799dd89c67cb57de3bfde471e067093190610f57610eb8565b90610f7b73ffffffffffffffffffffffffffffffffffffffff600054163314611bd8565b610f8481610b7b565b60018103610fee57610fda827fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff77ffffffff00000000000000000000000000000000000000006002549260a01b16911617600255565b610fe960405192839283612ed1565b0390a1005b610ff781610b7b565b6002810361105657611051827fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff7bffffffff0000000000000000000000000000000000000000000000006002549260c01b16911617600255565b610fda565b61105f81610b7b565b600381036110b957611051827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffff000000000000000000000000000000000000000000000000000000006002549260e01b16911617600255565b6110c281610b7b565b60048103611051576110518263ffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000006003541617600355565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c057740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff825461118a3373ffffffffffffffffffffffffffffffffffffffff831614611bd8565b61119a60ff8260a01c1615611cac565b161781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1604051f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff60005416604051908152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e577f64bdb45e94b0b87cde5b2559c69497ded61a964cfcc51cc114d455831b7e866b611279610ecb565b6113b6611284610eb8565b61137461128f610ede565b916112b373ffffffffffffffffffffffffffffffffffffffff600054163314611bd8565b61133663ffffffff956112d28782168015159081611431575b50612ef0565b6112e787841680151590816114195750612ef0565b6112fc87861680151590816113f15750612ef0565b7fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff67ffffffff000000006003549260201b16911617600355565b7fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff6bffffffff00000000000000006003549260401b16911617600355565b7fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff6fffffffff0000000000000000000000006003549260601b16911617600355565b6003546040805163ffffffff602084811c86168216835284841c8616821690830152606093841c909416939093169083015281908101610fe9565b905061141261140960035463ffffffff9060601c1690565b63ffffffff1690565b11386112cc565b905061141261140960035463ffffffff9060401c1690565b905061141261140960035463ffffffff9060201c1690565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060035463ffffffff6040519160401c168152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60025460c01c16604051908152f35b60208082019080835283518092528060408094019401926000905b83821061156f57505050505090565b845180518752830151868401529485019493820193600190910190611560565b503461000e576020807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576115c861060c565b906040918251916115d883611e17565b600483526000805b6080811061171c5761071f85876116fe611627610dc38961162c6116276104d68373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6125c8565b6116358761255c565b5261163f8661255c565b506116806116276116708373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6001600052602052604060002090565b61168987612598565b5261169386612598565b506116c4611627610d858373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6116cd876125a8565b526116d7866125a8565b5073ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b611707836125b8565b52611711826125b8565b505191829182611545565b8290865161172981611dee565b8381528383820152828288010152016115e0565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c0576118b67f20b9ae70e00bcf875fee93f4773eeda971ebf747d5545ae9a3c3c2dfb022167a61179b33612190565b6117a793919333612d4c565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008082523360048301526024820186905260209161188b918391859173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169184816044818f875af18015611906575b6118e9575b508a61185460025473ffffffffffffffffffffffffffffffffffffffff1690565b60405192835273ffffffffffffffffffffffffffffffffffffffff1660048301526024820193909352938492839182906044820190565b03925af180156118dc575b6118be575b50506040805194855260208501919091523393918291820190565b0390a2604051f35b816118d492903d10610442576104338183611e33565b50388061189b565b6118e4611e8c565b611896565b6118ff90853d8711610442576104338183611e33565b5038611833565b61190e611e8c565b61182e565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761194b61060c565b73ffffffffffffffffffffffffffffffffffffffff9061197082600054163314611bd8565b1680156119a7577fffffffffffffffffffffffff000000000000000000000000000000000000000060025416176002556000604051f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f696e76616c6964206164647265737300000000000000000000000000000000006044820152fd5b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60035416604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff60025416604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020610930611ad861060c565b611ae0610274565b90612831565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57611b1e61060c565b73ffffffffffffffffffffffffffffffffffffffff611b4281600054163314611bd8565b811615611b5457611b5290611c3d565b005b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b15611bdf57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6000549073ffffffffffffffffffffffffffffffffffffffff80911691827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06000604051a3565b15611cb357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152fd5b15611d1857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f7374616b6520616d6f756e742063616e742062652030000000000000000000006044820152fd5b507f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81198111611db2570190565b611dba611d76565b0190565b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117611e0a57604052565b611e12611dbe565b604052565b60a0810190811067ffffffffffffffff821117611e0a57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611e0a57604052565b9081602091031261000e5751801515810361000e5790565b506040513d6000823e3d90fd5b906004821015610b925752565b9081526040810192916106719160200190611e99565b15611ec357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f616d6f756e742063616e742062652030000000000000000000000000000000006044820152fd5b15611f2857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f696e737566207374616b6520746f206368616e6765206475726174696f6e00006044820152fd5b15611f8d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6e6577206475726174696f6e206d75737420657863656564206f6c64000000006044820152fd5b818110611ff6570390565b611ffe611d76565b0390565b6040906120216106719496959396606083019783526020830190611e99565b0190611e99565b1561202f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f756e7374616b6520616d6f756e742063616e74206265203000000000000000006044820152fd5b1561209457565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f696e73756666696369656e742062616c616e636520746f20756e7374616b65006044820152fd5b156120f957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6e6f7468696e67207374616b656420746f2072616765207175697400000000006044820152fd5b8115612161570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b9073ffffffffffffffffffffffffffffffffffffffff8216600052600160205260406000206121c89060008052602052604060002090565b546121f38373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612207906001600052602052604060002090565b546122328473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612246906002600052602052604060002090565b546122718573ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612285906003600052602052604060002090565b5480826122928587611da6565b9061229c91611da6565b906122a691611da6565b956122b28715156120f2565b6122bb816125e6565b93846122c68361266f565b6122d081946126e0565b9788926122dc91611da6565b906122e691611da6565b906122f091611da6565b946122fa91611feb565b926003549463ffffffff94858760201c1661231491612157565b61231d91611da6565b9161232791611feb565b838560401c1661233691612157565b61233f91611da6565b9361234991611feb565b9160601c1661235791612157565b61236091611da6565b918261236b91611feb565b90565b61237790612419565b60025463ffffffff60a082901c8116831161239457505050600090565b60c082901c1682116123a7575050600190565b60e01c81116123b65750600290565b6123c861140960035463ffffffff1690565b106123d257600390565b600490565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff046004118115151661240c575b60021b90565b612414611d76565b612406565b61253461236b9161091b61252e610dc361250773ffffffffffffffffffffffffffffffffffffffff851660036000918083526001602052604083208380526020526040832054908352600160205260406124be6124828286206001600052602052604060002090565b54927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff938085046002118115151661254f575b60011b90611da6565b936124e98a73ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b600282526020522054809104821181151516612542575b0290611da6565b9373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b546123d7565b670de0b6b3a7640000900490565b61254a611d76565b612500565b612557611d76565b6124b5565b8051156125695760200190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8051600110156125695760400190565b8051600210156125695760600190565b8051600310156125695760800190565b906040516125d581611dee565b602060018294805484520154910152565b73ffffffffffffffffffffffffffffffffffffffff1660008181526001602052604081206001825260205260016040822001549182156126695782421061265c575b815260016020526276a70061264a604083206001600052602052604060002090565b5492420310612657575090565b905090565b612664611d76565b612628565b50905090565b73ffffffffffffffffffffffffffffffffffffffff166000818152600160205260408120600282526020526001604082200154918215612669578242106126d3575b8152600160205262ed4e0061264a604083206002600052602052604060002090565b6126db611d76565b6126b1565b73ffffffffffffffffffffffffffffffffffffffff16600081815260016020526040812060038252602052600160408220015491821561266957824210612745575b815260016020526301da9c0061264a604083206003600052602052604060002090565b61274d611d76565b612722565b73ffffffffffffffffffffffffffffffffffffffff16600081815260016020526040812081805260205260016040822001549182156126695760409242106127aa575b81526001602052818120818052602052205490565b6127b2611d76565b612795565b73ffffffffffffffffffffffffffffffffffffffff16600081815260016020526040812060018252602052600160408220015491821561266957824210612824575b8152600160205260408120600182526020526276a70060408220549242031015600014612657575090565b61282c611d76565b6127f9565b73ffffffffffffffffffffffffffffffffffffffff16600090808252600160205260016128618460408520610673565b015492831561289d578061287761264a926128a4565b92854210612890575b8452600160205260408420610673565b612898611d76565b612880565b5050905090565b60048110156128f5575b600181036128be57506276a70090565b6128c78161065f565b600281036128d7575062ed4e0090565b806128e360039261065f565b036128f0576301da9c0090565b600090565b6128fd61062f565b6128ae565b9291949093858511600014612cae5761297f600096876129456104d68873ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5560019688886129786104d68a73ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155611feb565b9280841115612c145780612baa575b5080831115612b115780612aa7575b50811115612a04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f73686f756c64206e6f742068617070656e0000000000000000000000000000006044820152606490fd5b612a3c612a34610dc38473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b918254611feb565b9055612a6b610dc38273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612a7657505050565b610dc3612aa39173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155565b612b0a919286612ada610d858773ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b558686612978610d858873ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b903861299d565b5050612b43612a34610d858473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9055612b72610d858273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612b7d57505050565b610d85612aa39173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612c0d919387612bdd6116708873ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5587876129786116708973ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b913861298e565b505050612c47612a346116708473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9055612c766116708273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612c8157505050565b611670612aa39173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5050509150612ce3612a346104d68473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9055612d126104d68273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612d1b5750565b6001612aa36104d660009373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6001612aa3610dc360009373ffffffffffffffffffffffffffffffffffffffff81168552836020526040852085805260205284604081205584612db26116708373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5584612de1610d858373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5584612e10610dc38373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b55612e3b8173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b85805260205284846040822001558484612e786116708473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b01558484612ea9610d858473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b015573ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b90929163ffffffff602091612eea846040810197610b85565b16910152565b15612ef757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f696e76616c69642076616c7565000000000000000000000000000000000000006044820152fdfea264697066735822122040ff5fe6fdbfa8bbe7c0a505d53a35bfcc2ff4753ce385f75b2739a4fdc9daa664736f6c634300080e0033000000000000000000000000cb14ebef218aa871e791eb2aa6ef131540c3a6c4000000000000000000000000dbd8277e2e16aa40f0e5d3f21ffe600ad706d979
Deployed Bytecode
0x60806040526004361015610013575b600080fd5b60003560e01c806310087fb11461026b5780632e17de78146102625780633315214b14610259578063341da96b146102505780633c8eb4d0146102475780633f4ba83a1461023e5780633f5677101461023557806340326cd31461022c5780634057942e1461022357806340a771551461021a57806347591fbc1461021157806357a41657146102085780635c975abb146101ff5780636e2f1696146101f65780637077ed94146101ed578063715018a6146101e457806372e562cf146101db5780638456cb59146101d25780638da5cb5b146101c95780638ed9d772146101c05780639c813bae146101b75780639fc647d8146101ae578063a8181711146101a5578063aa4704f31461019c578063b0ccbf8c14610193578063c5b136fe1461018a578063c951665a14610181578063cec8f83814610178578063dfc91e161461016f5763f2fde38b1461016757600080fd5b61000e611ae6565b5061000e611a9b565b5061000e611a48565b5061000e611a05565b5061000e611913565b5061000e61173d565b5061000e61158f565b5061000e6114ff565b5061000e6114b9565b5061000e611449565b5061000e611220565b5061000e6111cd565b5061000e6110ff565b5061000e610ef1565b5061000e610e13565b5061000e610dd3565b5061000e610cca565b5061000e610c85565b5061000e610c40565b5061000e610bee565b5061000e610b9d565b5061000e610b39565b5061000e610938565b5061000e6108c3565b5061000e6107af565b5061000e610769565b5061000e610723565b5061000e610699565b5061000e610456565b5061000e610292565b60243590600482101561000e57565b60443590600482101561000e57565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004357f8acf475137e0cd74ca7f611d16b1e6383ec9a9c71a8e5b85967781b9c7214d116104166102f1610274565b61030360ff60005460a01c1615611cac565b61030e841515611d11565b6103418161033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b610673565b61034c858254611da6565b905542600161037f8361033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b01556040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810185905260208160648160007f000000000000000000000000cb14ebef218aa871e791eb2aa6ef131540c3a6c473ffffffffffffffffffffffffffffffffffffffff165af18015610449575b61041b575b50604051918291339583611ea6565b0390a2005b61043b9060203d8111610442575b6104338183611e33565b810190611e74565b5038610407565b503d610429565b610451611e8c565b610402565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043561049b60ff60005460a01c1615611cac565b6104a6811515612028565b61052c6104e56104d63373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b60008052602052604060002090565b546104ef336125e6565b6104f83361266f565b90610502336126e0565b926105258661051e86610519876105198888611da6565b611da6565b101561208d565b8533612902565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905260208160448160007f000000000000000000000000cb14ebef218aa871e791eb2aa6ef131540c3a6c473ffffffffffffffffffffffffffffffffffffffff165af180156105ff575b6105e1575b5060405190815233907f79d3df6837cc49ff0e09fd3258e6e45594e0703445bb06825e9d75156eaee8f0908060208101610416565b6105f89060203d8111610442576104338183611e33565b50386105ac565b610607611e8c565b6105a7565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361000e57565b507f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004111561066957565b61067161062f565b565b90600481101561068c575b600052602052604060002090565b61069461062f565b61067e565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576107056106d461060c565b73ffffffffffffffffffffffffffffffffffffffff6106f1610274565b911660005260016020526040600020610673565b805460019091015460408051928352602083019190915290f35b0390f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60025460a01c16604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60035460601c16604051908152f35b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c05780546108033373ffffffffffffffffffffffffffffffffffffffff831614611bd8565b60ff8160a01c1615610862577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1604051f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152fd5b80fd5b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602061093061090061060c565b61091b61092a61092161091284612752565b61091b856127b7565b90611da6565b61091b8461266f565b916126e0565b604051908152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004357f63150e8b5e4641c6dcb33218dfa68e0fb495103c2026d8bc4f4d2f5ea8dc3b5e610994610274565b61099c610283565b906109af60ff60005460a01c1615611cac565b6109ba841515611ebc565b6109f4846109ec8361033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b541015611f21565b6109fd8161065f565b610a068261065f565b610a11818311611f86565b610a3f8161033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b610a4a858254611feb565b9055610a7a8261033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b610a85858254611da6565b9055426001610ab88461033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155610ae88161033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415610b00575b610416604051928392339684612002565b60006001610b328361033c3373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155610aef565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020610930610b7661060c565b612419565b6005111561066957565b906005821015610b925752565b610b9a61062f565b52565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020610bdf610bda61060c565b61236e565b610bec6040518092610b85565bf35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610c2e610c2961060c565b612190565b60408051928352602083019190915290f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060035463ffffffff60405191831c168152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060ff60005460a01c166040519015158152f35b503461000e576020807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610930610d0661060c565b610d95610dc3610d9c610d5873ffffffffffffffffffffffffffffffffffffffff85166040600082815260018a528181208180528a528181205492815260018a52818120600182528a52205490611da6565b610d95610d858673ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6002600052602052604060002090565b5490611da6565b9273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6003600052602052604060002090565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060025460e01c604051908152f35b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c05780547fffffffffffffffffffffffff000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff821691610e8a338414611bd8565b16825581604051917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08284a3f35b6024359063ffffffff8216820361000e57565b6004359063ffffffff8216820361000e57565b6044359063ffffffff8216820361000e57565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57600435600581101561000e577f066e910cbba4db64b9cc889e0f6c78b8799dd89c67cb57de3bfde471e067093190610f57610eb8565b90610f7b73ffffffffffffffffffffffffffffffffffffffff600054163314611bd8565b610f8481610b7b565b60018103610fee57610fda827fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff77ffffffff00000000000000000000000000000000000000006002549260a01b16911617600255565b610fe960405192839283612ed1565b0390a1005b610ff781610b7b565b6002810361105657611051827fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff7bffffffff0000000000000000000000000000000000000000000000006002549260c01b16911617600255565b610fda565b61105f81610b7b565b600381036110b957611051827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffff000000000000000000000000000000000000000000000000000000006002549260e01b16911617600255565b6110c281610b7b565b60048103611051576110518263ffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000006003541617600355565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c057740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff825461118a3373ffffffffffffffffffffffffffffffffffffffff831614611bd8565b61119a60ff8260a01c1615611cac565b161781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1604051f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff60005416604051908152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e577f64bdb45e94b0b87cde5b2559c69497ded61a964cfcc51cc114d455831b7e866b611279610ecb565b6113b6611284610eb8565b61137461128f610ede565b916112b373ffffffffffffffffffffffffffffffffffffffff600054163314611bd8565b61133663ffffffff956112d28782168015159081611431575b50612ef0565b6112e787841680151590816114195750612ef0565b6112fc87861680151590816113f15750612ef0565b7fffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff67ffffffff000000006003549260201b16911617600355565b7fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff6bffffffff00000000000000006003549260401b16911617600355565b7fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff6fffffffff0000000000000000000000006003549260601b16911617600355565b6003546040805163ffffffff602084811c86168216835284841c8616821690830152606093841c909416939093169083015281908101610fe9565b905061141261140960035463ffffffff9060601c1690565b63ffffffff1690565b11386112cc565b905061141261140960035463ffffffff9060401c1690565b905061141261140960035463ffffffff9060201c1690565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000cb14ebef218aa871e791eb2aa6ef131540c3a6c4168152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060035463ffffffff6040519160401c168152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60025460c01c16604051908152f35b60208082019080835283518092528060408094019401926000905b83821061156f57505050505090565b845180518752830151868401529485019493820193600190910190611560565b503461000e576020807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576115c861060c565b906040918251916115d883611e17565b600483526000805b6080811061171c5761071f85876116fe611627610dc38961162c6116276104d68373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6125c8565b6116358761255c565b5261163f8661255c565b506116806116276116708373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6001600052602052604060002090565b61168987612598565b5261169386612598565b506116c4611627610d858373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6116cd876125a8565b526116d7866125a8565b5073ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b611707836125b8565b52611711826125b8565b505191829182611545565b8290865161172981611dee565b8381528383820152828288010152016115e0565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126108c0576118b67f20b9ae70e00bcf875fee93f4773eeda971ebf747d5545ae9a3c3c2dfb022167a61179b33612190565b6117a793919333612d4c565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008082523360048301526024820186905260209161188b918391859173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000cb14ebef218aa871e791eb2aa6ef131540c3a6c4169184816044818f875af18015611906575b6118e9575b508a61185460025473ffffffffffffffffffffffffffffffffffffffff1690565b60405192835273ffffffffffffffffffffffffffffffffffffffff1660048301526024820193909352938492839182906044820190565b03925af180156118dc575b6118be575b50506040805194855260208501919091523393918291820190565b0390a2604051f35b816118d492903d10610442576104338183611e33565b50388061189b565b6118e4611e8c565b611896565b6118ff90853d8711610442576104338183611e33565b5038611833565b61190e611e8c565b61182e565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761194b61060c565b73ffffffffffffffffffffffffffffffffffffffff9061197082600054163314611bd8565b1680156119a7577fffffffffffffffffffffffff000000000000000000000000000000000000000060025416176002556000604051f35b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f696e76616c6964206164647265737300000000000000000000000000000000006044820152fd5b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602063ffffffff60035416604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff60025416604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020610930611ad861060c565b611ae0610274565b90612831565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57611b1e61060c565b73ffffffffffffffffffffffffffffffffffffffff611b4281600054163314611bd8565b811615611b5457611b5290611c3d565b005b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b15611bdf57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6000549073ffffffffffffffffffffffffffffffffffffffff80911691827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06000604051a3565b15611cb357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152fd5b15611d1857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f7374616b6520616d6f756e742063616e742062652030000000000000000000006044820152fd5b507f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81198111611db2570190565b611dba611d76565b0190565b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117611e0a57604052565b611e12611dbe565b604052565b60a0810190811067ffffffffffffffff821117611e0a57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611e0a57604052565b9081602091031261000e5751801515810361000e5790565b506040513d6000823e3d90fd5b906004821015610b925752565b9081526040810192916106719160200190611e99565b15611ec357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f616d6f756e742063616e742062652030000000000000000000000000000000006044820152fd5b15611f2857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f696e737566207374616b6520746f206368616e6765206475726174696f6e00006044820152fd5b15611f8d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6e6577206475726174696f6e206d75737420657863656564206f6c64000000006044820152fd5b818110611ff6570390565b611ffe611d76565b0390565b6040906120216106719496959396606083019783526020830190611e99565b0190611e99565b1561202f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f756e7374616b6520616d6f756e742063616e74206265203000000000000000006044820152fd5b1561209457565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f696e73756666696369656e742062616c616e636520746f20756e7374616b65006044820152fd5b156120f957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6e6f7468696e67207374616b656420746f2072616765207175697400000000006044820152fd5b8115612161570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b9073ffffffffffffffffffffffffffffffffffffffff8216600052600160205260406000206121c89060008052602052604060002090565b546121f38373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612207906001600052602052604060002090565b546122328473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612246906002600052602052604060002090565b546122718573ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612285906003600052602052604060002090565b5480826122928587611da6565b9061229c91611da6565b906122a691611da6565b956122b28715156120f2565b6122bb816125e6565b93846122c68361266f565b6122d081946126e0565b9788926122dc91611da6565b906122e691611da6565b906122f091611da6565b946122fa91611feb565b926003549463ffffffff94858760201c1661231491612157565b61231d91611da6565b9161232791611feb565b838560401c1661233691612157565b61233f91611da6565b9361234991611feb565b9160601c1661235791612157565b61236091611da6565b918261236b91611feb565b90565b61237790612419565b60025463ffffffff60a082901c8116831161239457505050600090565b60c082901c1682116123a7575050600190565b60e01c81116123b65750600290565b6123c861140960035463ffffffff1690565b106123d257600390565b600490565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff046004118115151661240c575b60021b90565b612414611d76565b612406565b61253461236b9161091b61252e610dc361250773ffffffffffffffffffffffffffffffffffffffff851660036000918083526001602052604083208380526020526040832054908352600160205260406124be6124828286206001600052602052604060002090565b54927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff938085046002118115151661254f575b60011b90611da6565b936124e98a73ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b600282526020522054809104821181151516612542575b0290611da6565b9373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b546123d7565b670de0b6b3a7640000900490565b61254a611d76565b612500565b612557611d76565b6124b5565b8051156125695760200190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8051600110156125695760400190565b8051600210156125695760600190565b8051600310156125695760800190565b906040516125d581611dee565b602060018294805484520154910152565b73ffffffffffffffffffffffffffffffffffffffff1660008181526001602052604081206001825260205260016040822001549182156126695782421061265c575b815260016020526276a70061264a604083206001600052602052604060002090565b5492420310612657575090565b905090565b612664611d76565b612628565b50905090565b73ffffffffffffffffffffffffffffffffffffffff166000818152600160205260408120600282526020526001604082200154918215612669578242106126d3575b8152600160205262ed4e0061264a604083206002600052602052604060002090565b6126db611d76565b6126b1565b73ffffffffffffffffffffffffffffffffffffffff16600081815260016020526040812060038252602052600160408220015491821561266957824210612745575b815260016020526301da9c0061264a604083206003600052602052604060002090565b61274d611d76565b612722565b73ffffffffffffffffffffffffffffffffffffffff16600081815260016020526040812081805260205260016040822001549182156126695760409242106127aa575b81526001602052818120818052602052205490565b6127b2611d76565b612795565b73ffffffffffffffffffffffffffffffffffffffff16600081815260016020526040812060018252602052600160408220015491821561266957824210612824575b8152600160205260408120600182526020526276a70060408220549242031015600014612657575090565b61282c611d76565b6127f9565b73ffffffffffffffffffffffffffffffffffffffff16600090808252600160205260016128618460408520610673565b015492831561289d578061287761264a926128a4565b92854210612890575b8452600160205260408420610673565b612898611d76565b612880565b5050905090565b60048110156128f5575b600181036128be57506276a70090565b6128c78161065f565b600281036128d7575062ed4e0090565b806128e360039261065f565b036128f0576301da9c0090565b600090565b6128fd61062f565b6128ae565b9291949093858511600014612cae5761297f600096876129456104d68873ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5560019688886129786104d68a73ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155611feb565b9280841115612c145780612baa575b5080831115612b115780612aa7575b50811115612a04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f73686f756c64206e6f742068617070656e0000000000000000000000000000006044820152606490fd5b612a3c612a34610dc38473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b918254611feb565b9055612a6b610dc38273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612a7657505050565b610dc3612aa39173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b0155565b612b0a919286612ada610d858773ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b558686612978610d858873ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b903861299d565b5050612b43612a34610d858473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9055612b72610d858273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612b7d57505050565b610d85612aa39173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b612c0d919387612bdd6116708873ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5587876129786116708973ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b913861298e565b505050612c47612a346116708473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9055612c766116708273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612c8157505050565b611670612aa39173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5050509150612ce3612a346104d68473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9055612d126104d68273ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5415612d1b5750565b6001612aa36104d660009373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6001612aa3610dc360009373ffffffffffffffffffffffffffffffffffffffff81168552836020526040852085805260205284604081205584612db26116708373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5584612de1610d858373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b5584612e10610dc38373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b55612e3b8173ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b85805260205284846040822001558484612e786116708473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b01558484612ea9610d858473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b015573ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b90929163ffffffff602091612eea846040810197610b85565b16910152565b15612ef757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f696e76616c69642076616c7565000000000000000000000000000000000000006044820152fdfea264697066735822122040ff5fe6fdbfa8bbe7c0a505d53a35bfcc2ff4753ce385f75b2739a4fdc9daa664736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cb14ebef218aa871e791eb2aa6ef131540c3a6c4000000000000000000000000dbd8277e2e16aa40f0e5d3f21ffe600ad706d979
-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0xcb14EBeF218aa871e791EB2AA6eF131540C3a6c4
Arg [1] : _infinityTreasury (address): 0xDBd8277e2E16aa40f0e5D3f21ffe600Ad706D979
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000cb14ebef218aa871e791eb2aa6ef131540c3a6c4
Arg [1] : 000000000000000000000000dbd8277e2e16aa40f0e5d3f21ffe600ad706d979
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.