Source Code
Latest 25 from a total of 151 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 11711570 | 1866 days ago | IN | 0 ETH | 0.00250476 | ||||
| Withdraw | 11693655 | 1869 days ago | IN | 0 ETH | 0.0020985 | ||||
| Withdraw | 11600485 | 1883 days ago | IN | 0 ETH | 0.00295468 | ||||
| Withdraw | 11600445 | 1883 days ago | IN | 0 ETH | 0.00264411 | ||||
| Get Reward | 11600364 | 1883 days ago | IN | 0 ETH | 0.00561503 | ||||
| Get Reward | 11600345 | 1883 days ago | IN | 0 ETH | 0.00190493 | ||||
| Withdraw | 11548027 | 1891 days ago | IN | 0 ETH | 0.00914859 | ||||
| Withdraw | 11548021 | 1891 days ago | IN | 0 ETH | 0.00520428 | ||||
| Withdraw | 11532294 | 1893 days ago | IN | 0 ETH | 0.0036928 | ||||
| Get Reward | 11522893 | 1895 days ago | IN | 0 ETH | 0.00279427 | ||||
| Withdraw | 11522888 | 1895 days ago | IN | 0 ETH | 0.00340918 | ||||
| Get Reward | 11522835 | 1895 days ago | IN | 0 ETH | 0.00478463 | ||||
| Withdraw | 11522829 | 1895 days ago | IN | 0 ETH | 0.00701354 | ||||
| Get Reward | 11500538 | 1898 days ago | IN | 0 ETH | 0.00272011 | ||||
| Withdraw | 11500532 | 1898 days ago | IN | 0 ETH | 0.00583146 | ||||
| Withdraw | 11500525 | 1898 days ago | IN | 0 ETH | 0.0078444 | ||||
| Withdraw | 11500503 | 1898 days ago | IN | 0 ETH | 0.0045759 | ||||
| Withdraw | 11500497 | 1898 days ago | IN | 0 ETH | 0.0045759 | ||||
| Withdraw | 11500492 | 1898 days ago | IN | 0 ETH | 0.0026148 | ||||
| Get Reward | 11494889 | 1899 days ago | IN | 0 ETH | 0.00362712 | ||||
| Stake | 11492205 | 1900 days ago | IN | 0 ETH | 0.00478287 | ||||
| Notify Reward Am... | 11489331 | 1900 days ago | IN | 0 ETH | 0.00124472 | ||||
| Get Reward | 11489116 | 1900 days ago | IN | 0 ETH | 0.00140484 | ||||
| Get Reward | 11488431 | 1900 days ago | IN | 0 ETH | 0.00165983 | ||||
| Withdraw | 11488428 | 1900 days ago | IN | 0 ETH | 0.00182214 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xf9f9cb68...a72DB90db The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
NoMintRewardPool
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-11-27
*/
pragma solidity ^0.5.16;
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);
}
}
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;
}
}
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;
}
}
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;
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
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");
}
}
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");
}
}
}
contract IRewardDistributionRecipient is Ownable {
// address of the FeeRewardForwarder
address rewardDistribution;
constructor(address _rewardDistribution) public {
rewardDistribution = _rewardDistribution;
}
function notifyRewardAmount(uint256 reward) external;
modifier onlyRewardDistribution() {
require(_msgSender() == rewardDistribution, "Caller is not reward distribution");
_;
}
function setRewardDistribution(address _rewardDistribution)
external
onlyOwner
{
rewardDistribution = _rewardDistribution;
}
}
contract LPTokenWrapper {
using SafeMath for uint256;
using SafeERC20 for IERC20;
/**
* This is the token users stake in this contract to receive rewards.
* They get this token by providing liquidity for a vault (debaUSDT).
*/
IERC20 public lpToken;
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
// The supply of `lpToken` this contract holds.
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
// The balances of the users that staked.
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);
lpToken.safeTransferFrom(msg.sender, address(this), amount);
}
function withdraw(uint256 amount) public {
_totalSupply = _totalSupply.sub(amount);
_balances[msg.sender] = _balances[msg.sender].sub(amount);
lpToken.safeTransfer(msg.sender, amount);
}
}
/*
* This pool doesn't mint anything.
* The rewards should be first transferred to this pool,
* then the pool get "notified" by calling `notifyRewardAmount`.
*/
contract NoMintRewardPool is LPTokenWrapper, IRewardDistributionRecipient {
using Address for address;
using SafeMath for uint256;
IERC20 public rewardToken; // underlying asset of this pool / what is getting rewarded to users.
uint256 public duration; // making it not a constant is less gas efficient, but portable.
address public governance;
address public agent;
uint256 public periodFinish = 0; // timestamp when the period ends and this pool stops functioning.
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);
event RewardDenied(address indexed user, uint256 reward);
/**
* 1. Refreshes the contract data (reward per token & last applicable timestamp).
* 2. Updates the reward of the account.
*/
modifier updateReward(address account) {
rewardPerTokenStored = rewardPerToken();
lastUpdateTime = lastTimeRewardApplicable();
if (account != address(0)) {
rewards[account] = earned(account);
userRewardPerTokenPaid[account] = rewardPerTokenStored;
}
_;
}
/**
* Set the reward, lpToken, duration,
* and rewardDistribution for this pool.
*/
constructor(address _rewardToken,
address _lpToken,
uint256 _duration,
address _rewardDistribution) public
IRewardDistributionRecipient(_rewardDistribution)
{
rewardToken = IERC20(_rewardToken);
lpToken = IERC20(_lpToken);
duration = _duration;
governance = msg.sender;
}
// Get current timestamp, or last valid timestamp (= period end)
function lastTimeRewardApplicable() public view returns (uint256) {
return Math.min(block.timestamp, periodFinish);
}
function setGovernance(address _gov) external {
require(msg.sender == governance, '!governance');
governance = _gov;
}
function setAgent(address _agent) external {
require(msg.sender == governance, '!governance');
agent = _agent;
}
/**
* This fn computes the number of `rewardToken` someone gets
* based on the amount of LP tokens they have staked in this contract.
*/
function rewardPerToken() public view returns (uint256) {
if (totalSupply() == 0) {
return rewardPerTokenStored;
}
return
rewardPerTokenStored.add(
lastTimeRewardApplicable()
.sub(lastUpdateTime)
.mul(rewardRate)
.mul(1e18)
.div(totalSupply())
);
}
/**
* Compute amount earned by:
* - getting the balance of the account
* - multiplying it by the (current reward per token minus the one the user has)
* - dividing by 18 (to get decimals right)
* - adding the past paid out rewards
*/
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.
*
* This is used to stake your LP tokens, so the contract takes them into account.
*/
function stake(uint256 amount) public updateReward(msg.sender) {
require(amount > 0, "Cannot stake 0");
super.stake(amount);
emit Staked(msg.sender, amount);
}
/**
* Reverse of the `stake` function.
*
* This function does not get the reward, just unstakes.
* If you want to get the reward in one tx, call exit() below.
*/
function withdraw(uint256 amount) public updateReward(msg.sender) {
require(amount > 0, "Cannot withdraw 0");
super.withdraw(amount);
emit Withdrawn(msg.sender, amount);
}
/**
* Sends all relevant staked tokens and rewards to user.
*/
function exit() external {
withdraw(balanceOf(msg.sender));
getReward();
}
/**
* A push mechanism for accounts that have not claimed their rewards for a long time.
* The implementation is semantically analogous to getReward(), but uses a push pattern
* instead of pull pattern.
* Can only be called by governance (onlyGovernance).
*/
function pushReward(address recipient) public updateReward(recipient) {
require(msg.sender == governance || msg.sender == agent, '!governance');
uint256 reward = earned(recipient);
if (reward > 0) {
rewards[recipient] = 0;
rewardToken.safeTransfer(recipient, reward);
emit RewardPaid(recipient, reward);
}
}
/**
* Called by the user himself to get the reward.
*/
function getReward() public updateReward(msg.sender) {
uint256 reward = earned(msg.sender);
if (reward > 0) {
rewards[msg.sender] = 0;
rewardToken.safeTransfer(msg.sender, reward);
emit RewardPaid(msg.sender, reward);
}
}
/**
* This Fn is called by the FeeRewardForwarder (onlyRewardDistribution)
* It is invoked after the Forwarder sends the funds (fee) to this contract.
* Calling it results in a recalculation of the `rewardRate`.
*/
function notifyRewardAmount(uint256 reward)
external
onlyRewardDistribution
updateReward(address(0))
{
// overflow fix according to https://sips.synthetix.io/sips/sip-77
require(reward < uint(-1) / 1e18, "the notified reward cannot invoke multiplication overflow");
if (block.timestamp >= periodFinish) {
rewardRate = reward.div(duration);
} else {
uint256 remaining = periodFinish.sub(block.timestamp);
uint256 leftover = remaining.mul(rewardRate);
rewardRate = reward.add(leftover).div(duration);
}
lastUpdateTime = block.timestamp;
periodFinish = block.timestamp.add(duration);
emit RewardAdded(reward);
}
function getFullSharePrice() public view returns (uint256) {
if (totalSupply() == 0) {
return rewardRate;
} else {
return rewardRate.div(totalSupply());
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_rewardToken","type":"address"},{"internalType":"address","name":"_lpToken","type":"address"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"address","name":"_rewardDistribution","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"RewardDenied","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":"agent","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"duration","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":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getFullSharePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"lpToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"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":[{"internalType":"address","name":"recipient","type":"address"}],"name":"pushReward","outputs":[],"payable":false,"stateMutability":"nonpayable","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":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"_agent","type":"address"}],"name":"setAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_gov","type":"address"}],"name":"setGovernance","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"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":[{"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"}]Contract Creation Code
0x608060405260006009556000600a5534801561001a57600080fd5b50604051620029bd380380620029bd8339818101604052608081101561003f57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050508061007d61024e60201b60201c565b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505083600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160068190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050610256565b600033905090565b61275780620002666000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638b87634711610104578063cd3daf9d116100a2578063f2fde38b11610071578063f2fde38b146106c0578063f5ff5c7614610704578063f7c618c11461074e578063fa9389a214610798576101d9565b8063cd3daf9d1461065c578063df136d651461067a578063e9fad8ee14610698578063ebe2b12b146106a2576101d9565b8063a694fc3a116100de578063a694fc3a14610588578063ab033ea9146105b6578063bcf685ed146105fa578063c8f33c911461063e576101d9565b80638b876347146104c45780638da5cb5b1461051c5780638f32d59b14610566576101d9565b80633c6b16ab1161017c57806370a082311161014b57806370a0823114610426578063715018a61461047e5780637b0a47ee1461048857806380faa57d146104a6576101d9565b80633c6b16ab1461035a5780633d18b912146103885780635aa6e675146103925780635fcbd285146103dc576101d9565b80630fb5a6b4116101b85780630fb5a6b4146102d257806318160ddd146102f05780631b17f46b1461030e5780632e1a7d4d1461032c576101d9565b80628cc262146101de5780630700037d146102365780630d68b7611461028e575b600080fd5b610220600480360360208110156101f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107dc565b6040518082815260200191505060405180910390f35b6102786004803603602081101561024c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108c3565b6040518082815260200191505060405180910390f35b6102d0600480360360208110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108db565b005b6102da610999565b6040518082815260200191505060405180910390f35b6102f861099f565b6040518082815260200191505060405180910390f35b6103166109a9565b6040518082815260200191505060405180910390f35b6103586004803603602081101561034257600080fd5b81019080803590602001909291905050506109e6565b005b6103866004803603602081101561037057600080fd5b8101908080359060200190929190505050610b9b565b005b610390610e9e565b005b61039a61107d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103e46110a3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104686004803603602081101561043c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c8565b6040518082815260200191505060405180910390f35b610486611111565b005b61049061124c565b6040518082815260200191505060405180910390f35b6104ae611252565b6040518082815260200191505060405180910390f35b610506600480360360208110156104da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611265565b6040518082815260200191505060405180910390f35b61052461127d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61056e6112a7565b604051808215151515815260200191505060405180910390f35b6105b46004803603602081101561059e57600080fd5b8101908080359060200190929190505050611306565b005b6105f8600480360360208110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114bb565b005b61063c6004803603602081101561061057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115c2565b005b6106466116c9565b6040518082815260200191505060405180910390f35b6106646116cf565b6040518082815260200191505060405180910390f35b610682611767565b6040518082815260200191505060405180910390f35b6106a061176d565b005b6106aa611788565b6040518082815260200191505060405180910390f35b610702600480360360208110156106d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061178e565b005b61070c611814565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075661183a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107da600480360360208110156107ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611860565b005b60006108bc600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108ae670de0b6b3a76400006108a0610889600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461087b6116cf565b611b5b90919063ffffffff16565b610892886110c8565b611ba590919063ffffffff16565b611c2b90919063ffffffff16565b611c7590919063ffffffff16565b9050919050565b600e6020528060005260406000206000915090505481565b6108e36112a7565b610955576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b6000600154905090565b6000806109b461099f565b14156109c457600a5490506109e3565b6109e06109cf61099f565b600a54611c2b90919063ffffffff16565b90505b90565b336109ef6116cf565b600c819055506109fd611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aca57610a40816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610b40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b610b4982611cfd565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a25050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bdc611dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610c48576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126d86021913960400191505060405180910390fd5b6000610c526116cf565b600c81905550610c60611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2d57610ca3816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b670de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81610d5e57fe5b048210610db6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603981526020018061267e6039913960400191505060405180910390fd5b6009544210610ddf57610dd460065483611c2b90919063ffffffff16565b600a81905550610e41565b6000610df642600954611b5b90919063ffffffff16565b90506000610e0f600a5483611ba590919063ffffffff16565b9050610e38600654610e2a8387611c7590919063ffffffff16565b611c2b90919063ffffffff16565b600a8190555050505b42600b81905550610e5d60065442611c7590919063ffffffff16565b6009819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a15050565b33610ea76116cf565b600c81905550610eb5611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f8257610ef8816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000610f8d336107dc565b90506000811115611079576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061102a3382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e049092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111196112a7565b61118b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a5481565b600061126042600954611ed5565b905090565b600d6020528060005260406000206000915090505481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112ea611dfc565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b3361130f6116cf565b600c8190555061131d611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ea57611360816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b61146982611eee565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6000806116da61099f565b14156116ea57600c549050611764565b6117616117506116f861099f565b611742670de0b6b3a7640000611734600a54611726600b54611718611252565b611b5b90919063ffffffff16565b611ba590919063ffffffff16565b611ba590919063ffffffff16565b611c2b90919063ffffffff16565b600c54611c7590919063ffffffff16565b90505b90565b600c5481565b61177e611779336110c8565b6109e6565b611786610e9e565b565b60095481565b6117966112a7565b611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61181181611fef565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b806118696116cf565b600c81905550611877611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611944576118ba816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119ed5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000611a6a836107dc565b90506000811115611b56576000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b078382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e049092919063ffffffff16565b8273ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b505050565b6000611b9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612135565b905092915050565b600080831415611bb85760009050611c25565b6000828402905082848281611bc957fe5b0414611c20576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126b76021913960400191505060405180910390fd5b809150505b92915050565b6000611c6d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121f5565b905092915050565b600080828401905083811015611cf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611d1281600154611b5b90919063ffffffff16565b600181905550611d6a81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b5b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611df933826000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e049092919063ffffffff16565b50565b600033905090565b611ed0838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506122bb565b505050565b6000818310611ee45781611ee6565b825b905092915050565b611f0381600154611c7590919063ffffffff16565b600181905550611f5b81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c7590919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fec3330836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612506909392919063ffffffff16565b50565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612075576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126586026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008383111582906121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121a757808201518184015260208101905061218c565b50505050905090810190601f1680156121d45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906122a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561226657808201518184015260208101905061224b565b50505050905090810190601f1680156122935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816122ad57fe5b049050809150509392505050565b6122da8273ffffffffffffffffffffffffffffffffffffffff1661260c565b61234c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b6020831061239b5780518252602082019150602081019050602083039250612378565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146123fd576040519150601f19603f3d011682016040523d82523d6000602084013e612402565b606091505b50915091508161247a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156125005780806020019051602081101561249957600080fd5b81019080805190602001909291905050506124ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806126f9602a913960400191505060405180910390fd5b5b50505050565b612606848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506122bb565b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b821415801561264e5750808214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373746865206e6f746966696564207265776172642063616e6e6f7420696e766f6b65206d756c7469706c69636174696f6e206f766572666c6f77536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820022daf38a1d00ed8b8b57e7f2fa9642c205196077017f5510890be6180956fd564736f6c63430005100032000000000000000000000000b565cad9dfdd50d48396672df7ae4979f783243700000000000000000000000049e0d63f1b5d42508508029ce05d786a28f65bea000000000000000000000000000000000000000000000000000000000000384000000000000000000000000089dacfd0793750cf91a2cd7b27615862149b293b
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d95760003560e01c80638b87634711610104578063cd3daf9d116100a2578063f2fde38b11610071578063f2fde38b146106c0578063f5ff5c7614610704578063f7c618c11461074e578063fa9389a214610798576101d9565b8063cd3daf9d1461065c578063df136d651461067a578063e9fad8ee14610698578063ebe2b12b146106a2576101d9565b8063a694fc3a116100de578063a694fc3a14610588578063ab033ea9146105b6578063bcf685ed146105fa578063c8f33c911461063e576101d9565b80638b876347146104c45780638da5cb5b1461051c5780638f32d59b14610566576101d9565b80633c6b16ab1161017c57806370a082311161014b57806370a0823114610426578063715018a61461047e5780637b0a47ee1461048857806380faa57d146104a6576101d9565b80633c6b16ab1461035a5780633d18b912146103885780635aa6e675146103925780635fcbd285146103dc576101d9565b80630fb5a6b4116101b85780630fb5a6b4146102d257806318160ddd146102f05780631b17f46b1461030e5780632e1a7d4d1461032c576101d9565b80628cc262146101de5780630700037d146102365780630d68b7611461028e575b600080fd5b610220600480360360208110156101f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107dc565b6040518082815260200191505060405180910390f35b6102786004803603602081101561024c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108c3565b6040518082815260200191505060405180910390f35b6102d0600480360360208110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108db565b005b6102da610999565b6040518082815260200191505060405180910390f35b6102f861099f565b6040518082815260200191505060405180910390f35b6103166109a9565b6040518082815260200191505060405180910390f35b6103586004803603602081101561034257600080fd5b81019080803590602001909291905050506109e6565b005b6103866004803603602081101561037057600080fd5b8101908080359060200190929190505050610b9b565b005b610390610e9e565b005b61039a61107d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103e46110a3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104686004803603602081101561043c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c8565b6040518082815260200191505060405180910390f35b610486611111565b005b61049061124c565b6040518082815260200191505060405180910390f35b6104ae611252565b6040518082815260200191505060405180910390f35b610506600480360360208110156104da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611265565b6040518082815260200191505060405180910390f35b61052461127d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61056e6112a7565b604051808215151515815260200191505060405180910390f35b6105b46004803603602081101561059e57600080fd5b8101908080359060200190929190505050611306565b005b6105f8600480360360208110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114bb565b005b61063c6004803603602081101561061057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115c2565b005b6106466116c9565b6040518082815260200191505060405180910390f35b6106646116cf565b6040518082815260200191505060405180910390f35b610682611767565b6040518082815260200191505060405180910390f35b6106a061176d565b005b6106aa611788565b6040518082815260200191505060405180910390f35b610702600480360360208110156106d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061178e565b005b61070c611814565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61075661183a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107da600480360360208110156107ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611860565b005b60006108bc600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108ae670de0b6b3a76400006108a0610889600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461087b6116cf565b611b5b90919063ffffffff16565b610892886110c8565b611ba590919063ffffffff16565b611c2b90919063ffffffff16565b611c7590919063ffffffff16565b9050919050565b600e6020528060005260406000206000915090505481565b6108e36112a7565b610955576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b6000600154905090565b6000806109b461099f565b14156109c457600a5490506109e3565b6109e06109cf61099f565b600a54611c2b90919063ffffffff16565b90505b90565b336109ef6116cf565b600c819055506109fd611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aca57610a40816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610b40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b610b4982611cfd565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a25050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bdc611dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610c48576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126d86021913960400191505060405180910390fd5b6000610c526116cf565b600c81905550610c60611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2d57610ca3816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b670de0b6b3a76400007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81610d5e57fe5b048210610db6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603981526020018061267e6039913960400191505060405180910390fd5b6009544210610ddf57610dd460065483611c2b90919063ffffffff16565b600a81905550610e41565b6000610df642600954611b5b90919063ffffffff16565b90506000610e0f600a5483611ba590919063ffffffff16565b9050610e38600654610e2a8387611c7590919063ffffffff16565b611c2b90919063ffffffff16565b600a8190555050505b42600b81905550610e5d60065442611c7590919063ffffffff16565b6009819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a15050565b33610ea76116cf565b600c81905550610eb5611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f8257610ef8816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000610f8d336107dc565b90506000811115611079576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061102a3382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e049092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111196112a7565b61118b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a5481565b600061126042600954611ed5565b905090565b600d6020528060005260406000206000915090505481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112ea611dfc565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b3361130f6116cf565b600c8190555061131d611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ea57611360816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b61146982611eee565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6000806116da61099f565b14156116ea57600c549050611764565b6117616117506116f861099f565b611742670de0b6b3a7640000611734600a54611726600b54611718611252565b611b5b90919063ffffffff16565b611ba590919063ffffffff16565b611ba590919063ffffffff16565b611c2b90919063ffffffff16565b600c54611c7590919063ffffffff16565b90505b90565b600c5481565b61177e611779336110c8565b6109e6565b611786610e9e565b565b60095481565b6117966112a7565b611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61181181611fef565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b806118696116cf565b600c81905550611877611252565b600b81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611944576118ba816107dc565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119ed5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000611a6a836107dc565b90506000811115611b56576000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b078382600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e049092919063ffffffff16565b8273ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b505050565b6000611b9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612135565b905092915050565b600080831415611bb85760009050611c25565b6000828402905082848281611bc957fe5b0414611c20576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126b76021913960400191505060405180910390fd5b809150505b92915050565b6000611c6d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121f5565b905092915050565b600080828401905083811015611cf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611d1281600154611b5b90919063ffffffff16565b600181905550611d6a81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b5b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611df933826000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e049092919063ffffffff16565b50565b600033905090565b611ed0838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506122bb565b505050565b6000818310611ee45781611ee6565b825b905092915050565b611f0381600154611c7590919063ffffffff16565b600181905550611f5b81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c7590919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fec3330836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612506909392919063ffffffff16565b50565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612075576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126586026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008383111582906121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121a757808201518184015260208101905061218c565b50505050905090810190601f1680156121d45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906122a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561226657808201518184015260208101905061224b565b50505050905090810190601f1680156122935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816122ad57fe5b049050809150509392505050565b6122da8273ffffffffffffffffffffffffffffffffffffffff1661260c565b61234c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b6020831061239b5780518252602082019150602081019050602083039250612378565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146123fd576040519150601f19603f3d011682016040523d82523d6000602084013e612402565b606091505b50915091508161247a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156125005780806020019051602081101561249957600080fd5b81019080805190602001909291905050506124ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806126f9602a913960400191505060405180910390fd5b5b50505050565b612606848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506122bb565b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b821415801561264e5750808214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373746865206e6f746966696564207265776172642063616e6e6f7420696e766f6b65206d756c7469706c69636174696f6e206f766572666c6f77536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820022daf38a1d00ed8b8b57e7f2fa9642c205196077017f5510890be6180956fd564736f6c63430005100032
Deployed Bytecode Sourcemap
19046:6885:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19046:6885:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22379:265;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22379:265:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19735:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19735:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17535:161;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17535:161:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19296:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18143:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25714:214;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23237:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23237:203:0;;;;;;;;;;;;;;;;;:::i;:::-;;24931:771;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24931:771:0;;;;;;;;;;;;;;;;;:::i;:::-;;24391:292;;;:::i;:::-;;19391:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17969:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18289:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18289:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7451:140;;;:::i;:::-;;19557:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21094:131;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19671:57;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19671:57:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6640:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7006:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22846:191;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22846:191:0;;;;;;;;;;;;;;;;;:::i;:::-;;21233:141;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21233:141:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21382:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21382:135:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19593:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21682:420;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19629:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23531:97;;;:::i;:::-;;19452:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7746:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7746:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19423:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19194:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23925:387;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23925:387:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22379:265;22433:7;22473:163;22619:7;:16;22627:7;22619:16;;;;;;;;;;;;;;;;22473:123;22591:4;22473:95;22514:53;22535:22;:31;22558:7;22535:31;;;;;;;;;;;;;;;;22514:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;22473:18;22483:7;22473:9;:18::i;:::-;:40;;:95;;;;:::i;:::-;:117;;:123;;;;:::i;:::-;:145;;:163;;;;:::i;:::-;22453:183;;22379:265;;;:::o;19735:42::-;;;;;;;;;;;;;;;;;:::o;17535:161::-;6852:9;:7;:9::i;:::-;6844:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17669:19;17648:18;;:40;;;;;;;;;;;;;;;;;;17535:161;:::o;19296:23::-;;;;:::o;18143:91::-;18187:7;18214:12;;18207:19;;18143:91;:::o;25714:214::-;25764:7;25805:1;25788:13;:11;:13::i;:::-;:18;25784:137;;;25830:10;;25823:17;;;;25784:137;25880:29;25895:13;:11;:13::i;:::-;25880:10;;:14;;:29;;;;:::i;:::-;25873:36;;25714:214;;:::o;23237:203::-;23291:10;20295:16;:14;:16::i;:::-;20272:20;:39;;;;20339:26;:24;:26::i;:::-;20322:14;:43;;;;20399:1;20380:21;;:7;:21;;;20376:157;;20437:15;20444:7;20437:6;:15::i;:::-;20418:7;:16;20426:7;20418:16;;;;;;;;;;;;;;;:34;;;;20501:20;;20467:22;:31;20490:7;20467:31;;;;;;;;;;;;;;;:54;;;;20376:157;23331:1;23322:6;:10;23314:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23365:22;23380:6;23365:14;:22::i;:::-;23413:10;23403:29;;;23425:6;23403:29;;;;;;;;;;;;;;;;;;23237:203;;:::o;24931:771::-;17451:18;;;;;;;;;;;17435:34;;:12;:10;:12::i;:::-;:34;;;17427:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25055:1;20295:16;:14;:16::i;:::-;20272:20;:39;;;;20339:26;:24;:26::i;:::-;20322:14;:43;;;;20399:1;20380:21;;:7;:21;;;20376:157;;20437:15;20444:7;20437:6;:15::i;:::-;20418:7;:16;20426:7;20418:16;;;;;;;;;;;;;;;:34;;;;20501:20;;20467:22;:31;20490:7;20467:31;;;;;;;;;;;;;;;:54;;;;20376:157;25179:4;25173:2;25168:15;;;;;;25159:6;:24;25151:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25281:12;;25262:15;:31;25258:304;;25323:20;25334:8;;25323:6;:10;;:20;;;;:::i;:::-;25310:10;:33;;;;25258:304;;;25376:17;25396:33;25413:15;25396:12;;:16;;:33;;;;:::i;:::-;25376:53;;25444:16;25463:25;25477:10;;25463:9;:13;;:25;;;;:::i;:::-;25444:44;;25516:34;25541:8;;25516:20;25527:8;25516:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;25503:10;:47;;;;25258:304;;;25589:15;25572:14;:32;;;;25630:29;25650:8;;25630:15;:19;;:29;;;;:::i;:::-;25615:12;:44;;;;25675:19;25687:6;25675:19;;;;;;;;;;;;;;;;;;17518:1;24931:771;:::o;24391:292::-;24432:10;20295:16;:14;:16::i;:::-;20272:20;:39;;;;20339:26;:24;:26::i;:::-;20322:14;:43;;;;20399:1;20380:21;;:7;:21;;;20376:157;;20437:15;20444:7;20437:6;:15::i;:::-;20418:7;:16;20426:7;20418:16;;;;;;;;;;;;;;;:34;;;;20501:20;;20467:22;:31;20490:7;20467:31;;;;;;;;;;;;;;;:54;;;;20376:157;24455:14;24472:18;24479:10;24472:6;:18::i;:::-;24455:35;;24514:1;24505:6;:10;24501:175;;;24554:1;24532:7;:19;24540:10;24532:19;;;;;;;;;;;;;;;:23;;;;24570:44;24595:10;24607:6;24570:11;;;;;;;;;;;:24;;;;:44;;;;;:::i;:::-;24645:10;24634:30;;;24657:6;24634:30;;;;;;;;;;;;;;;;;;24501:175;20543:1;24391:292;:::o;19391:25::-;;;;;;;;;;;;;:::o;17969:21::-;;;;;;;;;;;;;:::o;18289:110::-;18346:7;18373:9;:18;18383:7;18373:18;;;;;;;;;;;;;;;;18366:25;;18289:110;;;:::o;7451:140::-;6852:9;:7;:9::i;:::-;6844:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7550:1;7513:40;;7534:6;;;;;;;;;;;7513:40;;;;;;;;;;;;7581:1;7564:6;;:19;;;;;;;;;;;;;;;;;;7451:140::o;19557:29::-;;;;:::o;21094:131::-;21151:7;21178:39;21187:15;21204:12;;21178:8;:39::i;:::-;21171:46;;21094:131;:::o;19671:57::-;;;;;;;;;;;;;;;;;:::o;6640:79::-;6678:7;6705:6;;;;;;;;;;;6698:13;;6640:79;:::o;7006:94::-;7046:4;7086:6;;;;;;;;;;;7070:22;;:12;:10;:12::i;:::-;:22;;;7063:29;;7006:94;:::o;22846:191::-;22897:10;20295:16;:14;:16::i;:::-;20272:20;:39;;;;20339:26;:24;:26::i;:::-;20322:14;:43;;;;20399:1;20380:21;;:7;:21;;;20376:157;;20437:15;20444:7;20437:6;:15::i;:::-;20418:7;:16;20426:7;20418:16;;;;;;;;;;;;;;;:34;;;;20501:20;;20467:22;:31;20490:7;20467:31;;;;;;;;;;;;;;;:54;;;;20376:157;22937:1;22928:6;:10;22920:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22968:19;22980:6;22968:11;:19::i;:::-;23010:10;23003:26;;;23022:6;23003:26;;;;;;;;;;;;;;;;;;22846:191;;:::o;21233:141::-;21312:10;;;;;;;;;;;21298:24;;:10;:24;;;21290:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21362:4;21349:10;;:17;;;;;;;;;;;;;;;;;;21233:141;:::o;21382:135::-;21458:10;;;;;;;;;;;21444:24;;:10;:24;;;21436:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21503:6;21495:5;;:14;;;;;;;;;;;;;;;;;;21382:135;:::o;19593:29::-;;;;:::o;21682:420::-;21729:7;21770:1;21753:13;:11;:13::i;:::-;:18;21749:78;;;21795:20;;21788:27;;;;21749:78;21857:237;21900:179;22065:13;:11;:13::i;:::-;21900:138;22033:4;21900:106;21995:10;;21900:68;21953:14;;21900:26;:24;:26::i;:::-;:52;;:68;;;;:::i;:::-;:94;;:106;;;;:::i;:::-;:132;;:138;;;;:::i;:::-;:164;;:179;;;;:::i;:::-;21857:20;;:24;;:237;;;;:::i;:::-;21837:257;;21682:420;;:::o;19629:35::-;;;;:::o;23531:97::-;23567:31;23576:21;23586:10;23576:9;:21::i;:::-;23567:8;:31::i;:::-;23609:11;:9;:11::i;:::-;23531:97::o;19452:31::-;;;;:::o;7746:109::-;6852:9;:7;:9::i;:::-;6844:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7819:28;7838:8;7819:18;:28::i;:::-;7746:109;:::o;19423:20::-;;;;;;;;;;;;;:::o;19194:25::-;;;;;;;;;;;;;:::o;23925:387::-;23984:9;20295:16;:14;:16::i;:::-;20272:20;:39;;;;20339:26;:24;:26::i;:::-;20322:14;:43;;;;20399:1;20380:21;;:7;:21;;;20376:157;;20437:15;20444:7;20437:6;:15::i;:::-;20418:7;:16;20426:7;20418:16;;;;;;;;;;;;;;;:34;;;;20501:20;;20467:22;:31;20490:7;20467:31;;;;;;;;;;;;;;;:54;;;;20376:157;24028:10;;;;;;;;;;;24014:24;;:10;:24;;;:47;;;;24056:5;;;;;;;;;;;24042:19;;:10;:19;;;24014:47;24006:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24088:14;24105:17;24112:9;24105:6;:17::i;:::-;24088:34;;24146:1;24137:6;:10;24133:172;;;24185:1;24164:7;:18;24172:9;24164:18;;;;;;;;;;;;;;;:22;;;;24201:43;24226:9;24237:6;24201:11;;;;;;;;;;;:24;;;;:43;;;;;:::i;:::-;24275:9;24264:29;;;24286:6;24264:29;;;;;;;;;;;;;;;;;;24133:172;20543:1;23925:387;;:::o;1434:136::-;1492:7;1519:43;1523:1;1526;1519:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1512:50;;1434:136;;;;:::o;2350:471::-;2408:7;2658:1;2653;:6;2649:47;;;2683:1;2676:8;;;;2649:47;2708:9;2724:1;2720;:5;2708:17;;2753:1;2748;2744;:5;;;;;;:10;2736:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2812:1;2805:8;;;2350:471;;;;;:::o;3289:132::-;3347:7;3374:39;3378:1;3381;3374:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3367:46;;3289:132;;;;:::o;978:181::-;1036:7;1056:9;1072:1;1068;:5;1056:17;;1097:1;1092;:6;;1084:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150:1;1143:8;;;978:181;;;;:::o;18649:218::-;18716:24;18733:6;18716:12;;:16;;:24;;;;:::i;:::-;18701:12;:39;;;;18775:33;18801:6;18775:9;:21;18785:10;18775:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;18751:9;:21;18761:10;18751:21;;;;;;;;;;;;;;;:57;;;;18819:40;18840:10;18852:6;18819:7;;;;;;;;;;;:20;;;;:40;;;;;:::i;:::-;18649:218;:::o;5844:98::-;5889:15;5924:10;5917:17;;5844:98;:::o;13913:176::-;13996:85;14015:5;14045;:14;;;:23;;;;14070:2;14074:5;14022:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14022: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;;;14022:58:0;13996:18;:85::i;:::-;13913:176;;;:::o;298:106::-;356:7;387:1;383;:5;:13;;395:1;383:13;;;391:1;383:13;376:20;;298:106;;;;:::o;18407:234::-;18471:24;18488:6;18471:12;;:16;;:24;;;;:::i;:::-;18456:12;:39;;;;18530:33;18556:6;18530:9;:21;18540:10;18530:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;18506:9;:21;18516:10;18506:21;;;;;;;;;;;;;;;:57;;;;18574:59;18599:10;18619:4;18626:6;18574:7;;;;;;;;;;;:24;;;;:59;;;;;;:::i;:::-;18407:234;:::o;7961:229::-;8055:1;8035:22;;:8;:22;;;;8027:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8145:8;8116:38;;8137:6;;;;;;;;;;;8116:38;;;;;;;;;;;;8174:8;8165:6;;:17;;;;;;;;;;;;;;;;;;7961:229;:::o;1907:192::-;1993:7;2026:1;2021;:6;;2029:12;2013: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;2013:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2053:9;2069:1;2065;:5;2053:17;;2090:1;2083:8;;;1907:192;;;;;:::o;3951:345::-;4037:7;4136:1;4132;:5;4139:12;4124: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;4124:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4163:9;4179:1;4175;:5;;;;;;4163:17;;4287:1;4280:8;;;3951:345;;;;;:::o;15952:1114::-;16556:27;16564:5;16556:25;;;:27::i;:::-;16548:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16693:12;16707:23;16742:5;16734:19;;16754:4;16734: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;;;16734: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;;16692:67:0;;;;16778:7;16770:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16859:1;16839:10;:17;:21;16835:224;;;16981:10;16970:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16970:30:0;;;;;;;;;;;;;;;;16962:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16835:224;15952:1114;;;;:::o;14097:204::-;14198:95;14217:5;14247;:18;;;:27;;;;14276:4;14282:2;14286:5;14224:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14224: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;;;14224:68:0;14198:18;:95::i;:::-;14097:204;;;;:::o;11312:810::-;11372:4;11825:16;11852:19;11874:66;11852:88;;;;12043:7;12031:20;12019:32;;12083:3;12071:15;;:8;:15;;:42;;;;;12102:11;12090:8;:23;;12071:42;12063:51;;;;11312:810;;;:::o
Swarm Source
bzzr://022daf38a1d00ed8b8b57e7f2fa9642c205196077017f5510890be6180956fd5
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.