Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Staking
Compiler Version
v0.6.8+commit.0bbfe453
Optimization Enabled:
Yes with 0 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.25 <0.7.0;
/** OpenZeppelin Dependencies */
// import "@openzeppelin/contracts-upgradeable/contracts/proxy/Initializable.sol";
import '@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/math/MathUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol';
/** Local Interfaces */
import './interfaces/IToken.sol';
import './interfaces/IAuction.sol';
import './interfaces/IStaking.sol';
import './interfaces/ISubBalances.sol';
import './interfaces/IStakingV1.sol';
contract Staking is IStaking, Initializable, AccessControlUpgradeable {
using SafeMathUpgradeable for uint256;
/** Events */
event Stake(
address indexed account,
uint256 indexed sessionId,
uint256 amount,
uint256 start,
uint256 end,
uint256 shares
);
event MaxShareUpgrade(
address indexed account,
uint256 indexed sessionId,
uint256 amount,
uint256 newAmount,
uint256 shares,
uint256 newShares,
uint256 start,
uint256 end
);
event Unstake(
address indexed account,
uint256 indexed sessionId,
uint256 amount,
uint256 start,
uint256 end,
uint256 shares
);
event MakePayout(
uint256 indexed value,
uint256 indexed sharesTotalSupply,
uint256 indexed time
);
/** Structs */
struct Payout {
uint256 payout;
uint256 sharesTotalSupply;
}
struct Session {
uint256 amount;
uint256 start;
uint256 end;
uint256 shares;
uint256 firstPayout;
uint256 lastPayout;
bool withdrawn;
uint256 payout;
}
struct Addresses {
address mainToken;
address auction;
address subBalances;
}
Addresses public addresses;
IStakingV1 public stakingV1;
/** Roles */
bytes32 public constant MIGRATOR_ROLE = keccak256('MIGRATOR_ROLE');
bytes32 public constant EXTERNAL_STAKER_ROLE =
keccak256('EXTERNAL_STAKER_ROLE');
bytes32 public constant MANAGER_ROLE = keccak256('MANAGER_ROLE');
/** Public Variables */
uint256 public shareRate;
uint256 public sharesTotalSupply;
uint256 public nextPayoutCall;
uint256 public stepTimestamp;
uint256 public startContract;
uint256 public globalPayout;
uint256 public globalPayin;
uint256 public lastSessionId;
uint256 public lastSessionIdV1;
/** Mappings / Arrays */
mapping(address => mapping(uint256 => Session)) public sessionDataOf;
mapping(address => uint256[]) public sessionsOf;
Payout[] public payouts;
/** Booleans */
bool public init_;
uint256 public basePeriod;
uint256 public totalStakedAmount;
bool private maxShareEventActive;
/* New variables must go below here. */
/** Roles */
modifier onlyManager() {
require(hasRole(MANAGER_ROLE, _msgSender()), 'Caller is not a manager');
_;
}
modifier onlyMigrator() {
require(
hasRole(MIGRATOR_ROLE, _msgSender()),
'Caller is not a migrator'
);
_;
}
modifier onlyExternalStaker() {
require(
hasRole(EXTERNAL_STAKER_ROLE, _msgSender()),
'Caller is not a external staker'
);
_;
}
/** Init functions */
function initialize(address _manager, address _migrator)
public
initializer
{
_setupRole(MANAGER_ROLE, _manager);
_setupRole(MIGRATOR_ROLE, _migrator);
init_ = false;
}
/** End init functions */
function sessionsOf_(address account)
external
view
returns (uint256[] memory)
{
return sessionsOf[account];
}
function stake(uint256 amount, uint256 stakingDays) external {
require(stakingDays != 0, 'Staking: Staking days < 1');
require(stakingDays <= 5555, 'Staking: Staking days > 5555');
stakeInternal(amount, stakingDays, msg.sender);
IToken(addresses.mainToken).burn(msg.sender, amount);
}
function externalStake(
uint256 amount,
uint256 stakingDays,
address staker
) external override onlyExternalStaker {
require(stakingDays != 0, 'Staking: Staking days < 1');
require(stakingDays <= 5555, 'Staking: Staking days > 5555');
stakeInternal(amount, stakingDays, staker);
}
function stakeInternal(
uint256 amount,
uint256 stakingDays,
address staker
) internal {
if (now >= nextPayoutCall) makePayout();
uint256 start = now;
uint256 end = now.add(stakingDays.mul(stepTimestamp));
lastSessionId = lastSessionId.add(1);
stakeInternalCommon(
lastSessionId,
amount,
start,
end,
stakingDays,
payouts.length,
staker
);
}
function _initPayout(address to, uint256 amount) internal {
IToken(addresses.mainToken).mint(to, amount);
globalPayout = globalPayout.add(amount);
}
function calculateStakingInterest(
uint256 firstPayout,
uint256 lastPayout,
uint256 shares
) public view returns (uint256) {
uint256 stakingInterest;
uint256 lastIndex = MathUpgradeable.min(payouts.length, lastPayout);
for (uint256 i = firstPayout; i < lastIndex; i++) {
uint256 payout =
payouts[i].payout.mul(shares).div(payouts[i].sharesTotalSupply);
stakingInterest = stakingInterest.add(payout);
}
return stakingInterest;
}
function unstake(uint256 sessionId) external {
Session storage session = sessionDataOf[msg.sender][sessionId];
require(
session.shares != 0 && session.withdrawn == false,
'Staking: Stake withdrawn or not set'
);
uint256 actualEnd = now;
uint256 amountOut = unstakeInternal(session, sessionId, actualEnd);
// To account
_initPayout(msg.sender, amountOut);
}
function unstakeV1(uint256 sessionId) external {
require(sessionId <= lastSessionIdV1, 'Staking: Invalid sessionId');
Session storage session = sessionDataOf[msg.sender][sessionId];
// Unstaked already
require(
session.shares == 0 && session.withdrawn == false,
'Staking: Stake withdrawn'
);
(
uint256 amount,
uint256 start,
uint256 end,
uint256 shares,
uint256 firstPayout
) = stakingV1.sessionDataOf(msg.sender, sessionId);
// Unstaked in v1 / doesn't exist
require(shares != 0, 'Staking: Stake withdrawn or not set');
uint256 stakingDays = (end - start) / stepTimestamp;
uint256 lastPayout = stakingDays + firstPayout;
uint256 actualEnd = now;
uint256 amountOut =
unstakeV1Internal(
sessionId,
amount,
start,
end,
actualEnd,
shares,
firstPayout,
lastPayout,
stakingDays
);
// To account
_initPayout(msg.sender, amountOut);
}
function getAmountOutAndPenalty(
uint256 amount,
uint256 start,
uint256 end,
uint256 stakingInterest
) public view returns (uint256, uint256) {
uint256 stakingSeconds = end.sub(start);
uint256 stakingDays = stakingSeconds.div(stepTimestamp);
uint256 secondsStaked = now.sub(start);
uint256 daysStaked = secondsStaked.div(stepTimestamp);
uint256 amountAndInterest = amount.add(stakingInterest);
// Early
if (stakingDays > daysStaked) {
uint256 payOutAmount =
amountAndInterest.mul(secondsStaked).div(stakingSeconds);
uint256 earlyUnstakePenalty = amountAndInterest.sub(payOutAmount);
return (payOutAmount, earlyUnstakePenalty);
// In time
} else if (daysStaked < stakingDays.add(14)) {
return (amountAndInterest, 0);
// Late
} else if (daysStaked < stakingDays.add(714)) {
uint256 daysAfterStaking = daysStaked - stakingDays;
uint256 payOutAmount =
amountAndInterest.mul(uint256(714).sub(daysAfterStaking)).div(
700
);
uint256 lateUnstakePenalty = amountAndInterest.sub(payOutAmount);
return (payOutAmount, lateUnstakePenalty);
// Nothing
} else {
return (0, amountAndInterest);
}
}
function makePayout() public {
require(now >= nextPayoutCall, 'Staking: Wrong payout time');
uint256 payout = _getPayout();
payouts.push(
Payout({payout: payout, sharesTotalSupply: sharesTotalSupply})
);
nextPayoutCall = nextPayoutCall.add(stepTimestamp);
emit MakePayout(payout, sharesTotalSupply, now);
}
function readPayout() external view returns (uint256) {
uint256 amountTokenInDay =
IERC20Upgradeable(addresses.mainToken).balanceOf(address(this));
uint256 currentTokenTotalSupply =
(IERC20Upgradeable(addresses.mainToken).totalSupply()).add(
globalPayin
);
uint256 inflation =
uint256(8).mul(currentTokenTotalSupply.add(totalStakedAmount)).div(
36500
);
return amountTokenInDay.add(inflation);
}
function _getPayout() internal returns (uint256) {
uint256 amountTokenInDay =
IERC20Upgradeable(addresses.mainToken).balanceOf(address(this));
globalPayin = globalPayin.add(amountTokenInDay);
if (globalPayin > globalPayout) {
globalPayin = globalPayin.sub(globalPayout);
globalPayout = 0;
} else {
globalPayin = 0;
globalPayout = 0;
}
uint256 currentTokenTotalSupply =
(IERC20Upgradeable(addresses.mainToken).totalSupply()).add(
globalPayin
);
IToken(addresses.mainToken).burn(address(this), amountTokenInDay);
uint256 inflation =
uint256(8).mul(currentTokenTotalSupply.add(totalStakedAmount)).div(
36500
);
globalPayin = globalPayin.add(inflation);
return amountTokenInDay.add(inflation);
}
function _getStakersSharesAmount(
uint256 amount,
uint256 start,
uint256 end
) internal view returns (uint256) {
uint256 stakingDays = (end.sub(start)).div(stepTimestamp);
uint256 numerator = amount.mul(uint256(1819).add(stakingDays));
uint256 denominator = uint256(1820).mul(shareRate);
return (numerator).mul(1e18).div(denominator);
}
function _getShareRate(
uint256 amount,
uint256 shares,
uint256 start,
uint256 end,
uint256 stakingInterest
) internal view returns (uint256) {
uint256 stakingDays = (end.sub(start)).div(stepTimestamp);
uint256 numerator =
(amount.add(stakingInterest)).mul(uint256(1819).add(stakingDays));
uint256 denominator = uint256(1820).mul(shares);
return (numerator).mul(1e18).div(denominator);
}
function restake(
uint256 sessionId,
uint256 stakingDays,
uint256 topup
) external {
require(stakingDays != 0, 'Staking: Staking days < 1');
require(stakingDays <= 5555, 'Staking: Staking days > 5555');
Session storage session = sessionDataOf[msg.sender][sessionId];
require(
session.shares != 0 && session.withdrawn == false,
'Staking: Stake withdrawn/invalid'
);
uint256 actualEnd = now;
require(session.end <= actualEnd, 'Staking: Stake not mature');
uint256 amountOut = unstakeInternal(session, sessionId, actualEnd);
if (topup != 0) {
IToken(addresses.mainToken).burn(msg.sender, topup);
amountOut = amountOut.add(topup);
}
stakeInternal(amountOut, stakingDays, msg.sender);
}
function restakeV1(
uint256 sessionId,
uint256 stakingDays,
uint256 topup
) external {
require(sessionId <= lastSessionIdV1, 'Staking: Invalid sessionId');
require(stakingDays != 0, 'Staking: Staking days < 1');
require(stakingDays <= 5555, 'Staking: Staking days > 5555');
Session storage session = sessionDataOf[msg.sender][sessionId];
require(
session.shares == 0 && session.withdrawn == false,
'Staking: Stake withdrawn'
);
(
uint256 amount,
uint256 start,
uint256 end,
uint256 shares,
uint256 firstPayout
) = stakingV1.sessionDataOf(msg.sender, sessionId);
// Unstaked in v1 / doesn't exist
require(shares != 0, 'Staking: Stake withdrawn');
uint256 actualEnd = now;
require(end <= actualEnd, 'Staking: Stake not mature');
uint256 sessionStakingDays = (end - start) / stepTimestamp;
uint256 lastPayout = sessionStakingDays + firstPayout;
uint256 amountOut =
unstakeV1Internal(
sessionId,
amount,
start,
end,
actualEnd,
shares,
firstPayout,
lastPayout,
sessionStakingDays
);
if (topup != 0) {
IToken(addresses.mainToken).burn(msg.sender, topup);
amountOut = amountOut.add(topup);
}
stakeInternal(amountOut, stakingDays, msg.sender);
}
function unstakeInternal(
Session storage session,
uint256 sessionId,
uint256 actualEnd
) internal returns (uint256) {
uint256 amountOut =
unstakeInternalCommon(
sessionId,
session.amount,
session.start,
session.end,
actualEnd,
session.shares,
session.firstPayout,
session.lastPayout
);
uint256 stakingDays = (session.end - session.start) / stepTimestamp;
if (stakingDays >= basePeriod) {
ISubBalances(addresses.subBalances).callOutcomeStakerTrigger(
sessionId,
session.start,
session.end,
actualEnd,
session.shares
);
}
session.end = actualEnd;
session.withdrawn = true;
session.payout = amountOut;
return amountOut;
}
function unstakeV1Internal(
uint256 sessionId,
uint256 amount,
uint256 start,
uint256 end,
uint256 actualEnd,
uint256 shares,
uint256 firstPayout,
uint256 lastPayout,
uint256 stakingDays
) internal returns (uint256) {
uint256 amountOut =
unstakeInternalCommon(
sessionId,
amount,
start,
end,
actualEnd,
shares,
firstPayout,
lastPayout
);
if (stakingDays >= basePeriod) {
ISubBalances(addresses.subBalances).callOutcomeStakerTriggerV1(
msg.sender,
sessionId,
start,
end,
actualEnd,
shares
);
}
sessionDataOf[msg.sender][sessionId] = Session({
amount: amount,
start: start,
end: actualEnd,
shares: shares,
firstPayout: firstPayout,
lastPayout: lastPayout,
withdrawn: true,
payout: amountOut
});
sessionsOf[msg.sender].push(sessionId);
return amountOut;
}
function unstakeInternalCommon(
uint256 sessionId,
uint256 amount,
uint256 start,
uint256 end,
uint256 actualEnd,
uint256 shares,
uint256 firstPayout,
uint256 lastPayout
) internal returns (uint256) {
if (now >= nextPayoutCall) makePayout();
uint256 stakingInterest =
calculateStakingInterest(firstPayout, lastPayout, shares);
sharesTotalSupply = sharesTotalSupply.sub(shares);
totalStakedAmount = totalStakedAmount.sub(amount);
(uint256 amountOut, uint256 penalty) =
getAmountOutAndPenalty(amount, start, end, stakingInterest);
// To auction
if (penalty != 0) {
_initPayout(addresses.auction, penalty);
IAuction(addresses.auction).callIncomeDailyTokensTrigger(penalty);
}
emit Unstake(
msg.sender,
sessionId,
amountOut,
start,
actualEnd,
shares
);
return amountOut;
}
function stakeInternalCommon(
uint256 sessionId,
uint256 amount,
uint256 start,
uint256 end,
uint256 stakingDays,
uint256 firstPayout,
address staker
) internal {
uint256 shares = _getStakersSharesAmount(amount, start, end);
sharesTotalSupply = sharesTotalSupply.add(shares);
totalStakedAmount = totalStakedAmount.add(amount);
sessionDataOf[staker][sessionId] = Session({
amount: amount,
start: start,
end: end,
shares: shares,
firstPayout: firstPayout,
lastPayout: firstPayout + stakingDays,
withdrawn: false,
payout: 0
});
sessionsOf[staker].push(sessionId);
if (stakingDays >= basePeriod) {
ISubBalances(addresses.subBalances).callIncomeStakerTrigger(
staker,
sessionId,
start,
end,
shares
);
}
emit Stake(staker, sessionId, amount, start, end, shares);
}
/** Max Share Event */
function maxShare(uint256 sessionId) external {
Session storage session = sessionDataOf[msg.sender][sessionId];
require(
session.shares != 0 && session.withdrawn == false,
'STAKING: Stake withdrawn or not set'
);
(
uint256 newStart,
uint256 newEnd,
uint256 newAmount,
uint256 newShares
) =
maxShareUpgrade(
session.firstPayout,
session.lastPayout,
session.shares,
session.amount
);
uint256 stakingDays = (session.end - session.start) / stepTimestamp;
if (stakingDays >= basePeriod) {
ISubBalances(addresses.subBalances).createMaxShareSession(
sessionId,
newStart,
newEnd,
newShares,
session.shares
);
} else {
ISubBalances(addresses.subBalances).callIncomeStakerTrigger(
msg.sender,
sessionId,
newStart,
session.end,
session.shares
);
}
sessionDataOf[msg.sender][sessionId].amount = newAmount;
sessionDataOf[msg.sender][sessionId].end = newEnd;
sessionDataOf[msg.sender][sessionId].start = newStart;
sessionDataOf[msg.sender][sessionId].shares = newShares;
sessionDataOf[msg.sender][sessionId].firstPayout = payouts.length;
sessionDataOf[msg.sender][sessionId].lastPayout = payouts.length + 5555;
maxShareInternal(
sessionId,
session.shares,
newShares,
session.amount,
newAmount,
newStart,
newEnd
);
}
function maxShareV1(uint256 sessionId) external {
require(sessionId <= lastSessionIdV1, 'STAKING: Invalid sessionId');
Session storage session = sessionDataOf[msg.sender][sessionId];
require(
session.shares == 0 && session.withdrawn == false,
'STAKING: Stake withdrawn'
);
(
uint256 amount,
uint256 start,
uint256 end,
uint256 shares,
uint256 firstPayout
) = stakingV1.sessionDataOf(msg.sender, sessionId);
uint256 stakingDays = (end - start) / stepTimestamp;
uint256 lastPayout = stakingDays + firstPayout;
(
uint256 newStart,
uint256 newEnd,
uint256 newAmount,
uint256 newShares
) = maxShareUpgrade(firstPayout, lastPayout, shares, amount);
if (stakingDays >= basePeriod) {
ISubBalances(addresses.subBalances).createMaxShareSessionV1(
msg.sender,
sessionId,
newStart,
newEnd,
newShares, // new shares
shares // old shares
);
} else {
ISubBalances(addresses.subBalances).callIncomeStakerTrigger(
msg.sender,
sessionId,
newStart,
newEnd,
newShares
);
}
sessionDataOf[msg.sender][sessionId] = Session({
amount: newAmount,
start: newStart,
end: newEnd,
shares: newShares,
firstPayout: payouts.length,
lastPayout: payouts.length + 5555,
withdrawn: false,
payout: 0
});
sessionsOf[msg.sender].push(sessionId);
maxShareInternal(
sessionId,
shares,
newShares,
amount,
newAmount,
newStart,
newEnd
);
}
function maxShareUpgrade(
uint256 firstPayout,
uint256 lastPayout,
uint256 shares,
uint256 amount
)
internal
view
returns (
uint256,
uint256,
uint256,
uint256
)
{
require(
maxShareEventActive == true,
'STAKING: Max Share event is not active'
);
uint256 stakingInterest =
calculateStakingInterest(firstPayout, lastPayout, shares);
uint256 newStart = now;
uint256 newEnd = newStart + (stepTimestamp * 5555);
uint256 newAmount = stakingInterest + amount;
uint256 newShares =
_getStakersSharesAmount(newAmount, newStart, newEnd);
require(
newShares > shares,
'STAKING: New shares are not greater then previous shares'
);
return (newStart, newEnd, newAmount, newShares);
}
function maxShareInternal(
uint256 sessionId,
uint256 oldShares,
uint256 newShares,
uint256 oldAmount,
uint256 newAmount,
uint256 newStart,
uint256 newEnd
) internal {
sharesTotalSupply = sharesTotalSupply.add(newShares - oldShares);
totalStakedAmount = totalStakedAmount.add(newAmount - oldAmount);
emit MaxShareUpgrade(
msg.sender,
sessionId,
oldAmount,
newAmount,
oldShares,
newShares,
newStart,
newEnd
);
}
// stepTimestamp
// startContract
function calculateStepsFromStart() public view returns (uint256) {
return now.sub(startContract).div(stepTimestamp);
}
/** Set Max Shares */
function setMaxShareEventActive(bool _active) external onlyManager {
maxShareEventActive = _active;
}
function getMaxShareEventActive() external view returns (bool) {
return maxShareEventActive;
}
/** Roles management - only for multi sig address */
function setupRole(bytes32 role, address account) external onlyManager {
_setupRole(role, account);
}
/** Temporary */
function setShareRate(uint256 _shareRate) external onlyManager {
shareRate = _shareRate;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.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 SafeMathUpgradeable {
/**
* @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 <0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../utils/EnumerableSetUpgradeable.sol";
import "../utils/AddressUpgradeable.sol";
import "../GSN/ContextUpgradeable.sol";
import "../proxy/Initializable.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable {
function __AccessControl_init() internal initializer {
__Context_init_unchained();
__AccessControl_init_unchained();
}
function __AccessControl_init_unchained() internal initializer {
}
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using AddressUpgradeable for address;
struct RoleData {
EnumerableSetUpgradeable.AddressSet members;
bytes32 adminRole;
}
mapping (bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view returns (bool) {
return _roles[role].members.contains(account);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view returns (uint256) {
return _roles[role].members.length();
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
return _roles[role].members.at(index);
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
_roles[role].adminRole = adminRole;
}
function _grantRole(bytes32 role, address account) private {
if (_roles[role].members.add(account)) {
emit RoleGranted(role, account, _msgSender());
}
}
function _revokeRole(bytes32 role, address account) private {
if (_roles[role].members.remove(account)) {
emit RoleRevoked(role, account, _msgSender());
}
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @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;
interface IToken {
function mint(address to, uint256 amount) external;
function burn(address from, uint256 amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
interface IAuction {
function callIncomeDailyTokensTrigger(uint256 amount) external;
function callIncomeWeeklyTokensTrigger(uint256 amount) external;
function addReservesToAuction(uint256 daysInFuture, uint256 amount) external returns(uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
interface IStaking {
function externalStake(
uint256 amount,
uint256 stakingDays,
address staker
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
interface ISubBalances {
function callIncomeStakerTrigger(
address staker,
uint256 sessionId,
uint256 start,
uint256 end,
uint256 shares
) external;
function callOutcomeStakerTrigger(
uint256 sessionId,
uint256 start,
uint256 end,
uint256 actualEnd,
uint256 shares
) external;
function callOutcomeStakerTriggerV1(
address staker,
uint256 sessionId,
uint256 start,
uint256 end,
uint256 actualEnd,
uint256 shares
) external;
function createMaxShareSession(
uint256 sessionId,
uint256 start,
uint256 end,
uint256 newShares,
uint256 oldShares
) external;
function createMaxShareSessionV1(
address staker,
uint256 sessionId,
uint256 start,
uint256 end,
uint256 newShares,
uint256 oldShares
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
interface IStakingV1 {
function sessionDataOf(address, uint256)
external view returns (uint256, uint256, uint256, uint256, uint256);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSetUpgradeable {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping (bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) { // Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
require(set._values.length > index, "EnumerableSet: index out of bounds");
return set._values[index];
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(value)));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(value)));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(value)));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint256(_at(set._inner, index)));
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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 on 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");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";
/*
* @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 GSN 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 ContextUpgradeable is Initializable {
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function _isConstructor() private view returns (bool) {
// extcodesize checks the size of the code stored in an address, and
// address returns the current address. Since the code is still not
// deployed when running a constructor, any checks on its code size will
// yield zero, making it an effective way to detect if a contract is
// under construction or not.
address self = address(this);
uint256 cs;
// solhint-disable-next-line no-inline-assembly
assembly { cs := extcodesize(self) }
return cs == 0;
}
}{
"optimizer": {
"enabled": true,
"runs": 0
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"sharesTotalSupply","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"time","type":"uint256"}],"name":"MakePayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"sessionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newShares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"end","type":"uint256"}],"name":"MaxShareUpgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"sessionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"end","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"sessionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"end","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Unstake","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTERNAL_STAKER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIGRATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addresses","outputs":[{"internalType":"address","name":"mainToken","type":"address"},{"internalType":"address","name":"auction","type":"address"},{"internalType":"address","name":"subBalances","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"firstPayout","type":"uint256"},{"internalType":"uint256","name":"lastPayout","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"calculateStakingInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calculateStepsFromStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"stakingDays","type":"uint256"},{"internalType":"address","name":"staker","type":"address"}],"name":"externalStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"stakingInterest","type":"uint256"}],"name":"getAmountOutAndPenalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxShareEventActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalPayin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalPayout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"init_","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"},{"internalType":"address","name":"_migrator","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastSessionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSessionIdV1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"makePayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sessionId","type":"uint256"}],"name":"maxShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sessionId","type":"uint256"}],"name":"maxShareV1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nextPayoutCall","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payouts","outputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"sharesTotalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"readPayout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sessionId","type":"uint256"},{"internalType":"uint256","name":"stakingDays","type":"uint256"},{"internalType":"uint256","name":"topup","type":"uint256"}],"name":"restake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sessionId","type":"uint256"},{"internalType":"uint256","name":"stakingDays","type":"uint256"},{"internalType":"uint256","name":"topup","type":"uint256"}],"name":"restakeV1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"sessionDataOf","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"firstPayout","type":"uint256"},{"internalType":"uint256","name":"lastPayout","type":"uint256"},{"internalType":"bool","name":"withdrawn","type":"bool"},{"internalType":"uint256","name":"payout","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"sessionsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"sessionsOf_","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setMaxShareEventActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shareRate","type":"uint256"}],"name":"setShareRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"setupRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sharesTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"stakingDays","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingV1","outputs":[{"internalType":"contract IStakingV1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startContract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stepTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sessionId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sessionId","type":"uint256"}],"name":"unstakeV1","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50613571806100206000396000f3fe608060405234801561001057600080fd5b50600436106102255760003560e01c80630b7df8b71461022a5780631304bd76146102725780631990ecff146102e15780631f5a56a814610300578063228988c414610332578063248a9ca3146103a857806329652e86146103d75780632e17de78146103f45780632f2ff15d1461041157806336568abe1461043d5780633feb925b14610469578063421653f71461047157806345bf0cc014610479578063485cc955146104815780634bc2e48d146104af5780634f5f9978146104b7578063567e98f9146104d457806357fb3d5c146104dc5780635fb02f4d146104f957806365407202146105015780636ab6122a1461051e5780636fae2e15146105475780637b0472f01461054f5780637e905dfe146105725780638061c46f1461057a578063814a59b3146105825780638d1ad7371461058a5780639010d07c1461059257806391d14854146105d15780639803755814610611578063982e52fb1461063a5780639964935e14610642578063a217fddf1461064a578063a2e6f9bf14610652578063aa187dd01461065a578063abe9127114610662578063c49b7c311461066a578063ca15c87314610689578063ce733e6d146106a6578063d547741f146106cf578063da0321cd146106fb578063dd0072121461072e578063eadca0f41461075a578063ec87621c14610762578063f556a79c1461076a578063fa82ac7614610772578063fb802a651461079e575b600080fd5b6102596004803603608081101561024057600080fd5b50803590602081013590604081013590606001356107a6565b6040805192835260208301919091528051918290030190f35b61029e6004803603604081101561028857600080fd5b506001600160a01b038135169060200135610914565b604080519889526020890197909752878701959095526060870193909352608086019190915260a0850152151560c084015260e083015251908190036101000190f35b6102fe600480360360208110156102f757600080fd5b5035610968565b005b6102fe6004803603606081101561031657600080fd5b50803590602081013590604001356001600160a01b0316610dd1565b6103586004803603602081101561034857600080fd5b50356001600160a01b0316610ef1565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561039457818101518382015260200161037c565b505050509050019250505060405180910390f35b6103c5600480360360208110156103be57600080fd5b5035610f5d565b60408051918252519081900360200190f35b610259600480360360208110156103ed57600080fd5b5035610f72565b6102fe6004803603602081101561040a57600080fd5b5035610f9d565b6102fe6004803603604081101561042757600080fd5b50803590602001356001600160a01b031661102a565b6102fe6004803603604081101561045357600080fd5b50803590602001356001600160a01b0316611091565b6103c56110f2565b6103c561111e565b6103c5611124565b6102fe6004803603604081101561049757600080fd5b506001600160a01b038135811691602001351661112a565b6103c561122e565b6102fe600480360360208110156104cd57600080fd5b5035611250565b6103c561143e565b6102fe600480360360208110156104f257600080fd5b5035611444565b6103c561167d565b6102fe6004803603602081101561051757600080fd5b5035611683565b6102fe6004803603606081101561053457600080fd5b50803590602081013590604001356116f4565b6103c5611a37565b6102fe6004803603604081101561056557600080fd5b5080359060200135611a5c565b6103c5611b5b565b6103c5611b61565b6103c5611b67565b6103c5611b6d565b6105b5600480360360408110156105a857600080fd5b5080359060200135611cbb565b604080516001600160a01b039092168252519081900360200190f35b6105fd600480360360408110156105e757600080fd5b50803590602001356001600160a01b0316611ce2565b604080519115158252519081900360200190f35b6103c56004803603606081101561062757600080fd5b5080359060208101359060400135611d00565b6105fd611d9a565b6102fe611da3565b6103c5611ec4565b6103c5611ec9565b6105fd611ecf565b6103c5611ed8565b6102fe6004803603602081101561068057600080fd5b50351515611ede565b6103c56004803603602081101561069f57600080fd5b5035611f5d565b6102fe600480360360608110156106bc57600080fd5b5080359060208101359060400135611f74565b6102fe600480360360408110156106e557600080fd5b50803590602001356001600160a01b0316612174565b6107036121cd565b604080516001600160a01b039485168152928416602084015292168183015290519081900360600190f35b6103c56004803603604081101561074457600080fd5b506001600160a01b0381351690602001356121ea565b6103c5612218565b6103c561221e565b6105b5612242565b6102fe6004803603604081101561078857600080fd5b50803590602001356001600160a01b0316612251565b6103c56122c7565b600080806107ba858763ffffffff6122cd16565b905060006107d3606c548361230f90919063ffffffff16565b905060006107e7428963ffffffff6122cd16565b90506000610800606c548361230f90919063ffffffff16565b905060006108148b8963ffffffff61234e16565b90508184111561086657600061084086610834848763ffffffff6123a616565b9063ffffffff61230f16565b90506000610854838363ffffffff6122cd16565b91985090965061090b95505050505050565b61087784600e63ffffffff61234e16565b82101561088e5795506000945061090b9350505050565b6108a0846102ca63ffffffff61234e16565b8210156108fb5783820360006108d46102bc6108346108c76102ca8663ffffffff6122cd16565b869063ffffffff6123a616565b905060006108e8848363ffffffff6122cd16565b91995090975061090b9650505050505050565b60009650945061090b9350505050565b94509492505050565b60726020908152600092835260408084209091529082529020805460018201546002830154600384015460048501546005860154600687015460079097015495969495939492939192909160ff9091169088565b6071548111156109bc576040805162461bcd60e51b815260206004820152601a60248201527914d51052d25391ce88125b9d985b1a59081cd95cdcda5bdb925960321b604482015290519081900360640190fd5b336000908152607260209081526040808320848452909152902060038101541580156109ed5750600681015460ff16155b610a39576040805162461bcd60e51b815260206004820152601860248201527729aa20a5a4a7239d1029ba30b5b2903bb4ba34323930bbb760411b604482015290519081900360640190fd5b606854604080516309825ebb60e11b815233600482015260248101859052905160009283928392839283926001600160a01b0390911691631304bd769160448082019260a092909190829003018186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d60a0811015610ac057600080fd5b508051602082015160408301516060840151608090940151606c54939950919750955091935090915060009085850381610af657fe5b0490508181016000808080610b0d87868a8e6123ff565b93509350935093506076548610610bd357606560020160009054906101000a90046001600160a01b03166001600160a01b031663c5db1f9b338f8787868e6040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b031681526020018681526020018581526020018481526020018381526020018281526020019650505050505050600060405180830381600087803b158015610bb657600080fd5b505af1158015610bca573d6000803e3d6000fd5b50505050610c7c565b606560020160009054906101000a90046001600160a01b03166001600160a01b0316635028ed72338f8787866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b0316815260200185815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b158015610c6357600080fd5b505af1158015610c77573d6000803e3d6000fd5b505050505b60405180610100016040528083815260200185815260200184815260200182815260200160748054905081526020016074805490506115b3018152602001600015158152602001600081525060726000336001600160a01b03166001600160a01b0316815260200190815260200160002060008f8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e0820151816007015590505060736000336001600160a01b03166001600160a01b031681526020019081526020016000208d9080600181540180825580915050600190039060005260206000200160009091909190915055610dc28d89838e8689896124cc565b50505050505050505050505050565b604080517345585445524e414c5f5354414b45525f524f4c4560601b81529051908190036014019020610e0b90610e0661255e565b611ce2565b610e5c576040805162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f7420612065787465726e616c207374616b657200604482015290519081900360640190fd5b81610e9c576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b3821115610ee1576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b610eec838383612562565b505050565b6001600160a01b038116600090815260736020908152604091829020805483518184028101840190945280845260609392830182828015610f5157602002820191906000526020600020905b815481526020019060010190808311610f3d575b50505050509050919050565b60009081526033602052604090206002015490565b60748181548110610f7f57fe5b60009182526020909120600290910201805460019091015490915082565b3360009081526072602090815260408083208484529091529020600381015415801590610fcf5750600681015460ff16155b61100a5760405162461bcd60e51b815260040180806020018281038252602381526020018061336a6023913960400191505060405180910390fd5b4260006110188385846125d7565b905061102433826126de565b50505050565b60008281526033602052604090206002015461104890610e0661255e565b6110835760405162461bcd60e51b815260040180806020018281038252602f81526020018061333b602f913960400191505060405180910390fd5b61108d8282612766565b5050565b61109961255e565b6001600160a01b0316816001600160a01b0316146110e85760405162461bcd60e51b815260040180806020018281038252602f81526020018061350d602f913960400191505060405180910390fd5b61108d82826127d5565b604080517345585445524e414c5f5354414b45525f524f4c4560601b8152905190819003601401902081565b60705481565b60715481565b600054610100900460ff16806111435750611143612844565b80611151575060005460ff16155b61118c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061347b602e913960400191505060405180910390fd5b600054610100900460ff161580156111b7576000805460ff1961ff0019909116610100171660011790555b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206111e29084611083565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902061120e9083611083565b6075805460ff191690558015610eec576000805461ff0019169055505050565b600061124b606c54610834606d54426122cd90919063ffffffff16565b905090565b6071548111156112a4576040805162461bcd60e51b815260206004820152601a60248201527914dd185ada5b99ce88125b9d985b1a59081cd95cdcda5bdb925960321b604482015290519081900360640190fd5b336000908152607260209081526040808320848452909152902060038101541580156112d55750600681015460ff16155b611314576040805162461bcd60e51b81526020600482015260186024820152600080516020613423833981519152604482015290519081900360640190fd5b606854604080516309825ebb60e11b815233600482015260248101859052905160009283928392839283926001600160a01b0390911691631304bd769160448082019260a092909190829003018186803b15801561137157600080fd5b505afa158015611385573d6000803e3d6000fd5b505050506040513d60a081101561139b57600080fd5b50805160208201516040830151606084015160809094015192985090965094509092509050816113fc5760405162461bcd60e51b815260040180806020018281038252602381526020018061336a6023913960400191505060405180910390fd5b6000606c548585038161140b57fe5b0490508181014260006114258b8a8a8a868b8b8a8c61284a565b905061143133826126de565b5050505050505050505050565b60775481565b33600090815260726020908152604080832084845290915290206003810154158015906114765750600681015460ff16155b6114b15760405162461bcd60e51b81526004018080602001828103825260238152602001806134ea6023913960400191505060405180910390fd5b6000806000806114d385600401548660050154876003015488600001546123ff565b93509350935093506000606c548660010154876002015403816114f257fe5b049050607654811061158957606754600387015460408051630866391760e41b8152600481018b90526024810189905260448101889052606481018690526084810192909252516001600160a01b039092169163866391709160a48082019260009290919082900301818387803b15801561156c57600080fd5b505af1158015611580573d6000803e3d6000fd5b50505050611615565b606754600287015460038801546040805163281476b960e11b8152336004820152602481018c9052604481018a905260648101939093526084830191909152516001600160a01b0390921691635028ed729160a48082019260009290919082900301818387803b1580156115fc57600080fd5b505af1158015611610573d6000803e3d6000fd5b505050505b3360009081526072602090815260408083208a8452909152902083815560028101859055600181018690556003808201849055607454600483018190556115b30160059092019190915586015486546116749189918590878a8a6124cc565b50505050505050565b606d5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206116b090610e0661255e565b6116ef576040805162461bcd60e51b81526020600482015260176024820152600080516020613403833981519152604482015290519081900360640190fd5b606955565b607154831115611748576040805162461bcd60e51b815260206004820152601a60248201527914dd185ada5b99ce88125b9d985b1a59081cd95cdcda5bdb925960321b604482015290519081900360640190fd5b81611788576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b38211156117cd576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b336000908152607260209081526040808320868452909152902060038101541580156117fe5750600681015460ff16155b61183d576040805162461bcd60e51b81526020600482015260186024820152600080516020613423833981519152604482015290519081900360640190fd5b606854604080516309825ebb60e11b815233600482015260248101879052905160009283928392839283926001600160a01b0390911691631304bd769160448082019260a092909190829003018186803b15801561189a57600080fd5b505afa1580156118ae573d6000803e3d6000fd5b505050506040513d60a08110156118c457600080fd5b5080516020820151604083015160608401516080909401519298509096509450909250905081611929576040805162461bcd60e51b81526020600482015260186024820152600080516020613423833981519152604482015290519081900360640190fd5b428084111561197b576040805162461bcd60e51b81526020600482015260196024820152785374616b696e673a205374616b65206e6f74206d617475726560381b604482015290519081900360640190fd5b6000606c548686038161198a57fe5b04905082810160006119a38d8a8a8a888b8b898b61284a565b90508a15611a2c5760655460408051632770a7eb60e21b8152336004820152602481018e905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156119fe57600080fd5b505af1158015611a12573d6000803e3d6000fd5b50505050611a298b8261234e90919063ffffffff16565b90505b610dc2818d33612562565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902081565b80611a9c576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b3811115611ae1576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b611aec828233612562565b60655460408051632770a7eb60e21b81523360048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b158015611b3f57600080fd5b505af1158015611b53573d6000803e3d6000fd5b505050505050565b606f5481565b606b5481565b606e5481565b606554604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015611bbd57600080fd5b505afa158015611bd1573d6000803e3d6000fd5b505050506040513d6020811015611be757600080fd5b5051606f54606554604080516318160ddd60e01b81529051939450600093611c7193926001600160a01b0316916318160ddd916004808301926020929190829003018186803b158015611c3957600080fd5b505afa158015611c4d573d6000803e3d6000fd5b505050506040513d6020811015611c6357600080fd5b50519063ffffffff61234e16565b90506000611ca1618e94610834611c936077548661234e90919063ffffffff16565b60089063ffffffff6123a616565b9050611cb3838263ffffffff61234e16565b935050505090565b6000828152603360205260408120611cd9908363ffffffff612a2916565b90505b92915050565b6000828152603360205260408120611cd9908363ffffffff612a3516565b6000806000611d1460748054905086612a4a565b9050855b81811015611d8f576000611d7260748381548110611d3257fe5b9060005260206000209060020201600101546108348860748681548110611d5557fe5b60009182526020909120600290910201549063ffffffff6123a616565b9050611d84848263ffffffff61234e16565b935050600101611d18565b509095945050505050565b60755460ff1681565b606b54421015611df7576040805162461bcd60e51b815260206004820152601a6024820152795374616b696e673a2057726f6e67207061796f75742074696d6560301b604482015290519081900360640190fd5b6000611e01612a60565b60408051808201909152818152606a54602082019081526074805460018101825560009190915291517f19a0b39aa25ac793b5f6e9a0534364cc0b3fd1ea9b651e79c7f50a59d48ef813600290930292830155517f19a0b39aa25ac793b5f6e9a0534364cc0b3fd1ea9b651e79c7f50a59d48ef81490910155606c54606b54919250611e8d919061234e565b606b55606a5460405142919083907fd62b41a40bef91d47724ff07583b3d171958e4bc44899c59aea750e4a0160bf990600090a450565b600081565b606c5481565b60785460ff1690565b606a5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611f0b90610e0661255e565b611f4a576040805162461bcd60e51b81526020600482015260176024820152600080516020613403833981519152604482015290519081900360640190fd5b6078805460ff1916911515919091179055565b6000818152603360205260408120611cdc90612c3d565b81611fb4576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b3821115611ff9576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b336000908152607260209081526040808320868452909152902060038101541580159061202b5750600681015460ff16155b61207c576040805162461bcd60e51b815260206004820181905260248201527f5374616b696e673a205374616b652077697468647261776e2f696e76616c6964604482015290519081900360640190fd5b600281015442908110156120d3576040805162461bcd60e51b81526020600482015260196024820152785374616b696e673a205374616b65206e6f74206d617475726560381b604482015290519081900360640190fd5b60006120e08387846125d7565b905083156121695760655460408051632770a7eb60e21b81523360048201526024810187905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561213b57600080fd5b505af115801561214f573d6000803e3d6000fd5b50505050612166848261234e90919063ffffffff16565b90505b611b53818633612562565b60008281526033602052604090206002015461219290610e0661255e565b6110e85760405162461bcd60e51b81526004018080602001828103825260308152602001806133d36030913960400191505060405180910390fd5b6065546066546067546001600160a01b0392831692918216911683565b6073602052816000526040600020818154811061220357fe5b90600052602060002001600091509150505481565b60765481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902081565b6068546001600160a01b031681565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061227e90610e0661255e565b6122bd576040805162461bcd60e51b81526020600482015260176024820152600080516020613403833981519152604482015290519081900360640190fd5b61108d8282611083565b60695481565b6000611cd983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c48565b6000611cd983836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b815250612cdf565b600082820183811015611cd9576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000826123b557506000611cdc565b828202828482816123c257fe5b0414611cd95760405162461bcd60e51b81526004018080602001828103825260218152602001806134a96021913960400191505060405180910390fd5b60785460009081908190819060ff16151560011461244e5760405162461bcd60e51b81526004018080602001828103825260268152602001806133ad6026913960400191505060405180910390fd5b600061245b898989611d00565b606c5490915042906115b30281018783016000612479828585612d44565b90508a81116124b95760405162461bcd60e51b81526004018080602001828103825260388152602001806134436038913960400191505060405180910390fd5b929c919b50995090975095505050505050565b606a546124e19087870363ffffffff61234e16565b606a556077546124f99085850363ffffffff61234e16565b6077556040805185815260208101859052808201889052606081018790526080810184905260a081018390529051889133917f726e103f034230e119217c46f21c9f5116a8cdb782dfbdd74aece8d2c76c81a39181900360c00190a350505050505050565b3390565b606b54421061257357612573611da3565b606c54429060009061259d9061259090869063ffffffff6123a616565b429063ffffffff61234e16565b6070549091506125b490600163ffffffff61234e16565b6070819055506125d06070548684848860748054905089612dca565b5050505050565b60008061260284866000015487600101548860020154878a600301548b600401548c6005015461301e565b90506000606c5486600101548760020154038161261b57fe5b04905060765481106126b75760675460018701546002880154600389015460408051639170577360e01b8152600481018b905260248101949094526044840192909252606483018890526084830152516001600160a01b039092169163917057739160a48082019260009290919082900301818387803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505b506002850183905560068501805460ff191660011790556007850181905590509392505050565b606554604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b15801561273357600080fd5b505af1158015612747573d6000803e3d6000fd5b5050606e5461275f925090508263ffffffff61234e16565b606e555050565b6000828152603360205260409020612784908263ffffffff61315e16565b1561108d5761279161255e565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526033602052604090206127f3908263ffffffff61317316565b1561108d5761280061255e565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b303b1590565b60008061285d8b8b8b8b8b8b8b8b61301e565b905060765483106128f057606754604080516344b335bd60e11b8152336004820152602481018e9052604481018c9052606481018b9052608481018a905260a4810189905290516001600160a01b03909216916389666b7a9160c48082019260009290919082900301818387803b1580156128d757600080fd5b505af11580156128eb573d6000803e3d6000fd5b505050505b6040518061010001604052808b81526020018a81526020018881526020018781526020018681526020018581526020016001151581526020018281525060726000336001600160a01b03166001600160a01b0316815260200190815260200160002060008d8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e0820151816007015590505060736000336001600160a01b03166001600160a01b031681526020019081526020016000208b9080600181540180825580915050600190039060005260206000200160009091909190915055809150509998505050505050505050565b6000611cd98383613188565b6000611cd9836001600160a01b0384166131ec565b6000818310612a595781611cd9565b5090919050565b606554604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015612ab057600080fd5b505afa158015612ac4573d6000803e3d6000fd5b505050506040513d6020811015612ada57600080fd5b5051606f54909150612af2908263ffffffff61234e16565b606f819055606e541015612b2257606e54606f54612b159163ffffffff6122cd16565b606f556000606e55612b2d565b6000606f819055606e555b6000612b86606f54606560000160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c3957600080fd5b60655460408051632770a7eb60e21b81523060048201526024810186905290519293506001600160a01b0390911691639dc29fac9160448082019260009290919082900301818387803b158015612bdc57600080fd5b505af1158015612bf0573d6000803e3d6000fd5b505050506000612c14618e94610834611c936077548661234e90919063ffffffff16565b606f54909150612c2a908263ffffffff61234e16565b606f55611cb3838263ffffffff61234e16565b6000611cdc82613204565b60008184841115612cd75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c9c578181015183820152602001612c84565b50505050905090810190601f168015612cc95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612d2e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612c9c578181015183820152602001612c84565b506000838581612d3a57fe5b0495945050505050565b600080612d60606c5461083486866122cd90919063ffffffff16565b90506000612d86612d7961071b8463ffffffff61234e16565b879063ffffffff6123a616565b90506000612da160695461071c6123a690919063ffffffff16565b9050612dbf8161083484670de0b6b3a764000063ffffffff6123a616565b979650505050505050565b6000612dd7878787612d44565b606a54909150612ded908263ffffffff61234e16565b606a55607754612e03908863ffffffff61234e16565b6077819055506040518061010001604052808881526020018781526020018681526020018281526020018481526020018585018152602001600015158152602001600081525060726000846001600160a01b03166001600160a01b0316815260200190815260200160002060008a8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e0820151816007015590505060736000836001600160a01b03166001600160a01b031681526020019081526020016000208890806001815401808255809150506001900390600052602060002001600090919091909150556076548410612fc0576067546040805163281476b960e11b81526001600160a01b038581166004830152602482018c9052604482018a9052606482018990526084820185905291519190921691635028ed729160a480830192600092919082900301818387803b158015612fa757600080fd5b505af1158015612fbb573d6000803e3d6000fd5b505050505b604080518881526020810188905280820187905260608101839052905189916001600160a01b038516917fc6f8dbf1fa0a0918d52df74fa2b529a0a4da7011a24f263a28678e7504444cd69181900360800190a35050505050505050565b6000606b54421061303157613031611da3565b600061303e848487611d00565b606a54909150613054908663ffffffff6122cd16565b606a5560775461306a908a63ffffffff6122cd16565b60775560008061307c8b8b8b866107a6565b91509150806000146131045760665461309e906001600160a01b0316826126de565b6066546040805163c22fd76f60e01b81526004810184905290516001600160a01b039092169163c22fd76f9160248082019260009290919082900301818387803b1580156130eb57600080fd5b505af11580156130ff573d6000803e3d6000fd5b505050505b60408051838152602081018c90528082018a90526060810189905290518d9133917f2ae77851d374757c0aeee19fd5d8f75edac9f1f52043fb96992607c2937314419181900360800190a3509a9950505050505050505050565b6000611cd9836001600160a01b038416613208565b6000611cd9836001600160a01b038416613252565b815460009082106131ca5760405162461bcd60e51b81526004018080602001828103825260228152602001806133196022913960400191505060405180910390fd5b8260000182815481106131d957fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600061321483836131ec565b61324a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611cdc565b506000611cdc565b6000818152600183016020526040812054801561330e578354600019808301919081019060009087908390811061328557fe5b90600052602060002001549050808760000184815481106132a257fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806132d257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611cdc565b6000915050611cdc56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e745374616b696e673a205374616b652077697468647261776e206f72206e6f74207365745374616b696e673a205374616b696e672064617973203c2031000000000000005354414b494e473a204d6178205368617265206576656e74206973206e6f7420616374697665416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6543616c6c6572206973206e6f742061206d616e616765720000000000000000005374616b696e673a205374616b652077697468647261776e00000000000000005354414b494e473a204e65772073686172657320617265206e6f742067726561746572207468656e2070726576696f757320736861726573496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775374616b696e673a205374616b696e672064617973203e2035353535000000005354414b494e473a205374616b652077697468647261776e206f72206e6f7420736574416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122092944e0cad125f6d8214ca74428b6e544c1effdea9ee77b8efd15a89a4ccab4964736f6c63430006080033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102255760003560e01c80630b7df8b71461022a5780631304bd76146102725780631990ecff146102e15780631f5a56a814610300578063228988c414610332578063248a9ca3146103a857806329652e86146103d75780632e17de78146103f45780632f2ff15d1461041157806336568abe1461043d5780633feb925b14610469578063421653f71461047157806345bf0cc014610479578063485cc955146104815780634bc2e48d146104af5780634f5f9978146104b7578063567e98f9146104d457806357fb3d5c146104dc5780635fb02f4d146104f957806365407202146105015780636ab6122a1461051e5780636fae2e15146105475780637b0472f01461054f5780637e905dfe146105725780638061c46f1461057a578063814a59b3146105825780638d1ad7371461058a5780639010d07c1461059257806391d14854146105d15780639803755814610611578063982e52fb1461063a5780639964935e14610642578063a217fddf1461064a578063a2e6f9bf14610652578063aa187dd01461065a578063abe9127114610662578063c49b7c311461066a578063ca15c87314610689578063ce733e6d146106a6578063d547741f146106cf578063da0321cd146106fb578063dd0072121461072e578063eadca0f41461075a578063ec87621c14610762578063f556a79c1461076a578063fa82ac7614610772578063fb802a651461079e575b600080fd5b6102596004803603608081101561024057600080fd5b50803590602081013590604081013590606001356107a6565b6040805192835260208301919091528051918290030190f35b61029e6004803603604081101561028857600080fd5b506001600160a01b038135169060200135610914565b604080519889526020890197909752878701959095526060870193909352608086019190915260a0850152151560c084015260e083015251908190036101000190f35b6102fe600480360360208110156102f757600080fd5b5035610968565b005b6102fe6004803603606081101561031657600080fd5b50803590602081013590604001356001600160a01b0316610dd1565b6103586004803603602081101561034857600080fd5b50356001600160a01b0316610ef1565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561039457818101518382015260200161037c565b505050509050019250505060405180910390f35b6103c5600480360360208110156103be57600080fd5b5035610f5d565b60408051918252519081900360200190f35b610259600480360360208110156103ed57600080fd5b5035610f72565b6102fe6004803603602081101561040a57600080fd5b5035610f9d565b6102fe6004803603604081101561042757600080fd5b50803590602001356001600160a01b031661102a565b6102fe6004803603604081101561045357600080fd5b50803590602001356001600160a01b0316611091565b6103c56110f2565b6103c561111e565b6103c5611124565b6102fe6004803603604081101561049757600080fd5b506001600160a01b038135811691602001351661112a565b6103c561122e565b6102fe600480360360208110156104cd57600080fd5b5035611250565b6103c561143e565b6102fe600480360360208110156104f257600080fd5b5035611444565b6103c561167d565b6102fe6004803603602081101561051757600080fd5b5035611683565b6102fe6004803603606081101561053457600080fd5b50803590602081013590604001356116f4565b6103c5611a37565b6102fe6004803603604081101561056557600080fd5b5080359060200135611a5c565b6103c5611b5b565b6103c5611b61565b6103c5611b67565b6103c5611b6d565b6105b5600480360360408110156105a857600080fd5b5080359060200135611cbb565b604080516001600160a01b039092168252519081900360200190f35b6105fd600480360360408110156105e757600080fd5b50803590602001356001600160a01b0316611ce2565b604080519115158252519081900360200190f35b6103c56004803603606081101561062757600080fd5b5080359060208101359060400135611d00565b6105fd611d9a565b6102fe611da3565b6103c5611ec4565b6103c5611ec9565b6105fd611ecf565b6103c5611ed8565b6102fe6004803603602081101561068057600080fd5b50351515611ede565b6103c56004803603602081101561069f57600080fd5b5035611f5d565b6102fe600480360360608110156106bc57600080fd5b5080359060208101359060400135611f74565b6102fe600480360360408110156106e557600080fd5b50803590602001356001600160a01b0316612174565b6107036121cd565b604080516001600160a01b039485168152928416602084015292168183015290519081900360600190f35b6103c56004803603604081101561074457600080fd5b506001600160a01b0381351690602001356121ea565b6103c5612218565b6103c561221e565b6105b5612242565b6102fe6004803603604081101561078857600080fd5b50803590602001356001600160a01b0316612251565b6103c56122c7565b600080806107ba858763ffffffff6122cd16565b905060006107d3606c548361230f90919063ffffffff16565b905060006107e7428963ffffffff6122cd16565b90506000610800606c548361230f90919063ffffffff16565b905060006108148b8963ffffffff61234e16565b90508184111561086657600061084086610834848763ffffffff6123a616565b9063ffffffff61230f16565b90506000610854838363ffffffff6122cd16565b91985090965061090b95505050505050565b61087784600e63ffffffff61234e16565b82101561088e5795506000945061090b9350505050565b6108a0846102ca63ffffffff61234e16565b8210156108fb5783820360006108d46102bc6108346108c76102ca8663ffffffff6122cd16565b869063ffffffff6123a616565b905060006108e8848363ffffffff6122cd16565b91995090975061090b9650505050505050565b60009650945061090b9350505050565b94509492505050565b60726020908152600092835260408084209091529082529020805460018201546002830154600384015460048501546005860154600687015460079097015495969495939492939192909160ff9091169088565b6071548111156109bc576040805162461bcd60e51b815260206004820152601a60248201527914d51052d25391ce88125b9d985b1a59081cd95cdcda5bdb925960321b604482015290519081900360640190fd5b336000908152607260209081526040808320848452909152902060038101541580156109ed5750600681015460ff16155b610a39576040805162461bcd60e51b815260206004820152601860248201527729aa20a5a4a7239d1029ba30b5b2903bb4ba34323930bbb760411b604482015290519081900360640190fd5b606854604080516309825ebb60e11b815233600482015260248101859052905160009283928392839283926001600160a01b0390911691631304bd769160448082019260a092909190829003018186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d60a0811015610ac057600080fd5b508051602082015160408301516060840151608090940151606c54939950919750955091935090915060009085850381610af657fe5b0490508181016000808080610b0d87868a8e6123ff565b93509350935093506076548610610bd357606560020160009054906101000a90046001600160a01b03166001600160a01b031663c5db1f9b338f8787868e6040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b031681526020018681526020018581526020018481526020018381526020018281526020019650505050505050600060405180830381600087803b158015610bb657600080fd5b505af1158015610bca573d6000803e3d6000fd5b50505050610c7c565b606560020160009054906101000a90046001600160a01b03166001600160a01b0316635028ed72338f8787866040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b0316815260200185815260200184815260200183815260200182815260200195505050505050600060405180830381600087803b158015610c6357600080fd5b505af1158015610c77573d6000803e3d6000fd5b505050505b60405180610100016040528083815260200185815260200184815260200182815260200160748054905081526020016074805490506115b3018152602001600015158152602001600081525060726000336001600160a01b03166001600160a01b0316815260200190815260200160002060008f8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e0820151816007015590505060736000336001600160a01b03166001600160a01b031681526020019081526020016000208d9080600181540180825580915050600190039060005260206000200160009091909190915055610dc28d89838e8689896124cc565b50505050505050505050505050565b604080517345585445524e414c5f5354414b45525f524f4c4560601b81529051908190036014019020610e0b90610e0661255e565b611ce2565b610e5c576040805162461bcd60e51b815260206004820152601f60248201527f43616c6c6572206973206e6f7420612065787465726e616c207374616b657200604482015290519081900360640190fd5b81610e9c576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b3821115610ee1576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b610eec838383612562565b505050565b6001600160a01b038116600090815260736020908152604091829020805483518184028101840190945280845260609392830182828015610f5157602002820191906000526020600020905b815481526020019060010190808311610f3d575b50505050509050919050565b60009081526033602052604090206002015490565b60748181548110610f7f57fe5b60009182526020909120600290910201805460019091015490915082565b3360009081526072602090815260408083208484529091529020600381015415801590610fcf5750600681015460ff16155b61100a5760405162461bcd60e51b815260040180806020018281038252602381526020018061336a6023913960400191505060405180910390fd5b4260006110188385846125d7565b905061102433826126de565b50505050565b60008281526033602052604090206002015461104890610e0661255e565b6110835760405162461bcd60e51b815260040180806020018281038252602f81526020018061333b602f913960400191505060405180910390fd5b61108d8282612766565b5050565b61109961255e565b6001600160a01b0316816001600160a01b0316146110e85760405162461bcd60e51b815260040180806020018281038252602f81526020018061350d602f913960400191505060405180910390fd5b61108d82826127d5565b604080517345585445524e414c5f5354414b45525f524f4c4560601b8152905190819003601401902081565b60705481565b60715481565b600054610100900460ff16806111435750611143612844565b80611151575060005460ff16155b61118c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061347b602e913960400191505060405180910390fd5b600054610100900460ff161580156111b7576000805460ff1961ff0019909116610100171660011790555b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206111e29084611083565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902061120e9083611083565b6075805460ff191690558015610eec576000805461ff0019169055505050565b600061124b606c54610834606d54426122cd90919063ffffffff16565b905090565b6071548111156112a4576040805162461bcd60e51b815260206004820152601a60248201527914dd185ada5b99ce88125b9d985b1a59081cd95cdcda5bdb925960321b604482015290519081900360640190fd5b336000908152607260209081526040808320848452909152902060038101541580156112d55750600681015460ff16155b611314576040805162461bcd60e51b81526020600482015260186024820152600080516020613423833981519152604482015290519081900360640190fd5b606854604080516309825ebb60e11b815233600482015260248101859052905160009283928392839283926001600160a01b0390911691631304bd769160448082019260a092909190829003018186803b15801561137157600080fd5b505afa158015611385573d6000803e3d6000fd5b505050506040513d60a081101561139b57600080fd5b50805160208201516040830151606084015160809094015192985090965094509092509050816113fc5760405162461bcd60e51b815260040180806020018281038252602381526020018061336a6023913960400191505060405180910390fd5b6000606c548585038161140b57fe5b0490508181014260006114258b8a8a8a868b8b8a8c61284a565b905061143133826126de565b5050505050505050505050565b60775481565b33600090815260726020908152604080832084845290915290206003810154158015906114765750600681015460ff16155b6114b15760405162461bcd60e51b81526004018080602001828103825260238152602001806134ea6023913960400191505060405180910390fd5b6000806000806114d385600401548660050154876003015488600001546123ff565b93509350935093506000606c548660010154876002015403816114f257fe5b049050607654811061158957606754600387015460408051630866391760e41b8152600481018b90526024810189905260448101889052606481018690526084810192909252516001600160a01b039092169163866391709160a48082019260009290919082900301818387803b15801561156c57600080fd5b505af1158015611580573d6000803e3d6000fd5b50505050611615565b606754600287015460038801546040805163281476b960e11b8152336004820152602481018c9052604481018a905260648101939093526084830191909152516001600160a01b0390921691635028ed729160a48082019260009290919082900301818387803b1580156115fc57600080fd5b505af1158015611610573d6000803e3d6000fd5b505050505b3360009081526072602090815260408083208a8452909152902083815560028101859055600181018690556003808201849055607454600483018190556115b30160059092019190915586015486546116749189918590878a8a6124cc565b50505050505050565b606d5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206116b090610e0661255e565b6116ef576040805162461bcd60e51b81526020600482015260176024820152600080516020613403833981519152604482015290519081900360640190fd5b606955565b607154831115611748576040805162461bcd60e51b815260206004820152601a60248201527914dd185ada5b99ce88125b9d985b1a59081cd95cdcda5bdb925960321b604482015290519081900360640190fd5b81611788576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b38211156117cd576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b336000908152607260209081526040808320868452909152902060038101541580156117fe5750600681015460ff16155b61183d576040805162461bcd60e51b81526020600482015260186024820152600080516020613423833981519152604482015290519081900360640190fd5b606854604080516309825ebb60e11b815233600482015260248101879052905160009283928392839283926001600160a01b0390911691631304bd769160448082019260a092909190829003018186803b15801561189a57600080fd5b505afa1580156118ae573d6000803e3d6000fd5b505050506040513d60a08110156118c457600080fd5b5080516020820151604083015160608401516080909401519298509096509450909250905081611929576040805162461bcd60e51b81526020600482015260186024820152600080516020613423833981519152604482015290519081900360640190fd5b428084111561197b576040805162461bcd60e51b81526020600482015260196024820152785374616b696e673a205374616b65206e6f74206d617475726560381b604482015290519081900360640190fd5b6000606c548686038161198a57fe5b04905082810160006119a38d8a8a8a888b8b898b61284a565b90508a15611a2c5760655460408051632770a7eb60e21b8152336004820152602481018e905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156119fe57600080fd5b505af1158015611a12573d6000803e3d6000fd5b50505050611a298b8261234e90919063ffffffff16565b90505b610dc2818d33612562565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902081565b80611a9c576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b3811115611ae1576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b611aec828233612562565b60655460408051632770a7eb60e21b81523360048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b158015611b3f57600080fd5b505af1158015611b53573d6000803e3d6000fd5b505050505050565b606f5481565b606b5481565b606e5481565b606554604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015611bbd57600080fd5b505afa158015611bd1573d6000803e3d6000fd5b505050506040513d6020811015611be757600080fd5b5051606f54606554604080516318160ddd60e01b81529051939450600093611c7193926001600160a01b0316916318160ddd916004808301926020929190829003018186803b158015611c3957600080fd5b505afa158015611c4d573d6000803e3d6000fd5b505050506040513d6020811015611c6357600080fd5b50519063ffffffff61234e16565b90506000611ca1618e94610834611c936077548661234e90919063ffffffff16565b60089063ffffffff6123a616565b9050611cb3838263ffffffff61234e16565b935050505090565b6000828152603360205260408120611cd9908363ffffffff612a2916565b90505b92915050565b6000828152603360205260408120611cd9908363ffffffff612a3516565b6000806000611d1460748054905086612a4a565b9050855b81811015611d8f576000611d7260748381548110611d3257fe5b9060005260206000209060020201600101546108348860748681548110611d5557fe5b60009182526020909120600290910201549063ffffffff6123a616565b9050611d84848263ffffffff61234e16565b935050600101611d18565b509095945050505050565b60755460ff1681565b606b54421015611df7576040805162461bcd60e51b815260206004820152601a6024820152795374616b696e673a2057726f6e67207061796f75742074696d6560301b604482015290519081900360640190fd5b6000611e01612a60565b60408051808201909152818152606a54602082019081526074805460018101825560009190915291517f19a0b39aa25ac793b5f6e9a0534364cc0b3fd1ea9b651e79c7f50a59d48ef813600290930292830155517f19a0b39aa25ac793b5f6e9a0534364cc0b3fd1ea9b651e79c7f50a59d48ef81490910155606c54606b54919250611e8d919061234e565b606b55606a5460405142919083907fd62b41a40bef91d47724ff07583b3d171958e4bc44899c59aea750e4a0160bf990600090a450565b600081565b606c5481565b60785460ff1690565b606a5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611f0b90610e0661255e565b611f4a576040805162461bcd60e51b81526020600482015260176024820152600080516020613403833981519152604482015290519081900360640190fd5b6078805460ff1916911515919091179055565b6000818152603360205260408120611cdc90612c3d565b81611fb4576040805162461bcd60e51b8152602060048201526019602482015260008051602061338d833981519152604482015290519081900360640190fd5b6115b3821115611ff9576040805162461bcd60e51b815260206004820152601c60248201526000805160206134ca833981519152604482015290519081900360640190fd5b336000908152607260209081526040808320868452909152902060038101541580159061202b5750600681015460ff16155b61207c576040805162461bcd60e51b815260206004820181905260248201527f5374616b696e673a205374616b652077697468647261776e2f696e76616c6964604482015290519081900360640190fd5b600281015442908110156120d3576040805162461bcd60e51b81526020600482015260196024820152785374616b696e673a205374616b65206e6f74206d617475726560381b604482015290519081900360640190fd5b60006120e08387846125d7565b905083156121695760655460408051632770a7eb60e21b81523360048201526024810187905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561213b57600080fd5b505af115801561214f573d6000803e3d6000fd5b50505050612166848261234e90919063ffffffff16565b90505b611b53818633612562565b60008281526033602052604090206002015461219290610e0661255e565b6110e85760405162461bcd60e51b81526004018080602001828103825260308152602001806133d36030913960400191505060405180910390fd5b6065546066546067546001600160a01b0392831692918216911683565b6073602052816000526040600020818154811061220357fe5b90600052602060002001600091509150505481565b60765481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902081565b6068546001600160a01b031681565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061227e90610e0661255e565b6122bd576040805162461bcd60e51b81526020600482015260176024820152600080516020613403833981519152604482015290519081900360640190fd5b61108d8282611083565b60695481565b6000611cd983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c48565b6000611cd983836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b815250612cdf565b600082820183811015611cd9576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000826123b557506000611cdc565b828202828482816123c257fe5b0414611cd95760405162461bcd60e51b81526004018080602001828103825260218152602001806134a96021913960400191505060405180910390fd5b60785460009081908190819060ff16151560011461244e5760405162461bcd60e51b81526004018080602001828103825260268152602001806133ad6026913960400191505060405180910390fd5b600061245b898989611d00565b606c5490915042906115b30281018783016000612479828585612d44565b90508a81116124b95760405162461bcd60e51b81526004018080602001828103825260388152602001806134436038913960400191505060405180910390fd5b929c919b50995090975095505050505050565b606a546124e19087870363ffffffff61234e16565b606a556077546124f99085850363ffffffff61234e16565b6077556040805185815260208101859052808201889052606081018790526080810184905260a081018390529051889133917f726e103f034230e119217c46f21c9f5116a8cdb782dfbdd74aece8d2c76c81a39181900360c00190a350505050505050565b3390565b606b54421061257357612573611da3565b606c54429060009061259d9061259090869063ffffffff6123a616565b429063ffffffff61234e16565b6070549091506125b490600163ffffffff61234e16565b6070819055506125d06070548684848860748054905089612dca565b5050505050565b60008061260284866000015487600101548860020154878a600301548b600401548c6005015461301e565b90506000606c5486600101548760020154038161261b57fe5b04905060765481106126b75760675460018701546002880154600389015460408051639170577360e01b8152600481018b905260248101949094526044840192909252606483018890526084830152516001600160a01b039092169163917057739160a48082019260009290919082900301818387803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505b506002850183905560068501805460ff191660011790556007850181905590509392505050565b606554604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b15801561273357600080fd5b505af1158015612747573d6000803e3d6000fd5b5050606e5461275f925090508263ffffffff61234e16565b606e555050565b6000828152603360205260409020612784908263ffffffff61315e16565b1561108d5761279161255e565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526033602052604090206127f3908263ffffffff61317316565b1561108d5761280061255e565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b303b1590565b60008061285d8b8b8b8b8b8b8b8b61301e565b905060765483106128f057606754604080516344b335bd60e11b8152336004820152602481018e9052604481018c9052606481018b9052608481018a905260a4810189905290516001600160a01b03909216916389666b7a9160c48082019260009290919082900301818387803b1580156128d757600080fd5b505af11580156128eb573d6000803e3d6000fd5b505050505b6040518061010001604052808b81526020018a81526020018881526020018781526020018681526020018581526020016001151581526020018281525060726000336001600160a01b03166001600160a01b0316815260200190815260200160002060008d8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e0820151816007015590505060736000336001600160a01b03166001600160a01b031681526020019081526020016000208b9080600181540180825580915050600190039060005260206000200160009091909190915055809150509998505050505050505050565b6000611cd98383613188565b6000611cd9836001600160a01b0384166131ec565b6000818310612a595781611cd9565b5090919050565b606554604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015612ab057600080fd5b505afa158015612ac4573d6000803e3d6000fd5b505050506040513d6020811015612ada57600080fd5b5051606f54909150612af2908263ffffffff61234e16565b606f819055606e541015612b2257606e54606f54612b159163ffffffff6122cd16565b606f556000606e55612b2d565b6000606f819055606e555b6000612b86606f54606560000160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c3957600080fd5b60655460408051632770a7eb60e21b81523060048201526024810186905290519293506001600160a01b0390911691639dc29fac9160448082019260009290919082900301818387803b158015612bdc57600080fd5b505af1158015612bf0573d6000803e3d6000fd5b505050506000612c14618e94610834611c936077548661234e90919063ffffffff16565b606f54909150612c2a908263ffffffff61234e16565b606f55611cb3838263ffffffff61234e16565b6000611cdc82613204565b60008184841115612cd75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c9c578181015183820152602001612c84565b50505050905090810190601f168015612cc95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612d2e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612c9c578181015183820152602001612c84565b506000838581612d3a57fe5b0495945050505050565b600080612d60606c5461083486866122cd90919063ffffffff16565b90506000612d86612d7961071b8463ffffffff61234e16565b879063ffffffff6123a616565b90506000612da160695461071c6123a690919063ffffffff16565b9050612dbf8161083484670de0b6b3a764000063ffffffff6123a616565b979650505050505050565b6000612dd7878787612d44565b606a54909150612ded908263ffffffff61234e16565b606a55607754612e03908863ffffffff61234e16565b6077819055506040518061010001604052808881526020018781526020018681526020018281526020018481526020018585018152602001600015158152602001600081525060726000846001600160a01b03166001600160a01b0316815260200190815260200160002060008a8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e0820151816007015590505060736000836001600160a01b03166001600160a01b031681526020019081526020016000208890806001815401808255809150506001900390600052602060002001600090919091909150556076548410612fc0576067546040805163281476b960e11b81526001600160a01b038581166004830152602482018c9052604482018a9052606482018990526084820185905291519190921691635028ed729160a480830192600092919082900301818387803b158015612fa757600080fd5b505af1158015612fbb573d6000803e3d6000fd5b505050505b604080518881526020810188905280820187905260608101839052905189916001600160a01b038516917fc6f8dbf1fa0a0918d52df74fa2b529a0a4da7011a24f263a28678e7504444cd69181900360800190a35050505050505050565b6000606b54421061303157613031611da3565b600061303e848487611d00565b606a54909150613054908663ffffffff6122cd16565b606a5560775461306a908a63ffffffff6122cd16565b60775560008061307c8b8b8b866107a6565b91509150806000146131045760665461309e906001600160a01b0316826126de565b6066546040805163c22fd76f60e01b81526004810184905290516001600160a01b039092169163c22fd76f9160248082019260009290919082900301818387803b1580156130eb57600080fd5b505af11580156130ff573d6000803e3d6000fd5b505050505b60408051838152602081018c90528082018a90526060810189905290518d9133917f2ae77851d374757c0aeee19fd5d8f75edac9f1f52043fb96992607c2937314419181900360800190a3509a9950505050505050505050565b6000611cd9836001600160a01b038416613208565b6000611cd9836001600160a01b038416613252565b815460009082106131ca5760405162461bcd60e51b81526004018080602001828103825260228152602001806133196022913960400191505060405180910390fd5b8260000182815481106131d957fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600061321483836131ec565b61324a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611cdc565b506000611cdc565b6000818152600183016020526040812054801561330e578354600019808301919081019060009087908390811061328557fe5b90600052602060002001549050808760000184815481106132a257fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806132d257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611cdc565b6000915050611cdc56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e745374616b696e673a205374616b652077697468647261776e206f72206e6f74207365745374616b696e673a205374616b696e672064617973203c2031000000000000005354414b494e473a204d6178205368617265206576656e74206973206e6f7420616374697665416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6543616c6c6572206973206e6f742061206d616e616765720000000000000000005374616b696e673a205374616b652077697468647261776e00000000000000005354414b494e473a204e65772073686172657320617265206e6f742067726561746572207468656e2070726576696f757320736861726573496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775374616b696e673a205374616b696e672064617973203e2035353535000000005354414b494e473a205374616b652077697468647261776e206f72206e6f7420736574416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122092944e0cad125f6d8214ca74428b6e544c1effdea9ee77b8efd15a89a4ccab4964736f6c63430006080033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.