Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 5,515 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 20914277 | 514 days ago | IN | 0 ETH | 0.01108796 | ||||
| Withdraw | 20320318 | 596 days ago | IN | 0 ETH | 0.00261727 | ||||
| Withdraw | 20147462 | 621 days ago | IN | 0 ETH | 0.00051918 | ||||
| Withdraw Rewards | 19467829 | 716 days ago | IN | 0 ETH | 0.00898654 | ||||
| Withdraw | 19454306 | 718 days ago | IN | 0 ETH | 0.00358315 | ||||
| Withdraw | 19450047 | 718 days ago | IN | 0 ETH | 0.0040016 | ||||
| Withdraw Rewards | 19316342 | 737 days ago | IN | 0 ETH | 0.00194723 | ||||
| Withdraw | 19316337 | 737 days ago | IN | 0 ETH | 0.00784076 | ||||
| Withdraw Rewards | 19057461 | 773 days ago | IN | 0 ETH | 0.00151719 | ||||
| Withdraw | 18931871 | 791 days ago | IN | 0 ETH | 0.00160641 | ||||
| Withdraw | 18886791 | 797 days ago | IN | 0 ETH | 0.0028003 | ||||
| Withdraw Rewards | 18883095 | 798 days ago | IN | 0 ETH | 0.0015023 | ||||
| Withdraw | 18883094 | 798 days ago | IN | 0 ETH | 0.00526486 | ||||
| Withdraw Rewards | 18856194 | 802 days ago | IN | 0 ETH | 0.0010622 | ||||
| Withdraw | 18750820 | 816 days ago | IN | 0 ETH | 0.00247282 | ||||
| Withdraw Rewards | 18750776 | 816 days ago | IN | 0 ETH | 0.00338729 | ||||
| Withdraw | 18727861 | 820 days ago | IN | 0 ETH | 0.00745393 | ||||
| Withdraw | 18709214 | 822 days ago | IN | 0 ETH | 0.00447859 | ||||
| Withdraw Rewards | 18709156 | 822 days ago | IN | 0 ETH | 0.00364268 | ||||
| Withdraw Rewards | 17940295 | 930 days ago | IN | 0 ETH | 0.00163003 | ||||
| Stake | 17684586 | 966 days ago | IN | 0 ETH | 0.00118692 | ||||
| Withdraw Rewards | 17684541 | 966 days ago | IN | 0 ETH | 0.00173811 | ||||
| Withdraw | 17553490 | 984 days ago | IN | 0 ETH | 0.00094203 | ||||
| Withdraw Rewards | 17553487 | 984 days ago | IN | 0 ETH | 0.0014693 | ||||
| Withdraw Rewards | 17430571 | 1001 days ago | IN | 0 ETH | 0.0008458 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 11830235 | 1848 days ago | 0.03989567 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x88b5Aa97...1827F3e40 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
OpenEndedRewardManager
Compiler Version
v0.6.6+commit.6c089d02
Optimization Enabled:
No with 2000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity >=0.6.0 <0.8.0;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "./IFestakeRewardManager.sol";
import "./IFestakeWithdrawer.sol";
import "./Festaked.sol";
/**
* Allows stake, unstake, and add reward at any time.
* stake and reward token can be different.
*/
contract OpenEndedRewardManager is
Festaked,
IFestakeRewardManager, IFestakeWithdrawer {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public override rewardToken;
uint256 public override rewardsTotal;
uint256 public fakeRewardsTotal;
mapping (address=>uint256) fakeRewards;
constructor(
string memory name_,
address tokenAddress_,
address rewardTokenAddress_,
uint stakingStarts_,
uint stakingEnds_,
uint withdrawStarts_,
uint withdrawEnds_,
uint256 stakingCap_) Festaked(name_, tokenAddress_, stakingStarts_, stakingEnds_,
withdrawStarts_, withdrawEnds_, stakingCap_) public {
rewardToken = IERC20(rewardTokenAddress_);
}
/**
* First send the rewards to this contract, then call this method.
* Designed to be called by smart contracts.
*/
function addMarginalReward()
external override returns (bool) {
return _addMarginalReward();
}
function _addMarginalReward()
internal virtual returns (bool) {
address me = address(this);
IERC20 _rewardToken = rewardToken;
uint256 amount = _rewardToken.balanceOf(me).sub(rewardsTotal);
if (address(_rewardToken) == tokenAddress) {
amount = amount.sub(stakedBalance);
}
if (amount == 0) {
return true; // No reward to add. Its ok. No need to fail callers.
}
rewardsTotal = rewardsTotal.add(amount);
fakeRewardsTotal = fakeRewardsTotal.add(amount);
return true;
}
function addReward(uint256 rewardAmount)
external override returns (bool) {
require(rewardAmount != 0, "OERM: rewardAmount is zero");
rewardToken.safeTransferFrom(msg.sender, address(this), rewardAmount);
_addMarginalReward();
}
function fakeRewardOf(address staker) external view returns (uint256) {
return fakeRewards[staker];
}
function rewardOf(address staker)
external override virtual view returns (uint256) {
uint256 stake = Festaked._stakes[staker];
return _calcRewardOf(staker, stakedBalance, stake);
}
function _calcRewardOf(address staker, uint256 totalStaked_, uint256 stake)
internal view returns (uint256) {
if (stake == 0) {
return 0;
}
uint256 fr = fakeRewards[staker];
uint256 rew = _calcReward(totalStaked_, fakeRewardsTotal, stake);
return rew > fr ? rew.sub(fr) : 0; // Ignoring the overflow problem
}
function withdrawRewards() external override virtual returns (uint256) {
require(msg.sender != address(0), "OERM: Bad address");
return _withdrawRewards(msg.sender);
}
/**
* First withdraw all rewards, than withdarw it all, then stake back the remaining.
*/
function withdraw(uint256 amount) external override virtual returns (bool) {
address _staker = msg.sender;
return _withdraw(_staker, amount);
}
function _withdraw(address _staker, uint256 amount)
internal virtual returns (bool) {
if (amount == 0) {
return true;
}
uint256 actualPay = _withdrawOnlyUpdateState(_staker, amount);
IERC20(tokenAddress).safeTransfer(_staker, amount);
if (actualPay != 0) {
rewardToken.safeTransfer(_staker, actualPay);
}
emit PaidOut(tokenAddress, address(rewardToken), _staker, amount, actualPay);
return true;
}
function _withdrawOnlyUpdateState(address _staker, uint256 amount)
internal virtual returns (uint256) {
uint256 userStake = _stakes[_staker];
require(amount <= userStake, "OERM: Not enough balance");
uint256 userFake = fakeRewards[_staker];
uint256 fakeTotal = fakeRewardsTotal;
uint256 _stakedBalance = stakedBalance;
uint256 actualPay = _calcWithdrawRewards(userStake, userFake, _stakedBalance, fakeTotal);
uint256 fakeRewAmount = _calculateFakeRewardAmount(amount, fakeTotal, _stakedBalance);
fakeRewardsTotal = fakeRewardsTotal.sub(fakeRewAmount);
fakeRewards[_staker] = userFake.add(actualPay).sub(fakeRewAmount);
rewardsTotal = rewardsTotal.sub(actualPay);
stakedBalance = _stakedBalance.sub(amount);
_stakes[_staker] = userStake.sub(amount);
return actualPay;
}
function _stake(address payer, address staker, uint256 amount)
virtual
override
internal
_after(stakingStarts)
_before(withdrawEnds)
_positive(amount)
_realAddress(payer)
_realAddress(staker)
returns (bool) {
return _stakeNoPreAction(payer, staker, amount);
}
function _stakeNoPreAction(address payer, address staker, uint256 amount)
internal
returns (bool) {
uint256 remaining = amount;
uint256 _stakingCap = stakingCap;
uint256 _stakedBalance = stakedBalance;
// check the remaining amount to be staked
// For pay per transfer tokens we limit the cap on incoming tokens for simplicity. This might
// mean that cap may not necessary fill completely which is ok.
if (_stakingCap != 0 && remaining > (_stakingCap.sub(_stakedBalance))) {
remaining = _stakingCap.sub(_stakedBalance);
}
// These requires are not necessary, because it will never happen, but won't hurt to double check
// this is because stakedTotal and stakedBalance are only modified in this method during the staking period
require(remaining != 0, "OERM: Staking cap is filled");
require(stakingCap == 0 || remaining.add(stakedBalance) <= stakingCap, "OERM: this will increase staking amount pass the cap");
// Update remaining in case actual amount paid was different.
remaining = _payMe(payer, remaining, tokenAddress);
require(_stakeUpdateStateOnly(staker, remaining), "OERM: Error staking");
// To ensure total is only updated here. Not when simulating the stake.
stakedTotal = stakedTotal.add(remaining);
emit Staked(tokenAddress, staker, amount, remaining);
}
function _stakeUpdateStateOnly(address staker, uint256 amount)
internal returns (bool) {
uint256 _stakedBalance = stakedBalance;
uint256 _fakeTotal = fakeRewardsTotal;
bool isNotNew = _stakedBalance != 0;
uint256 curRew = isNotNew ?
_calculateFakeRewardAmount(amount, _fakeTotal, _stakedBalance) :
_fakeTotal;
_stakedBalance = _stakedBalance.add(amount);
_stakes[staker] = _stakes[staker].add(amount);
fakeRewards[staker] = fakeRewards[staker].add(curRew);
stakedBalance = _stakedBalance;
if (isNotNew) {
fakeRewardsTotal = _fakeTotal.add(curRew);
}
return true;
}
function _calculateFakeRewardAmount(
uint256 amount, uint256 baseFakeTotal, uint256 baseStakeTotal
) internal pure returns (uint256) {
return amount.mul(baseFakeTotal).div(baseStakeTotal);
}
function _withdrawRewards(address _staker) internal returns (uint256) {
uint256 userStake = _stakes[_staker];
uint256 _stakedBalance = stakedBalance;
uint256 totalFake = fakeRewardsTotal;
uint256 userFake = fakeRewards[_staker];
uint256 actualPay = _calcWithdrawRewards(userStake, userFake, _stakedBalance, totalFake);
rewardsTotal = rewardsTotal.sub(actualPay);
fakeRewards[_staker] = fakeRewards[_staker].add(actualPay);
if (actualPay != 0) {
rewardToken.safeTransfer(_staker, actualPay);
}
emit PaidOut(tokenAddress, address(rewardToken), _staker, 0, actualPay);
return actualPay;
}
function _calcWithdrawRewards(
uint256 _stakedAmount,
uint256 _userFakeRewards,
uint256 _totalStaked,
uint256 _totalFakeRewards)
internal pure returns (uint256) {
uint256 toPay = _calcReward(_totalStaked, _totalFakeRewards, _stakedAmount);
return toPay > _userFakeRewards ? toPay.sub(_userFakeRewards) : 0; // Ignore rounding issue
}
function _calcReward(uint256 total, uint256 fakeTotal, uint256 staked)
internal pure returns (uint256) {
return fakeTotal.mul(staked).div(total);
}
}pragma solidity >=0.6.0 <0.8.0;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
library SafeAmount {
using SafeMath for uint256;
using SafeERC20 for IERC20;
function safeTransferFrom(
address token,
address from,
address to,
uint256 amount) internal returns (uint256) {
uint256 preBalance = IERC20(token).balanceOf(to);
IERC20(token).transferFrom(from, to, amount);
uint256 postBalance = IERC20(token).balanceOf(to);
return postBalance.sub(preBalance);
}
}pragma solidity >=0.6.0 <0.8.0;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "./IFestaked.sol";
import "../common/SafeAmount.sol";
/**
* A staking contract distributes rewards.
* One can create several TraditionalFestaking over one
* staking and give different rewards for a single
* staking contract.
*/
contract Festaked is IFestaked {
using SafeMath for uint256;
using SafeERC20 for IERC20;
mapping (address => uint256) internal _stakes;
string public name;
address public tokenAddress;
uint public override stakingStarts;
uint public override stakingEnds;
uint public withdrawStarts;
uint public withdrawEnds;
uint256 public override stakedTotal;
uint256 public stakingCap;
uint256 public override stakedBalance;
event Staked(address indexed token, address indexed staker_, uint256 requestedAmount_, uint256 stakedAmount_);
/**
* Fixed periods. For an open ended contract use end dates from very distant future.
*/
constructor (
string memory name_,
address tokenAddress_,
uint stakingStarts_,
uint stakingEnds_,
uint withdrawStarts_,
uint withdrawEnds_,
uint256 stakingCap_) public {
name = name_;
require(tokenAddress_ != address(0), "Festaking: 0 address");
tokenAddress = tokenAddress_;
require(stakingStarts_ > 0, "Festaking: zero staking start time");
if (stakingStarts_ < now) {
stakingStarts = now;
} else {
stakingStarts = stakingStarts_;
}
require(stakingEnds_ >= stakingStarts, "Festaking: staking end must be after staking starts");
stakingEnds = stakingEnds_;
require(withdrawStarts_ >= stakingEnds, "Festaking: withdrawStarts must be after staking ends");
withdrawStarts = withdrawStarts_;
require(withdrawEnds_ >= withdrawStarts, "Festaking: withdrawEnds must be after withdraw starts");
withdrawEnds = withdrawEnds_;
require(stakingCap_ >= 0, "Festaking: stakingCap cannot be negative");
stakingCap = stakingCap_;
}
function stakeOf(address account) external override view returns (uint256) {
return _stakes[account];
}
function getToken() external override view returns (address) {
return tokenAddress;
}
function stakeFor(address staker, uint256 amount)
external
override
_positive(amount)
_realAddress(staker)
_realAddress(msg.sender)
returns (bool) {
return _stake(msg.sender, staker, amount);
}
/**
* Requirements:
* - `amount` Amount to be staked
*/
function stake(uint256 amount)
external
override
_positive(amount)
_realAddress(msg.sender)
returns (bool) {
address from = msg.sender;
return _stake(from, from, amount);
}
function _stake(address payer, address staker, uint256 amount)
virtual
internal
_after(stakingStarts)
_before(stakingEnds)
_positive(amount)
returns (bool) {
// check the remaining amount to be staked
// For pay per transfer tokens we limit the cap on incoming tokens for simplicity. This might
// mean that cap may not necessary fill completely which is ok.
uint256 remaining = amount;
if (stakingCap > 0 && remaining > (stakingCap.sub(stakedBalance))) {
remaining = stakingCap.sub(stakedBalance);
}
// These requires are not necessary, because it will never happen, but won't hurt to double check
// this is because stakedTotal and stakedBalance are only modified in this method during the staking period
require(remaining > 0, "Festaking: Staking cap is filled");
require((remaining + stakedTotal) <= stakingCap, "Festaking: this will increase staking amount pass the cap");
// Update remaining in case actual amount paid was different.
remaining = _payMe(payer, remaining, tokenAddress);
emit Staked(tokenAddress, staker, amount, remaining);
// Transfer is completed
stakedBalance = stakedBalance.add(remaining);
stakedTotal = stakedTotal.add(remaining);
_stakes[staker] = _stakes[staker].add(remaining);
return true;
}
function _payMe(address payer, uint256 amount, address token)
internal
returns (uint256) {
return _payTo(payer, address(this), amount, token);
}
function _payTo(address allower, address receiver, uint256 amount, address token)
internal
returns (uint256) {
// Request to transfer amount from the contract to receiver.
// contract does not own the funds, so the allower must have added allowance to the contract
// Allower is the original owner.
return SafeAmount.safeTransferFrom(token, allower, receiver, amount);
}
modifier _realAddress(address addr) {
require(addr != address(0), "Festaking: zero address");
_;
}
modifier _positive(uint256 amount) {
require(amount >= 0, "Festaking: negative amount");
_;
}
modifier _after(uint eventTime) {
require(now >= eventTime, "Festaking: bad timing for the request");
_;
}
modifier _before(uint eventTime) {
require(now < eventTime, "Festaking: bad timing for the request");
_;
}
}pragma solidity >=0.6.0 <0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
/**
* @dev Ferrum Staking interface for adding reward
*/
interface IFestakeRewardManager {
/**
* @dev legacy add reward. To be used by contract support time limitted rewards.
*/
function addReward(uint256 rewardAmount) external returns (bool);
/**
* @dev withdraw rewards for the user.
* The only option is to withdraw all rewards is one go.
*/
function withdrawRewards() external returns (uint256);
/**
* @dev marginal rewards is to be used by contracts supporting ongoing rewards.
* Send the reward to the contract address first.
*/
function addMarginalReward() external returns (bool);
function rewardToken() external view returns (IERC20);
function rewardsTotal() external view returns (uint256);
/**
* @dev returns current rewards for an address
*/
function rewardOf(address addr) external view returns (uint256);
}pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Ferrum Staking interface for adding reward
*/
interface IFestakeWithdrawer {
event PaidOut(address indexed token, address indexed rewardToken, address indexed staker_, uint256 amount_, uint256 reward_);
/**
* @dev withdraws a certain amount and distributes rewards.
*/
function withdraw(uint256 amount) external returns (bool);
}pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Ferrum Staking interface
*/
interface IFestaked {
event Staked(address indexed token, address indexed staker_, uint256 requestedAmount_, uint256 stakedAmount_);
function stake (uint256 amount) external returns (bool);
function stakeFor (address staker, uint256 amount) external returns (bool);
function stakeOf(address account) external view returns (uint256);
function getToken() external view returns (address);
function stakedTotal() external view returns (uint256);
function stakedBalance() external view returns (uint256);
function stakingStarts() external view returns (uint256);
function stakingEnds() external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "./IERC20.sol";
import "../../math/SafeMath.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 SafeMath for uint256;
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'
// solhint-disable-next-line max-line-length
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).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_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
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 2000
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"address","name":"tokenAddress_","type":"address"},{"internalType":"address","name":"rewardTokenAddress_","type":"address"},{"internalType":"uint256","name":"stakingStarts_","type":"uint256"},{"internalType":"uint256","name":"stakingEnds_","type":"uint256"},{"internalType":"uint256","name":"withdrawStarts_","type":"uint256"},{"internalType":"uint256","name":"withdrawEnds_","type":"uint256"},{"internalType":"uint256","name":"stakingCap_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"rewardToken","type":"address"},{"indexed":true,"internalType":"address","name":"staker_","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reward_","type":"uint256"}],"name":"PaidOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"staker_","type":"address"},{"indexed":false,"internalType":"uint256","name":"requestedAmount_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakedAmount_","type":"uint256"}],"name":"Staked","type":"event"},{"inputs":[],"name":"addMarginalReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"addReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"fakeRewardOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fakeRewardsTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"rewardOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"stakeOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingEnds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingStarts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEnds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStarts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
0x60806040523480156200001157600080fd5b5060405162002f6438038062002f6483398181016040526101008110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b838201915060208201858111156200007057600080fd5b82518660018202830111640100000000821117156200008e57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c4578082015181840152602081019050620000a7565b50505050905090810190601f168015620000f25780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919050505087878686868686866001908051906020019062000161929190620004a5565b50600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141562000206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f46657374616b696e673a2030206164647265737300000000000000000000000081525060200191505060405180910390fd5b85600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008511620002a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062002f1a6022913960400191505060405180910390fd5b42851015620002b85742600381905550620002c0565b846003819055505b6003548410156200031d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018062002e7e6033913960400191505060405180910390fd5b8360048190555060045483101562000381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603481526020018062002ee66034913960400191505060405180910390fd5b82600581905550600554821015620003e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018062002eb16035913960400191505060405180910390fd5b81600681905550600081101562000448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018062002f3c6028913960400191505060405180910390fd5b806008819055505050505050505085600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505050505062000554565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004e857805160ff191683800117855562000519565b8280016001018555821562000519579182015b8281111562000518578251825591602001919060010190620004fb565b5b5090506200052891906200052c565b5090565b6200055191905b808211156200054d57600081600090555060010162000533565b5090565b90565b61291a80620005646000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c806374de4ec4116100d8578063b410e2a11161008c578063d66692a711610066578063d66692a7146105f0578063eacebf611461060e578063f7c618c11461062c57610182565b8063b410e2a114610596578063bb2d7f3a146105b4578063c7b8981c146105d257610182565b8063a2313f6d116100bd578063a2313f6d146104da578063a694fc3a146104f8578063ab0b25b61461053e57610182565b806374de4ec41461044a5780639d76ea581461049057610182565b80632e1a7d4d1161013a57806344c370d31161011457806344c370d3146103f05780635b9f00161461040e5780636d68c7d41461042c57610182565b80632e1a7d4d146102ec5780632ee4090814610332578063426233601461039857610182565b80631d62ebd91161016b5780631d62ebd91461022c57806321b13cdf1461028457806321df0da7146102a257610182565b806306fdde03146101875780631c31f5551461020a575b600080fd5b61018f610676565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101cf5780820151818401526020810190506101b4565b50505050905090810190601f1680156101fc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610212610714565b604051808215151515815260200191505060405180910390f35b61026e6004803603602081101561024257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610723565b6040518082815260200191505060405180910390f35b61028c61077c565b6040518082815260200191505060405180910390f35b6102aa610782565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103186004803603602081101561030257600080fd5b81019080803590602001909291905050506107ac565b604051808215151515815260200191505060405180910390f35b61037e6004803603604081101561034857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107c4565b604051808215151515815260200191505060405180910390f35b6103da600480360360208110156103ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061099c565b6040518082815260200191505060405180910390f35b6103f86109e4565b6040518082815260200191505060405180910390f35b6104166109ea565b6040518082815260200191505060405180910390f35b6104346109f0565b6040518082815260200191505060405180910390f35b6104766004803603602081101561046057600080fd5b81019080803590602001909291905050506109f6565b604051808215151515815260200191505060405180910390f35b610498610acb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e2610af1565b6040518082815260200191505060405180910390f35b6105246004803603602081101561050e57600080fd5b8101908080359060200190929190505050610af7565b604051808215151515815260200191505060405180910390f35b6105806004803603602081101561055457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c2f565b6040518082815260200191505060405180910390f35b61059e610c78565b6040518082815260200191505060405180910390f35b6105bc610c7e565b6040518082815260200191505060405180910390f35b6105da610c84565b6040518082815260200191505060405180910390f35b6105f8610d36565b6040518082815260200191505060405180910390f35b610616610d3c565b6040518082815260200191505060405180910390f35b610634610d42565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b505050505081565b600061071e610d68565b905090565b6000806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506107748360095483610f29565b915050919050565b60055481565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000803390506107bc8184610fbf565b915050919050565b600081600081101561083e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f46657374616b696e673a206e6567617469766520616d6f756e7400000000000081525060200191505060405180910390fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b33600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610986576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b610991338787611157565b935050505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60085481565b60095481565b60035481565b600080821415610a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4f45524d3a20726577617264416d6f756e74206973207a65726f00000000000081525060200191505060405180910390fd5b610abd333084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113e9909392919063ffffffff16565b610ac5610d68565b50919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000816000811015610b71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f46657374616b696e673a206e6567617469766520616d6f756e7400000000000081525060200191505060405180910390fd5b33600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b6000339050610c25818287611157565b9350505050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60045481565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610d28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4f45524d3a20426164206164647265737300000000000000000000000000000081525060200191505060405180910390fd5b610d31336114d6565b905090565b60075481565b60065481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000803090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610e63600b548373ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e1a57600080fd5b505afa158015610e2e573d6000803e3d6000fd5b505050506040513d6020811015610e4457600080fd5b810190808051906020019092919050505061175890919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed357610ed06009548261175890919063ffffffff16565b90505b6000811415610ee85760019350505050610f26565b610efd81600b546117a290919063ffffffff16565b600b81905550610f1881600c546117a290919063ffffffff16565b600c81905550600193505050505b90565b600080821415610f3c5760009050610fb8565b6000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610f8f85600c548661182a565b9050818111610f9f576000610fb3565b610fb2828261175890919063ffffffff16565b5b925050505b9392505050565b600080821415610fd25760019050611151565b6000610fde848461185a565b905061102d8484600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa09092919063ffffffff16565b60008114611083576110828482600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa09092919063ffffffff16565b5b8373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f0fd12da3890315fa38b862dc2fff7f24c95981f6508cc2be090640de791b671e8685604051808381526020018281526020019250505060405180910390a460019150505b92915050565b6000600354804210156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128756025913960400191505060405180910390fd5b600654804210611210576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128756025913960400191505060405180910390fd5b836000811015611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f46657374616b696e673a206e6567617469766520616d6f756e7400000000000081525060200191505060405180910390fd5b86600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561132c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b86600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b6113db898989611b58565b955050505050509392505050565b6114d0846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611dfb565b50505050565b6000806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060095490506000600c5490506000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600061157a85838686611eea565b905061159181600b5461175890919063ffffffff16565b600b819055506115e981600d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008114611682576116818782600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa09092919063ffffffff16565b5b8673ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f0fd12da3890315fa38b862dc2fff7f24c95981f6508cc2be090640de791b671e600085604051808381526020018281526020019250505060405180910390a48095505050505050919050565b600061179a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f27565b905092915050565b600080828401905083811015611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611851846118438486611fe790919063ffffffff16565b61206d90919063ffffffff16565b90509392505050565b6000806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831115611914576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4f45524d3a204e6f7420656e6f7567682062616c616e6365000000000000000081525060200191505060405180910390fd5b6000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600c54905060006009549050600061197485858486611eea565b905060006119838885856120b7565b905061199a81600c5461175890919063ffffffff16565b600c819055506119c5816119b784886117a290919063ffffffff16565b61175890919063ffffffff16565b600d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a1d82600b5461175890919063ffffffff16565b600b81905550611a36888461175890919063ffffffff16565b600981905550611a4f888761175890919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081965050505050505092915050565b611b538363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611dfb565b505050565b600080829050600060085490506000600954905060008214158015611b8e5750611b8b818361175890919063ffffffff16565b83115b15611ba957611ba6818361175890919063ffffffff16565b92505b6000831415611c20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4f45524d3a205374616b696e67206361702069732066696c6c6564000000000081525060200191505060405180910390fd5b60006008541480611c475750600854611c44600954856117a290919063ffffffff16565b11155b611c9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806128416034913960400191505060405180910390fd5b611cc98784600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166120e7565b9250611cd586846120fe565b611d47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4f45524d3a204572726f72207374616b696e670000000000000000000000000081525060200191505060405180910390fd5b611d5c836007546117a290919063ffffffff16565b6007819055508573ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8786604051808381526020018281526020019250505060405180910390a35050509392505050565b6060611e5d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166122a29092919063ffffffff16565b9050600081511115611ee557808060200190516020811015611e7e57600080fd5b8101908080519060200190929190505050611ee4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128bb602a913960400191505060405180910390fd5b5b505050565b600080611ef884848861182a565b9050848111611f08576000611f1c565b611f1b858261175890919063ffffffff16565b5b915050949350505050565b6000838311158290611fd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f99578082015181840152602081019050611f7e565b50505050905090810190601f168015611fc65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831415611ffa5760009050612067565b600082840290508284828161200b57fe5b0414612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061289a6021913960400191505060405180910390fd5b809150505b92915050565b60006120af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122ba565b905092915050565b60006120de826120d08587611fe790919063ffffffff16565b61206d90919063ffffffff16565b90509392505050565b60006120f584308585612380565b90509392505050565b60008060095490506000600c5490506000808314159050600081612122578261212e565b61212d8684866120b7565b5b905061214386856117a290919063ffffffff16565b9350612196866000808a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b6000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061222a81600d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360098190555081156122945761228d81846117a290919063ffffffff16565b600c819055505b600194505050505092915050565b60606122b18484600085612398565b90509392505050565b60008083118290612366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561232b578082015181840152602081019050612310565b50505050905090810190601f1680156123585780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161237257fe5b049050809150509392505050565b600061238e8286868661259e565b9050949350505050565b60606123a38561282d565b612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124655780518252602082019150602081019050602083039250612442565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146124c7576040519150601f19603f3d011682016040523d82523d6000602084013e6124cc565b606091505b509150915081156124e1578092505050612596565b6000815111156124f45780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561255b578082015181840152602081019050612540565b50505050905090810190601f1680156125885780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b6000808573ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561261e57600080fd5b505afa158015612632573d6000803e3d6000fd5b505050506040513d602081101561264857600080fd5b810190808051906020019092919050505090508573ffffffffffffffffffffffffffffffffffffffff166323b872dd8686866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561271657600080fd5b505af115801561272a573d6000803e3d6000fd5b505050506040513d602081101561274057600080fd5b81019080805190602001909291905050505060008673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156127d157600080fd5b505afa1580156127e5573d6000803e3d6000fd5b505050506040513d60208110156127fb57600080fd5b81019080805190602001909291905050509050612821828261175890919063ffffffff16565b92505050949350505050565b600080823b90506000811191505091905056fe4f45524d3a20746869732077696c6c20696e637265617365207374616b696e6720616d6f756e742070617373207468652063617046657374616b696e673a206261642074696d696e6720666f72207468652072657175657374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220ab8632ad6b4c119d926241041174b0c6d4d5b5ad5d047fc389dec3a312b8e26464736f6c6343000606003346657374616b696e673a207374616b696e6720656e64206d757374206265206166746572207374616b696e672073746172747346657374616b696e673a207769746864726177456e6473206d7573742062652061667465722077697468647261772073746172747346657374616b696e673a207769746864726177537461727473206d757374206265206166746572207374616b696e6720656e647346657374616b696e673a207a65726f207374616b696e672073746172742074696d6546657374616b696e673a207374616b696e674361702063616e6e6f74206265206e6567617469766500000000000000000000000000000000000000000000000000000000000001000000000000000000000000009a24b8e8a6d4563c575a707b1275381119298e600000000000000000000000009af15d7b8776fa296019979e70a5be53c714a7ec00000000000000000000000000000000000000000000000000000000602268f8000000000000000000000000000000000000000000000000000000011c1a86d8000000000000000000000000000000000000000000000000000000011c1a86d9000000000000000000000000000000000000000000000000000000011c1a86da0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001145564e59204d61696e205374616b696e67000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101825760003560e01c806374de4ec4116100d8578063b410e2a11161008c578063d66692a711610066578063d66692a7146105f0578063eacebf611461060e578063f7c618c11461062c57610182565b8063b410e2a114610596578063bb2d7f3a146105b4578063c7b8981c146105d257610182565b8063a2313f6d116100bd578063a2313f6d146104da578063a694fc3a146104f8578063ab0b25b61461053e57610182565b806374de4ec41461044a5780639d76ea581461049057610182565b80632e1a7d4d1161013a57806344c370d31161011457806344c370d3146103f05780635b9f00161461040e5780636d68c7d41461042c57610182565b80632e1a7d4d146102ec5780632ee4090814610332578063426233601461039857610182565b80631d62ebd91161016b5780631d62ebd91461022c57806321b13cdf1461028457806321df0da7146102a257610182565b806306fdde03146101875780631c31f5551461020a575b600080fd5b61018f610676565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101cf5780820151818401526020810190506101b4565b50505050905090810190601f1680156101fc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610212610714565b604051808215151515815260200191505060405180910390f35b61026e6004803603602081101561024257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610723565b6040518082815260200191505060405180910390f35b61028c61077c565b6040518082815260200191505060405180910390f35b6102aa610782565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103186004803603602081101561030257600080fd5b81019080803590602001909291905050506107ac565b604051808215151515815260200191505060405180910390f35b61037e6004803603604081101561034857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107c4565b604051808215151515815260200191505060405180910390f35b6103da600480360360208110156103ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061099c565b6040518082815260200191505060405180910390f35b6103f86109e4565b6040518082815260200191505060405180910390f35b6104166109ea565b6040518082815260200191505060405180910390f35b6104346109f0565b6040518082815260200191505060405180910390f35b6104766004803603602081101561046057600080fd5b81019080803590602001909291905050506109f6565b604051808215151515815260200191505060405180910390f35b610498610acb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e2610af1565b6040518082815260200191505060405180910390f35b6105246004803603602081101561050e57600080fd5b8101908080359060200190929190505050610af7565b604051808215151515815260200191505060405180910390f35b6105806004803603602081101561055457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c2f565b6040518082815260200191505060405180910390f35b61059e610c78565b6040518082815260200191505060405180910390f35b6105bc610c7e565b6040518082815260200191505060405180910390f35b6105da610c84565b6040518082815260200191505060405180910390f35b6105f8610d36565b6040518082815260200191505060405180910390f35b610616610d3c565b6040518082815260200191505060405180910390f35b610634610d42565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b505050505081565b600061071e610d68565b905090565b6000806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506107748360095483610f29565b915050919050565b60055481565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000803390506107bc8184610fbf565b915050919050565b600081600081101561083e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f46657374616b696e673a206e6567617469766520616d6f756e7400000000000081525060200191505060405180910390fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b33600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610986576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b610991338787611157565b935050505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60085481565b60095481565b60035481565b600080821415610a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4f45524d3a20726577617264416d6f756e74206973207a65726f00000000000081525060200191505060405180910390fd5b610abd333084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113e9909392919063ffffffff16565b610ac5610d68565b50919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000816000811015610b71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f46657374616b696e673a206e6567617469766520616d6f756e7400000000000081525060200191505060405180910390fd5b33600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b6000339050610c25818287611157565b9350505050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60045481565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610d28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4f45524d3a20426164206164647265737300000000000000000000000000000081525060200191505060405180910390fd5b610d31336114d6565b905090565b60075481565b60065481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000803090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610e63600b548373ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e1a57600080fd5b505afa158015610e2e573d6000803e3d6000fd5b505050506040513d6020811015610e4457600080fd5b810190808051906020019092919050505061175890919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed357610ed06009548261175890919063ffffffff16565b90505b6000811415610ee85760019350505050610f26565b610efd81600b546117a290919063ffffffff16565b600b81905550610f1881600c546117a290919063ffffffff16565b600c81905550600193505050505b90565b600080821415610f3c5760009050610fb8565b6000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610f8f85600c548661182a565b9050818111610f9f576000610fb3565b610fb2828261175890919063ffffffff16565b5b925050505b9392505050565b600080821415610fd25760019050611151565b6000610fde848461185a565b905061102d8484600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa09092919063ffffffff16565b60008114611083576110828482600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa09092919063ffffffff16565b5b8373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f0fd12da3890315fa38b862dc2fff7f24c95981f6508cc2be090640de791b671e8685604051808381526020018281526020019250505060405180910390a460019150505b92915050565b6000600354804210156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128756025913960400191505060405180910390fd5b600654804210611210576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128756025913960400191505060405180910390fd5b836000811015611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f46657374616b696e673a206e6567617469766520616d6f756e7400000000000081525060200191505060405180910390fd5b86600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561132c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b86600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f46657374616b696e673a207a65726f206164647265737300000000000000000081525060200191505060405180910390fd5b6113db898989611b58565b955050505050509392505050565b6114d0846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611dfb565b50505050565b6000806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600060095490506000600c5490506000600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600061157a85838686611eea565b905061159181600b5461175890919063ffffffff16565b600b819055506115e981600d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008114611682576116818782600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa09092919063ffffffff16565b5b8673ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f0fd12da3890315fa38b862dc2fff7f24c95981f6508cc2be090640de791b671e600085604051808381526020018281526020019250505060405180910390a48095505050505050919050565b600061179a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f27565b905092915050565b600080828401905083811015611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611851846118438486611fe790919063ffffffff16565b61206d90919063ffffffff16565b90509392505050565b6000806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831115611914576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4f45524d3a204e6f7420656e6f7567682062616c616e6365000000000000000081525060200191505060405180910390fd5b6000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600c54905060006009549050600061197485858486611eea565b905060006119838885856120b7565b905061199a81600c5461175890919063ffffffff16565b600c819055506119c5816119b784886117a290919063ffffffff16565b61175890919063ffffffff16565b600d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a1d82600b5461175890919063ffffffff16565b600b81905550611a36888461175890919063ffffffff16565b600981905550611a4f888761175890919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081965050505050505092915050565b611b538363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611dfb565b505050565b600080829050600060085490506000600954905060008214158015611b8e5750611b8b818361175890919063ffffffff16565b83115b15611ba957611ba6818361175890919063ffffffff16565b92505b6000831415611c20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4f45524d3a205374616b696e67206361702069732066696c6c6564000000000081525060200191505060405180910390fd5b60006008541480611c475750600854611c44600954856117a290919063ffffffff16565b11155b611c9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806128416034913960400191505060405180910390fd5b611cc98784600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166120e7565b9250611cd586846120fe565b611d47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4f45524d3a204572726f72207374616b696e670000000000000000000000000081525060200191505060405180910390fd5b611d5c836007546117a290919063ffffffff16565b6007819055508573ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8786604051808381526020018281526020019250505060405180910390a35050509392505050565b6060611e5d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166122a29092919063ffffffff16565b9050600081511115611ee557808060200190516020811015611e7e57600080fd5b8101908080519060200190929190505050611ee4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128bb602a913960400191505060405180910390fd5b5b505050565b600080611ef884848861182a565b9050848111611f08576000611f1c565b611f1b858261175890919063ffffffff16565b5b915050949350505050565b6000838311158290611fd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f99578082015181840152602081019050611f7e565b50505050905090810190601f168015611fc65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831415611ffa5760009050612067565b600082840290508284828161200b57fe5b0414612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061289a6021913960400191505060405180910390fd5b809150505b92915050565b60006120af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122ba565b905092915050565b60006120de826120d08587611fe790919063ffffffff16565b61206d90919063ffffffff16565b90509392505050565b60006120f584308585612380565b90509392505050565b60008060095490506000600c5490506000808314159050600081612122578261212e565b61212d8684866120b7565b5b905061214386856117a290919063ffffffff16565b9350612196866000808a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b6000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061222a81600d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360098190555081156122945761228d81846117a290919063ffffffff16565b600c819055505b600194505050505092915050565b60606122b18484600085612398565b90509392505050565b60008083118290612366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561232b578082015181840152602081019050612310565b50505050905090810190601f1680156123585780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161237257fe5b049050809150509392505050565b600061238e8286868661259e565b9050949350505050565b60606123a38561282d565b612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124655780518252602082019150602081019050602083039250612442565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146124c7576040519150601f19603f3d011682016040523d82523d6000602084013e6124cc565b606091505b509150915081156124e1578092505050612596565b6000815111156124f45780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561255b578082015181840152602081019050612540565b50505050905090810190601f1680156125885780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b6000808573ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561261e57600080fd5b505afa158015612632573d6000803e3d6000fd5b505050506040513d602081101561264857600080fd5b810190808051906020019092919050505090508573ffffffffffffffffffffffffffffffffffffffff166323b872dd8686866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561271657600080fd5b505af115801561272a573d6000803e3d6000fd5b505050506040513d602081101561274057600080fd5b81019080805190602001909291905050505060008673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156127d157600080fd5b505afa1580156127e5573d6000803e3d6000fd5b505050506040513d60208110156127fb57600080fd5b81019080805190602001909291905050509050612821828261175890919063ffffffff16565b92505050949350505050565b600080823b90506000811191505091905056fe4f45524d3a20746869732077696c6c20696e637265617365207374616b696e6720616d6f756e742070617373207468652063617046657374616b696e673a206261642074696d696e6720666f72207468652072657175657374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220ab8632ad6b4c119d926241041174b0c6d4d5b5ad5d047fc389dec3a312b8e26464736f6c63430006060033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$20,530.35
Net Worth in ETH
9.851229
Token Allocations
EVN
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.00 | 1,714.2748 | $0.00 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.