Source Code
Latest 25 from a total of 29 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Get Reward | 20831064 | 526 days ago | IN | 0 ETH | 0.0013755 | ||||
| Withdraw | 16063337 | 1194 days ago | IN | 0 ETH | 0.00113891 | ||||
| Exit | 12546860 | 1739 days ago | IN | 0 ETH | 0.00233697 | ||||
| Exit | 12314564 | 1775 days ago | IN | 0 ETH | 0.00584244 | ||||
| Exit | 12057308 | 1815 days ago | IN | 0 ETH | 0.02734102 | ||||
| Exit | 12049685 | 1816 days ago | IN | 0 ETH | 0.02532811 | ||||
| Exit | 12013411 | 1821 days ago | IN | 0 ETH | 0.01858375 | ||||
| Stake | 11999751 | 1823 days ago | IN | 0 ETH | 0.01207263 | ||||
| Stake | 11994905 | 1824 days ago | IN | 0 ETH | 0.01371212 | ||||
| Get Reward | 11990753 | 1825 days ago | IN | 0 ETH | 0.01232011 | ||||
| Get Reward | 11874202 | 1843 days ago | IN | 0 ETH | 0.00880485 | ||||
| Exit | 11851232 | 1846 days ago | IN | 0 ETH | 0.0179632 | ||||
| Exit | 11821874 | 1851 days ago | IN | 0 ETH | 0.02923942 | ||||
| Exit | 11821764 | 1851 days ago | IN | 0 ETH | 0.03314064 | ||||
| Exit | 11786310 | 1856 days ago | IN | 0 ETH | 0.02304848 | ||||
| Get Reward | 11735603 | 1864 days ago | IN | 0 ETH | 0.00548804 | ||||
| Stake | 11720311 | 1866 days ago | IN | 0 ETH | 0.01414936 | ||||
| Stake | 11682069 | 1872 days ago | IN | 0 ETH | 0.00734969 | ||||
| Stake | 11682019 | 1872 days ago | IN | 0 ETH | 0.00756909 | ||||
| Stake | 11681536 | 1872 days ago | IN | 0 ETH | 0.00559454 | ||||
| Stake | 11680913 | 1872 days ago | IN | 0 ETH | 0.00460727 | ||||
| Stake | 11680910 | 1872 days ago | IN | 0 ETH | 0.00427818 | ||||
| Stake | 11680022 | 1873 days ago | IN | 0 ETH | 0.01031151 | ||||
| Stake | 11679934 | 1873 days ago | IN | 0 ETH | 0.01228606 | ||||
| Stake | 11679868 | 1873 days ago | IN | 0 ETH | 0.01042121 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
YRX2
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-01-15
*/
/*
*
* Docs: https://docs.synthetix.io/
*
*
* MIT License
* ===========
*
* Copyright (c) 2020 Synthetix
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
// File: @openzeppelin/contracts/math/Math.sol
pragma solidity ^0.5.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @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);
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
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.
*
* _Available since v2.4.0._
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
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.
*
* _Available since v2.4.0._
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
pragma solidity ^0.5.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with 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.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor() internal {}
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/ownership/Ownable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() internal {
_owner = _msgSender();
emit OwnershipTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return _msgSender() == _owner;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount)
external
returns (bool);
function mint(address account, uint256 amount) external;
/**
* @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
);
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.5.5;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* This test is non-exhaustive, and there may be false-negatives: during the
* execution of a contract's constructor, its address will be reported as
* not containing 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.
*/
function isContract(address account) internal view returns (bool) {
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash
= 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly {
codehash := extcodehash(account)
}
return (codehash != 0x0 && codehash != accountHash);
}
/**
* @dev Converts an `address` into `address payable`. Note that this is
* simply a type cast: the actual underlying value is not changed.
*
* _Available since v2.4.0._
*/
function toPayable(address account)
internal
pure
returns (address payable)
{
return address(uint160(account));
}
/**
* @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].
*
* _Available since v2.4.0._
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
// solhint-disable-next-line avoid-call-value
(bool success, ) = recipient.call.value(amount)("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
pragma solidity ^0.5.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
callOptionalReturn(
token,
abi.encodeWithSelector(token.transfer.selector, to, value)
);
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
callOptionalReturn(
token,
abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
);
}
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
callOptionalReturn(
token,
abi.encodeWithSelector(token.approve.selector, spender, value)
);
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(
value
);
callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(
value,
"SafeERC20: decreased allowance below zero"
);
callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves.
// A Solidity high level call has three parts:
// 1. The target address is checked to verify it contains contract code
// 2. The call itself is made, and success asserted
// 3. The return value is decoded, which in turn checks the size of the returned data.
// solhint-disable-next-line max-line-length
require(address(token).isContract(), "SafeERC20: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = address(token).call(data);
require(success, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
// solhint-disable-next-line max-line-length
require(
abi.decode(returndata, (bool)),
"SafeERC20: ERC20 operation did not succeed"
);
}
}
}
// File: contracts/IRewardDistributionRecipient.sol
pragma solidity ^0.5.0;
contract IRewardDistributionRecipient is Ownable {
address rewardDistribution = 0x3996ec035cb6987dC3B15D4836b74bAf85474F91; //change
function notifyRewardAmount() external;
modifier onlyRewardDistribution() {
require(
_msgSender() == rewardDistribution,
"Caller is not reward distribution"
);
_;
}
function setRewardDistribution(address _rewardDistribution)
external
onlyOwner
{
rewardDistribution = _rewardDistribution;
}
}
// File: contracts/CurveRewards.sol
pragma solidity ^0.5.0;
contract LPTokenWrapper {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public uni_lp = IERC20(0xBd455F35BC5e531999B1C8fC72DF938767aA69b9);
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
function stake(uint256 amount) public {
_totalSupply = _totalSupply.add(amount);
_balances[msg.sender] = _balances[msg.sender].add(amount);
uni_lp.safeTransferFrom(msg.sender, address(this), amount);
}
function withdraw(uint256 amount) public {
_totalSupply = _totalSupply.sub(amount);
_balances[msg.sender] = _balances[msg.sender].sub(amount);
uni_lp.safeTransfer(msg.sender, amount);
}
}
contract YRX2 is LPTokenWrapper, IRewardDistributionRecipient {
IERC20 public yrx = IERC20(0x21634B64a6915b879aD13d96418a82b2a48Fcbe9);
uint8 public constant NUMBER_EPOCHS = 12;
uint256 public constant EPOCH_REWARD = 83333333333333330000;
uint256 public constant TOTAL_REWARD = EPOCH_REWARD * NUMBER_EPOCHS;
uint256 public constant DURATION = 7 days;
uint256 public currentEpochReward = EPOCH_REWARD;
uint256 public totalAccumulatedReward = 0;
uint8 public currentEpoch = 0;
uint256 public starttime = 1610964000; // Monday, January 18, 2021 11:00:00 AM GMT+01:00
uint256 public periodFinish = 0;
uint256 public rewardRate = 0;
uint256 public lastUpdateTime;
uint256 public rewardPerTokenStored;
mapping(address => uint256) public userRewardPerTokenPaid;
mapping(address => uint256) public rewards;
event RewardAdded(uint256 reward);
event Staked(address indexed user, uint256 amount);
event Withdrawn(address indexed user, uint256 amount);
event RewardPaid(address indexed user, uint256 reward);
modifier updateReward(address account) {
rewardPerTokenStored = rewardPerToken();
lastUpdateTime = lastTimeRewardApplicable();
if (account != address(0)) {
rewards[account] = earned(account);
userRewardPerTokenPaid[account] = rewardPerTokenStored;
}
_;
}
function lastTimeRewardApplicable() public view returns (uint256) {
return Math.min(block.timestamp, periodFinish);
}
function rewardPerToken() public view returns (uint256) {
if (totalSupply() == 0) {
return rewardPerTokenStored;
}
return
rewardPerTokenStored.add(
lastTimeRewardApplicable()
.sub(lastUpdateTime)
.mul(rewardRate)
.mul(1e18)
.div(totalSupply())
);
}
function earned(address account) public view returns (uint256) {
return
balanceOf(account)
.mul(rewardPerToken().sub(userRewardPerTokenPaid[account]))
.div(1e18)
.add(rewards[account]);
}
// stake visibility is public as overriding LPTokenWrapper's stake() function
function stake(uint256 amount)
public
updateReward(msg.sender)
checkNextEpoch
checkStart
{
require(amount > 0, "Cannot stake 0");
super.stake(amount);
emit Staked(msg.sender, amount);
}
function withdraw(uint256 amount)
public
updateReward(msg.sender)
{
require(amount > 0, "Cannot withdraw 0");
super.withdraw(amount);
emit Withdrawn(msg.sender, amount);
}
function exit() external {
withdraw(balanceOf(msg.sender));
getReward();
}
function getReward()
public
updateReward(msg.sender)
checkNextEpoch
checkStart
{
uint256 reward = earned(msg.sender);
if (reward > 0) {
rewards[msg.sender] = 0;
yrx.safeTransfer(msg.sender, reward);
emit RewardPaid(msg.sender, reward);
}
}
modifier checkNextEpoch() {
if (block.timestamp >= periodFinish) {
currentEpochReward = EPOCH_REWARD;
if (totalAccumulatedReward.add(currentEpochReward) > TOTAL_REWARD) {
currentEpochReward = TOTAL_REWARD.sub(totalAccumulatedReward); // limit total reward
}
if (currentEpochReward > 0) {
totalAccumulatedReward = totalAccumulatedReward.add(
currentEpochReward
);
currentEpoch++;
}
rewardRate = currentEpochReward.div(DURATION);
lastUpdateTime = block.timestamp;
periodFinish = block.timestamp.add(DURATION);
emit RewardAdded(currentEpochReward);
}
_;
}
function emergencyDrain(address _addy) public onlyRewardDistribution {
IERC20 token = IERC20(_addy);
token.safeTransfer(msg.sender, token.balanceOf(address(this)));
}
modifier checkStart() {
require(block.timestamp > starttime, "not start");
_;
}
function notifyRewardAmount()
external
onlyRewardDistribution
updateReward(address(0))
{
if (totalAccumulatedReward.add(currentEpochReward) > TOTAL_REWARD) {
currentEpochReward = TOTAL_REWARD.sub(totalAccumulatedReward); // limit total reward
}
rewardRate = currentEpochReward.div(DURATION);
totalAccumulatedReward = totalAccumulatedReward.add(currentEpochReward);
currentEpoch++;
lastUpdateTime = block.timestamp;
periodFinish = starttime.add(DURATION);
emit RewardAdded(currentEpochReward);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"constant":true,"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EPOCH_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"NUMBER_EPOCHS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentEpoch","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentEpochReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addy","type":"address"}],"name":"emergencyDrain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"notifyRewardAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardDistribution","type":"address"}],"name":"setRewardDistribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"starttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalAccumulatedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"uni_lp","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"yrx","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]Contract Creation Code
608060405273bd455f35bc5e531999b1c8fc72df938767aa69b96000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733996ec035cb6987dc3b15d4836b74baf85474f91600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507321634b64a6915b879ad13d96418a82b2a48fcbe9600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506804847b7925d28d485060065560006007556000600860006101000a81548160ff021916908360ff1602179055506360055c206009556000600a556000600b5561015061021260201b60201c565b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361021a565b600033905090565b612636806102296000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806380faa57d1161010f578063c8333bb2116100a2578063e68e035b11610071578063e68e035b146106e8578063e9fad8ee14610706578063ebe2b12b14610710578063f2fde38b1461072e576101ef565b8063c8333bb214610670578063c8f33c911461068e578063cd3daf9d146106ac578063df136d65146106ca576101ef565b80638da5cb5b116100de5780638da5cb5b1461058c5780638f32d59b146105d657806397215a18146105f8578063a694fc3a14610642576101ef565b806380faa57d146104ae57806383d0fdc1146104cc5780638b876347146105165780638da588971461056e576101ef565b8063207e821d11610187578063715018a611610156578063715018a61461041e57806371a18bfb14610428578063766718081461046c5780637b0a47ee14610490576101ef565b8063207e821d146103705780632e1a7d4d1461038e5780633d18b912146103bc57806370a08231146103c6576101ef565b80630fcfc6a8116101c35780630fcfc6a8146102f257806313eb6c881461031657806318160ddd146103345780631be0528914610352576101ef565b80628cc262146101f45780630700037d1461024c5780630c51dde4146102a45780630d68b761146102ae575b600080fd5b6102366004803603602081101561020a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610772565b6040518082815260200191505060405180910390f35b61028e6004803603602081101561026257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610859565b6040518082815260200191505060405180910390f35b6102ac610871565b005b6102f0600480360360208110156102c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b29565b005b6102fa610be7565b604051808260ff1660ff16815260200191505060405180910390f35b61031e610bec565b6040518082815260200191505060405180910390f35b61033c610bf9565b6040518082815260200191505060405180910390f35b61035a610c03565b6040518082815260200191505060405180910390f35b610378610c0a565b6040518082815260200191505060405180910390f35b6103ba600480360360208110156103a457600080fd5b8101908080359060200190929190505050610c10565b005b6103c4610dc5565b005b610408600480360360208110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611162565b6040518082815260200191505060405180910390f35b6104266111ab565b005b61046a6004803603602081101561043e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e6565b005b61047461147e565b604051808260ff1660ff16815260200191505060405180910390f35b610498611491565b6040518082815260200191505060405180910390f35b6104b6611497565b6040518082815260200191505060405180910390f35b6104d46114aa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105586004803603602081101561052c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114cf565b6040518082815260200191505060405180910390f35b6105766114e7565b6040518082815260200191505060405180910390f35b6105946114ed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105de611517565b604051808215151515815260200191505060405180910390f35b610600611576565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61066e6004803603602081101561065857600080fd5b810190808035906020019092919050505061159c565b005b61067861190f565b6040518082815260200191505060405180910390f35b610696611922565b6040518082815260200191505060405180910390f35b6106b4611928565b6040518082815260200191505060405180910390f35b6106d26119c0565b6040518082815260200191505060405180910390f35b6106f06119c6565b6040518082815260200191505060405180910390f35b61070e6119cc565b005b6107186119e7565b6040518082815260200191505060405180910390f35b6107706004803603602081101561074457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ed565b005b6000610852600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610844670de0b6b3a764000061083661081f600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610811611928565b611a7390919063ffffffff16565b61082888611162565b611abd90919063ffffffff16565b611b4390919063ffffffff16565b611b8d90919063ffffffff16565b9050919050565b600f6020528060005260406000206000915090505481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108b2611c15565b73ffffffffffffffffffffffffffffffffffffffff161461091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125b76021913960400191505060405180910390fd5b6000610928611928565b600d81905550610936611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a035761097981610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600c60ff166804847b7925d28d485002610a2a600654600754611b8d90919063ffffffff16565b1115610a5b57610a54600754600c60ff166804847b7925d28d485002611a7390919063ffffffff16565b6006819055505b610a7362093a80600654611b4390919063ffffffff16565b600b81905550610a90600654600754611b8d90919063ffffffff16565b6007819055506008600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff1602179055505042600c81905550610ae762093a80600954611b8d90919063ffffffff16565b600a819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d6006546040518082815260200191505060405180910390a150565b610b31611517565b610ba3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c81565b6804847b7925d28d485081565b6000600154905090565b62093a8081565b60075481565b33610c19611928565b600d81905550610c27611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cf457610c6a81610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610d6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b610d7382611c1d565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a25050565b33610dce611928565b600d81905550610ddc611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ea957610e1f81610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600a544210610ff0576804847b7925d28d4850600681905550600c60ff166804847b7925d28d485002610ee9600654600754611b8d90919063ffffffff16565b1115610f1a57610f13600754600c60ff166804847b7925d28d485002611a7390919063ffffffff16565b6006819055505b60006006541115610f7557610f3c600654600754611b8d90919063ffffffff16565b6007819055506008600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff160217905550505b610f8d62093a80600654611b4390919063ffffffff16565b600b8190555042600c81905550610fb062093a8042611b8d90919063ffffffff16565b600a819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d6006546040518082815260200191505060405180910390a15b6009544211611067576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f74207374617274000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600061107233610772565b9050600081111561115e576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061110f3382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d1c9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b5050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b3611517565b611225576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611327611c15565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125b76021913960400191505060405180910390fd5b600081905061147a338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561141957600080fd5b505afa15801561142d573d6000803e3d6000fd5b505050506040513d602081101561144357600080fd5b81019080805190602001909291905050508373ffffffffffffffffffffffffffffffffffffffff16611d1c9092919063ffffffff16565b5050565b600860009054906101000a900460ff1681565b600b5481565b60006114a542600a54611ded565b905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090505481565b60095481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661155a611c15565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b336115a5611928565b600d819055506115b3611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611680576115f681610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600a5442106117c7576804847b7925d28d4850600681905550600c60ff166804847b7925d28d4850026116c0600654600754611b8d90919063ffffffff16565b11156116f1576116ea600754600c60ff166804847b7925d28d485002611a7390919063ffffffff16565b6006819055505b6000600654111561174c57611713600654600754611b8d90919063ffffffff16565b6007819055506008600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff160217905550505b61176462093a80600654611b4390919063ffffffff16565b600b8190555042600c8190555061178762093a8042611b8d90919063ffffffff16565b600a819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d6006546040518082815260200191505060405180910390a15b600954421161183e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f74207374617274000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600082116118b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b6118bd82611e06565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a25050565b600c60ff166804847b7925d28d48500281565b600c5481565b600080611933610bf9565b141561194357600d5490506119bd565b6119ba6119a9611951610bf9565b61199b670de0b6b3a764000061198d600b5461197f600c54611971611497565b611a7390919063ffffffff16565b611abd90919063ffffffff16565b611abd90919063ffffffff16565b611b4390919063ffffffff16565b600d54611b8d90919063ffffffff16565b90505b90565b600d5481565b60065481565b6119dd6119d833611162565b610c10565b6119e5610dc5565b565b600a5481565b6119f5611517565b611a67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611a7081611f07565b50565b6000611ab583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061204d565b905092915050565b600080831415611ad05760009050611b3d565b6000828402905082848281611ae157fe5b0414611b38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125966021913960400191505060405180910390fd5b809150505b92915050565b6000611b8583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061210d565b905092915050565b600080828401905083811015611c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b611c3281600154611a7390919063ffffffff16565b600181905550611c8a81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a7390919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d1933826000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d1c9092919063ffffffff16565b50565b611de8838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506121d3565b505050565b6000818310611dfc5781611dfe565b825b905092915050565b611e1b81600154611b8d90919063ffffffff16565b600181905550611e7381600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b8d90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f043330836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661241e909392919063ffffffff16565b50565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125706026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008383111582906120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120bf5780820151818401526020810190506120a4565b50505050905090810190601f1680156120ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561217e578082015181840152602081019050612163565b50505050905090810190601f1680156121ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816121c557fe5b049050809150509392505050565b6121f28273ffffffffffffffffffffffffffffffffffffffff16612524565b612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106122b35780518252602082019150602081019050602083039250612290565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612315576040519150601f19603f3d011682016040523d82523d6000602084013e61231a565b606091505b509150915081612392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115612418578080602001905160208110156123b157600080fd5b8101908080519060200190929190505050612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806125d8602a913960400191505060405180910390fd5b5b50505050565b61251e848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506121d3565b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156125665750808214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a7231582068817a7c31444fcdfceeff6d46d13ae0eff57283249e302a6a4956803d9135bb64736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c806380faa57d1161010f578063c8333bb2116100a2578063e68e035b11610071578063e68e035b146106e8578063e9fad8ee14610706578063ebe2b12b14610710578063f2fde38b1461072e576101ef565b8063c8333bb214610670578063c8f33c911461068e578063cd3daf9d146106ac578063df136d65146106ca576101ef565b80638da5cb5b116100de5780638da5cb5b1461058c5780638f32d59b146105d657806397215a18146105f8578063a694fc3a14610642576101ef565b806380faa57d146104ae57806383d0fdc1146104cc5780638b876347146105165780638da588971461056e576101ef565b8063207e821d11610187578063715018a611610156578063715018a61461041e57806371a18bfb14610428578063766718081461046c5780637b0a47ee14610490576101ef565b8063207e821d146103705780632e1a7d4d1461038e5780633d18b912146103bc57806370a08231146103c6576101ef565b80630fcfc6a8116101c35780630fcfc6a8146102f257806313eb6c881461031657806318160ddd146103345780631be0528914610352576101ef565b80628cc262146101f45780630700037d1461024c5780630c51dde4146102a45780630d68b761146102ae575b600080fd5b6102366004803603602081101561020a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610772565b6040518082815260200191505060405180910390f35b61028e6004803603602081101561026257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610859565b6040518082815260200191505060405180910390f35b6102ac610871565b005b6102f0600480360360208110156102c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b29565b005b6102fa610be7565b604051808260ff1660ff16815260200191505060405180910390f35b61031e610bec565b6040518082815260200191505060405180910390f35b61033c610bf9565b6040518082815260200191505060405180910390f35b61035a610c03565b6040518082815260200191505060405180910390f35b610378610c0a565b6040518082815260200191505060405180910390f35b6103ba600480360360208110156103a457600080fd5b8101908080359060200190929190505050610c10565b005b6103c4610dc5565b005b610408600480360360208110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611162565b6040518082815260200191505060405180910390f35b6104266111ab565b005b61046a6004803603602081101561043e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e6565b005b61047461147e565b604051808260ff1660ff16815260200191505060405180910390f35b610498611491565b6040518082815260200191505060405180910390f35b6104b6611497565b6040518082815260200191505060405180910390f35b6104d46114aa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105586004803603602081101561052c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114cf565b6040518082815260200191505060405180910390f35b6105766114e7565b6040518082815260200191505060405180910390f35b6105946114ed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105de611517565b604051808215151515815260200191505060405180910390f35b610600611576565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61066e6004803603602081101561065857600080fd5b810190808035906020019092919050505061159c565b005b61067861190f565b6040518082815260200191505060405180910390f35b610696611922565b6040518082815260200191505060405180910390f35b6106b4611928565b6040518082815260200191505060405180910390f35b6106d26119c0565b6040518082815260200191505060405180910390f35b6106f06119c6565b6040518082815260200191505060405180910390f35b61070e6119cc565b005b6107186119e7565b6040518082815260200191505060405180910390f35b6107706004803603602081101561074457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ed565b005b6000610852600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610844670de0b6b3a764000061083661081f600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610811611928565b611a7390919063ffffffff16565b61082888611162565b611abd90919063ffffffff16565b611b4390919063ffffffff16565b611b8d90919063ffffffff16565b9050919050565b600f6020528060005260406000206000915090505481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108b2611c15565b73ffffffffffffffffffffffffffffffffffffffff161461091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125b76021913960400191505060405180910390fd5b6000610928611928565b600d81905550610936611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a035761097981610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600c60ff166804847b7925d28d485002610a2a600654600754611b8d90919063ffffffff16565b1115610a5b57610a54600754600c60ff166804847b7925d28d485002611a7390919063ffffffff16565b6006819055505b610a7362093a80600654611b4390919063ffffffff16565b600b81905550610a90600654600754611b8d90919063ffffffff16565b6007819055506008600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff1602179055505042600c81905550610ae762093a80600954611b8d90919063ffffffff16565b600a819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d6006546040518082815260200191505060405180910390a150565b610b31611517565b610ba3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c81565b6804847b7925d28d485081565b6000600154905090565b62093a8081565b60075481565b33610c19611928565b600d81905550610c27611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cf457610c6a81610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610d6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b610d7382611c1d565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a25050565b33610dce611928565b600d81905550610ddc611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ea957610e1f81610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600a544210610ff0576804847b7925d28d4850600681905550600c60ff166804847b7925d28d485002610ee9600654600754611b8d90919063ffffffff16565b1115610f1a57610f13600754600c60ff166804847b7925d28d485002611a7390919063ffffffff16565b6006819055505b60006006541115610f7557610f3c600654600754611b8d90919063ffffffff16565b6007819055506008600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff160217905550505b610f8d62093a80600654611b4390919063ffffffff16565b600b8190555042600c81905550610fb062093a8042611b8d90919063ffffffff16565b600a819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d6006546040518082815260200191505060405180910390a15b6009544211611067576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f74207374617274000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600061107233610772565b9050600081111561115e576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061110f3382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d1c9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b5050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b3611517565b611225576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611327611c15565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125b76021913960400191505060405180910390fd5b600081905061147a338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561141957600080fd5b505afa15801561142d573d6000803e3d6000fd5b505050506040513d602081101561144357600080fd5b81019080805190602001909291905050508373ffffffffffffffffffffffffffffffffffffffff16611d1c9092919063ffffffff16565b5050565b600860009054906101000a900460ff1681565b600b5481565b60006114a542600a54611ded565b905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090505481565b60095481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661155a611c15565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b336115a5611928565b600d819055506115b3611497565b600c81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611680576115f681610772565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600a5442106117c7576804847b7925d28d4850600681905550600c60ff166804847b7925d28d4850026116c0600654600754611b8d90919063ffffffff16565b11156116f1576116ea600754600c60ff166804847b7925d28d485002611a7390919063ffffffff16565b6006819055505b6000600654111561174c57611713600654600754611b8d90919063ffffffff16565b6007819055506008600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff160217905550505b61176462093a80600654611b4390919063ffffffff16565b600b8190555042600c8190555061178762093a8042611b8d90919063ffffffff16565b600a819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d6006546040518082815260200191505060405180910390a15b600954421161183e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f74207374617274000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600082116118b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b6118bd82611e06565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a25050565b600c60ff166804847b7925d28d48500281565b600c5481565b600080611933610bf9565b141561194357600d5490506119bd565b6119ba6119a9611951610bf9565b61199b670de0b6b3a764000061198d600b5461197f600c54611971611497565b611a7390919063ffffffff16565b611abd90919063ffffffff16565b611abd90919063ffffffff16565b611b4390919063ffffffff16565b600d54611b8d90919063ffffffff16565b90505b90565b600d5481565b60065481565b6119dd6119d833611162565b610c10565b6119e5610dc5565b565b600a5481565b6119f5611517565b611a67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611a7081611f07565b50565b6000611ab583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061204d565b905092915050565b600080831415611ad05760009050611b3d565b6000828402905082848281611ae157fe5b0414611b38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125966021913960400191505060405180910390fd5b809150505b92915050565b6000611b8583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061210d565b905092915050565b600080828401905083811015611c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b611c3281600154611a7390919063ffffffff16565b600181905550611c8a81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a7390919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d1933826000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d1c9092919063ffffffff16565b50565b611de8838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506121d3565b505050565b6000818310611dfc5781611dfe565b825b905092915050565b611e1b81600154611b8d90919063ffffffff16565b600181905550611e7381600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b8d90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f043330836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661241e909392919063ffffffff16565b50565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125706026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008383111582906120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120bf5780820151818401526020810190506120a4565b50505050905090810190601f1680156120ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561217e578082015181840152602081019050612163565b50505050905090810190601f1680156121ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816121c557fe5b049050809150509392505050565b6121f28273ffffffffffffffffffffffffffffffffffffffff16612524565b612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106122b35780518252602082019150602081019050602083039250612290565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612315576040519150601f19603f3d011682016040523d82523d6000602084013e61231a565b606091505b509150915081612392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115612418578080602001905160208110156123b157600080fd5b8101908080519060200190929190505050612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806125d8602a913960400191505060405180910390fd5b5b50505050565b61251e848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506121d3565b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156125665750808214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a7231582068817a7c31444fcdfceeff6d46d13ae0eff57283249e302a6a4956803d9135bb64736f6c63430005100032
Deployed Bytecode Sourcemap
23804:5068:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23804:5068:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25810:265;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25810:265:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24634:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24634:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28251:618;;;:::i;:::-;;22618:161;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22618:161:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;23950:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23997:59;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23122:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24137:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24240;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26432:236;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26432:236:0;;;;;;;;;;;;;;;;;:::i;:::-;;26781:351;;;:::i;:::-;;23221:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23221:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10593:140;;;:::i;:::-;;27944:189;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27944:189:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;24288:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24456;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25243:131;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22951:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24570:57;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24570:57:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24324:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9782:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10148:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23873:70;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26166:258;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26166:258:0;;;;;;;;;;;;;;;;;:::i;:::-;;24063:67;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24492:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25382:420;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24528:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24185:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26676:97;;;:::i;:::-;;24418:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10888:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10888:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;25810:265;25864:7;25904:163;26050:7;:16;26058:7;26050:16;;;;;;;;;;;;;;;;25904:123;26022:4;25904:95;25945:53;25966:22;:31;25989:7;25966:31;;;;;;;;;;;;;;;;25945:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;25904:18;25914:7;25904:9;:18::i;:::-;:40;;:95;;;;:::i;:::-;:117;;:123;;;;:::i;:::-;:145;;:163;;;;:::i;:::-;25884:183;;25810:265;;;:::o;24634:42::-;;;;;;;;;;;;;;;;;:::o;28251:618::-;22511:18;;;;;;;;;;;22495:34;;:12;:10;:12::i;:::-;:34;;;22473:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28361:1;24978:16;:14;:16::i;:::-;24955:20;:39;;;;25022:26;:24;:26::i;:::-;25005:14;:43;;;;25082:1;25063:21;;:7;:21;;;25059:157;;25120:15;25127:7;25120:6;:15::i;:::-;25101:7;:16;25109:7;25101:16;;;;;;;;;;;;;;;:34;;;;25184:20;;25150:22;:31;25173:7;25150:31;;;;;;;;;;;;;;;:54;;;;25059:157;23988:2;24102:28;;24036:20;24102:28;28385:46;28412:18;;28385:22;;:26;;:46;;;;:::i;:::-;:61;28381:177;;;28484:40;28501:22;;23988:2;24102:28;;24036:20;24102:28;28484:16;;:40;;;;:::i;:::-;28463:18;:61;;;;28381:177;28583:32;24172:6;28583:18;;:22;;:32;;;;:::i;:::-;28570:10;:45;;;;28651:46;28678:18;;28651:22;;:26;;:46;;;;:::i;:::-;28626:22;:71;;;;28708:12;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28750:15;28733:14;:32;;;;28791:23;24172:6;28791:9;;:13;;:23;;;;:::i;:::-;28776:12;:38;;;;28830:31;28842:18;;28830:31;;;;;;;;;;;;;;;;;;22601:1;28251:618::o;22618:161::-;9994:9;:7;:9::i;:::-;9986:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22752:19;22731:18;;:40;;;;;;;;;;;;;;;;;;22618:161;:::o;23950:40::-;23988:2;23950:40;:::o;23997:59::-;24036:20;23997:59;:::o;23122:91::-;23166:7;23193:12;;23186:19;;23122:91;:::o;24137:41::-;24172:6;24137:41;:::o;24240:::-;;;;:::o;26432:236::-;26504:10;24978:16;:14;:16::i;:::-;24955:20;:39;;;;25022:26;:24;:26::i;:::-;25005:14;:43;;;;25082:1;25063:21;;:7;:21;;;25059:157;;25120:15;25127:7;25120:6;:15::i;:::-;25101:7;:16;25109:7;25101:16;;;;;;;;;;;;;;;:34;;;;25184:20;;25150:22;:31;25173:7;25150:31;;;;;;;;;;;;;;;:54;;;;25059:157;26559:1;26550:6;:10;26542:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26593:22;26608:6;26593:14;:22::i;:::-;26641:10;26631:29;;;26653:6;26631:29;;;;;;;;;;;;;;;;;;26432:236;;:::o;26781:351::-;26840:10;24978:16;:14;:16::i;:::-;24955:20;:39;;;;25022:26;:24;:26::i;:::-;25005:14;:43;;;;25082:1;25063:21;;:7;:21;;;25059:157;;25120:15;25127:7;25120:6;:15::i;:::-;25101:7;:16;25109:7;25101:16;;;;;;;;;;;;;;;:34;;;;25184:20;;25150:22;:31;25173:7;25150:31;;;;;;;;;;;;;;;:54;;;;25059:157;27200:12;;27181:15;:31;27177:740;;24036:20;27229:18;:33;;;;23988:2;24102:28;;24036:20;24102:28;27283:46;27310:18;;27283:22;;:26;;:46;;;;:::i;:::-;:61;27279:185;;;27386:40;27403:22;;23988:2;24102:28;;24036:20;24102:28;27386:16;;:40;;;;:::i;:::-;27365:18;:61;;;;27279:185;27505:1;27484:18;;:22;27480:207;;;27552:86;27601:18;;27552:22;;:26;;:86;;;;:::i;:::-;27527:22;:111;;;;27657:12;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27480:207;27716:32;24172:6;27716:18;;:22;;:32;;;;:::i;:::-;27703:10;:45;;;;27780:15;27763:14;:32;;;;27825:29;24172:6;27825:15;:19;;:29;;;;:::i;:::-;27810:12;:44;;;;27874:31;27886:18;;27874:31;;;;;;;;;;;;;;;;;;27177:740;28200:9;;28182:15;:27;28174:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26912:14;26929:18;26936:10;26929:6;:18::i;:::-;26912:35;;26971:1;26962:6;:10;26958:167;;;27011:1;26989:7;:19;26997:10;26989:19;;;;;;;;;;;;;;;:23;;;;27027:36;27044:10;27056:6;27027:3;;;;;;;;;;;:16;;;;:36;;;;;:::i;:::-;27094:10;27083:30;;;27106:6;27083:30;;;;;;;;;;;;;;;;;;26958:167;28234:1;26781:351;:::o;23221:110::-;23278:7;23305:9;:18;23315:7;23305:18;;;;;;;;;;;;;;;;23298:25;;23221:110;;;:::o;10593:140::-;9994:9;:7;:9::i;:::-;9986:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10692:1;10655:40;;10676:6;;;;;;;;;;;10655:40;;;;;;;;;;;;10723:1;10706:6;;:19;;;;;;;;;;;;;;;;;;10593:140::o;27944:189::-;22511:18;;;;;;;;;;;22495:34;;:12;:10;:12::i;:::-;:34;;;22473:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28024:12;28046:5;28024:28;;28063:62;28082:10;28094:5;:15;;;28118:4;28094:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28094:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28094:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28094:30:0;;;;;;;;;;;;;;;;28063:5;:18;;;;:62;;;;;:::i;:::-;22601:1;27944:189;:::o;24288:29::-;;;;;;;;;;;;;:::o;24456:::-;;;;:::o;25243:131::-;25300:7;25327:39;25336:15;25353:12;;25327:8;:39::i;:::-;25320:46;;25243:131;:::o;22951:73::-;;;;;;;;;;;;;:::o;24570:57::-;;;;;;;;;;;;;;;;;:::o;24324:37::-;;;;:::o;9782:79::-;9820:7;9847:6;;;;;;;;;;;9840:13;;9782:79;:::o;10148:94::-;10188:4;10228:6;;;;;;;;;;;10212:22;;:12;:10;:12::i;:::-;:22;;;10205:29;;10148:94;:::o;23873:70::-;;;;;;;;;;;;;:::o;26166:258::-;26235:10;24978:16;:14;:16::i;:::-;24955:20;:39;;;;25022:26;:24;:26::i;:::-;25005:14;:43;;;;25082:1;25063:21;;:7;:21;;;25059:157;;25120:15;25127:7;25120:6;:15::i;:::-;25101:7;:16;25109:7;25101:16;;;;;;;;;;;;;;;:34;;;;25184:20;;25150:22;:31;25173:7;25150:31;;;;;;;;;;;;;;;:54;;;;25059:157;27200:12;;27181:15;:31;27177:740;;24036:20;27229:18;:33;;;;23988:2;24102:28;;24036:20;24102:28;27283:46;27310:18;;27283:22;;:26;;:46;;;;:::i;:::-;:61;27279:185;;;27386:40;27403:22;;23988:2;24102:28;;24036:20;24102:28;27386:16;;:40;;;;:::i;:::-;27365:18;:61;;;;27279:185;27505:1;27484:18;;:22;27480:207;;;27552:86;27601:18;;27552:22;;:26;;:86;;;;:::i;:::-;27527:22;:111;;;;27657:12;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27480:207;27716:32;24172:6;27716:18;;:22;;:32;;;;:::i;:::-;27703:10;:45;;;;27780:15;27763:14;:32;;;;27825:29;24172:6;27825:15;:19;;:29;;;;:::i;:::-;27810:12;:44;;;;27874:31;27886:18;;27874:31;;;;;;;;;;;;;;;;;;27177:740;28200:9;;28182:15;:27;28174:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26324:1;26315:6;:10;26307:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26355:19;26367:6;26355:11;:19::i;:::-;26397:10;26390:26;;;26409:6;26390:26;;;;;;;;;;;;;;;;;;26166:258;;:::o;24063:67::-;23988:2;24102:28;;24036:20;24102:28;24063:67;:::o;24492:29::-;;;;:::o;25382:420::-;25429:7;25470:1;25453:13;:11;:13::i;:::-;:18;25449:78;;;25495:20;;25488:27;;;;25449:78;25557:237;25600:179;25765:13;:11;:13::i;:::-;25600:138;25733:4;25600:106;25695:10;;25600:68;25653:14;;25600:26;:24;:26::i;:::-;:52;;:68;;;;:::i;:::-;:94;;:106;;;;:::i;:::-;:132;;:138;;;;:::i;:::-;:164;;:179;;;;:::i;:::-;25557:20;;:24;;:237;;;;:::i;:::-;25537:257;;25382:420;;:::o;24528:35::-;;;;:::o;24185:48::-;;;;:::o;26676:97::-;26712:31;26721:21;26731:10;26721:9;:21::i;:::-;26712:8;:31::i;:::-;26754:11;:9;:11::i;:::-;26676:97::o;24418:31::-;;;;:::o;10888:109::-;9994:9;:7;:9::i;:::-;9986:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10961:28;10980:8;10961:18;:28::i;:::-;10888:109;:::o;3406:136::-;3464:7;3491:43;3495:1;3498;3491:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3484:50;;3406:136;;;;:::o;4356:471::-;4414:7;4664:1;4659;:6;4655:47;;;4689:1;4682:8;;;;4655:47;4714:9;4730:1;4726;:5;4714:17;;4759:1;4754;4750;:5;;;;;;:10;4742:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4818:1;4811:8;;;4356:471;;;;;:::o;5295:132::-;5353:7;5380:39;5384:1;5387;5380:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5373:46;;5295:132;;;;:::o;2950:181::-;3008:7;3028:9;3044:1;3040;:5;3028:17;;3069:1;3064;:6;;3056:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3122:1;3115:8;;;2950:181;;;;:::o;8507:98::-;8552:15;8587:10;8580:17;;8507:98;:::o;23580:217::-;23647:24;23664:6;23647:12;;:16;;:24;;;;:::i;:::-;23632:12;:39;;;;23706:33;23732:6;23706:9;:21;23716:10;23706:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;23682:9;:21;23692:10;23682:21;;;;;;;;;;;;;;;:57;;;;23750:39;23770:10;23782:6;23750;;;;;;;;;;;:19;;;;:39;;;;;:::i;:::-;23580:217;:::o;18361:247::-;18478:122;18511:5;18554;:14;;;:23;;;;18579:2;18583:5;18531:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;18531:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;18531:58:0;18478:18;:122::i;:::-;18361:247;;;:::o;1608:106::-;1666:7;1697:1;1693;:5;:13;;1705:1;1693:13;;;1701:1;1693:13;1686:20;;1608:106;;;;:::o;23339:233::-;23403:24;23420:6;23403:12;;:16;;:24;;;;:::i;:::-;23388:12;:39;;;;23462:33;23488:6;23462:9;:21;23472:10;23462:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;23438:9;:21;23448:10;23438:21;;;;;;;;;;;;;;;:57;;;;23506:58;23530:10;23550:4;23557:6;23506;;;;;;;;;;;:23;;;;:58;;;;;;:::i;:::-;23339:233;:::o;11103:266::-;11211:1;11191:22;;:8;:22;;;;11169:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11324:8;11295:38;;11316:6;;;;;;;;;;;11295:38;;;;;;;;;;;;11353:8;11344:6;;:17;;;;;;;;;;;;;;;;;;11103:266;:::o;3879:226::-;3999:7;4032:1;4027;:6;;4035:12;4019:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4019:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4059:9;4075:1;4071;:5;4059:17;;4096:1;4089:8;;;3879:226;;;;;:::o;5957:379::-;6077:7;6176:1;6172;:5;6179:12;6164:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6164:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6203:9;6219:1;6215;:5;;;;;;6203:17;;6327:1;6320:8;;;5957:379;;;;;:::o;20971:1176::-;21575:27;21583:5;21575:25;;;:27::i;:::-;21567:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21712:12;21726:23;21761:5;21753:19;;21773:4;21753:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;21753:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;21711:67:0;;;;21797:7;21789:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21878:1;21858:10;:17;:21;21854:286;;;22031:10;22020:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22020:30:0;;;;;;;;;;;;;;;;21994:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21854:286;20971:1176;;;;:::o;18616:284::-;18760:132;18793:5;18836;:18;;;:27;;;;18865:4;18871:2;18875:5;18813:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;18813:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;18813:68:0;18760:18;:132::i;:::-;18616:284;;;;:::o;15061:848::-;15121:4;15574:16;15607:19;15639:66;15607:98;;;;15821:7;15809:20;15797:32;;15870:3;15858:15;;:8;:15;;:42;;;;;15889:11;15877:8;:23;;15858:42;15850:51;;;;15061:848;;;:::o
Swarm Source
bzzr://68817a7c31444fcdfceeff6d46d13ae0eff57283249e302a6a4956803d9135bb
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
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.