More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 822 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exit | 10894075 | 1517 days ago | IN | 0 ETH | 0.02213002 | ||||
Exit | 10893574 | 1517 days ago | IN | 0 ETH | 0.02328162 | ||||
Exit | 10892810 | 1517 days ago | IN | 0 ETH | 0.02154335 | ||||
Get Reward | 10892256 | 1517 days ago | IN | 0 ETH | 0.01099593 | ||||
Exit | 10890904 | 1517 days ago | IN | 0 ETH | 0.02498272 | ||||
Exit | 10890549 | 1517 days ago | IN | 0 ETH | 0.029568 | ||||
Exit | 10890037 | 1517 days ago | IN | 0 ETH | 0.01552756 | ||||
Get Reward | 10889573 | 1517 days ago | IN | 0 ETH | 0.01812806 | ||||
Stake | 10889184 | 1517 days ago | IN | 0 ETH | 0.02151344 | ||||
Stake | 10888293 | 1517 days ago | IN | 0 ETH | 0.03064169 | ||||
Get Reward | 10887248 | 1518 days ago | IN | 0 ETH | 0.04923738 | ||||
Exit | 10883439 | 1518 days ago | IN | 0 ETH | 0.03235606 | ||||
Exit | 10883246 | 1518 days ago | IN | 0 ETH | 0.031428 | ||||
Get Reward | 10882612 | 1518 days ago | IN | 0 ETH | 0.0432666 | ||||
Exit | 10881382 | 1518 days ago | IN | 0 ETH | 0.087261 | ||||
Get Reward | 10875893 | 1519 days ago | IN | 0 ETH | 0.01063736 | ||||
Stake | 10875364 | 1519 days ago | IN | 0 ETH | 0.0094015 | ||||
Stake | 10875053 | 1519 days ago | IN | 0 ETH | 0.0147473 | ||||
Stake | 10874233 | 1520 days ago | IN | 0 ETH | 0.02031007 | ||||
Stake | 10873776 | 1520 days ago | IN | 0 ETH | 0.01815776 | ||||
Stake | 10873745 | 1520 days ago | IN | 0 ETH | 0.02218375 | ||||
Get Reward | 10873424 | 1520 days ago | IN | 0 ETH | 0.01661341 | ||||
Set Next Reward ... | 10872391 | 1520 days ago | IN | 0 ETH | 0.00148186 | ||||
Get Reward | 10872182 | 1520 days ago | IN | 0 ETH | 0.01685175 | ||||
Exit | 10870221 | 1520 days ago | IN | 0 ETH | 0.022194 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ULURewardsLINKPool
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-04 */ /** * * https://ulu.finance * * $$\ $$\ $$\ $$\ $$\ * $$ | $$ |$$ | $$ | $$ | * $$ | $$ |$$ | $$ | $$ | * $$ | $$ |$$ | $$ | $$ | * $$ | $$ |$$ | $$ | $$ | * $$ | $$ |$$ | $$ | $$ | * \$$$$$$ |$$$$$$$$\\$$$$$$ | * \______/ \________|\______/ * * Universal Liquidity Union * * https://ulu.finance * **/ /* ____ __ __ __ _ / __/__ __ ___ / /_ / / ___ / /_ (_)__ __ _\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ / /___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\ /___/ * Synthetix: YFIRewards.sol * * 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, uint amount) external; function burn(uint 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 public rewardReferral; function notifyRewardAmount(uint256 reward) external; function setRewardReferral(address _rewardReferral) external onlyOwner { rewardReferral = _rewardReferral; } } // File: contracts/CurveRewards.sol pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; using Address for address; IERC20 public y = IERC20(0x5E7967eeCD8828f5c50b5d1892dA091FB797eCb6); 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 tokenStake(uint256 amount) internal { address sender = msg.sender; require(!address(sender).isContract(), "Andre, we are farming in peace, go harvest somewhere else sir."); require(tx.origin == sender, "Andre, stahp."); _totalSupply = _totalSupply.add(amount); _balances[sender] = _balances[sender].add(amount); y.safeTransferFrom(sender, address(this), amount); } function tokenWithdraw(uint256 amount) internal { _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); y.safeTransfer(msg.sender, amount); } } interface IULUReferral { function setReferrer(address farmer, address referrer) external; function getReferrer(address farmer) external view returns (address); } contract ULURewardsLINKPool is LPTokenWrapper, IRewardDistributionRecipient { IERC20 public yfv = IERC20(0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4); uint256 public constant DURATION = 7 days; uint8 public constant NUMBER_EPOCHS = 10; uint256 public constant REFERRAL_COMMISSION_PERCENT = 5; uint256 public constant EPOCH_REWARD = 2100 ether; uint256 public constant TOTAL_REWARD = EPOCH_REWARD * NUMBER_EPOCHS; uint256 public currentEpochReward = EPOCH_REWARD; uint256 public totalAccumulatedReward = 0; uint8 public currentEpoch = 0; uint256 public starttime = 1599310800; // Saturday, September 5, 2020 13:00:00 PM (GMT+0) uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; mapping(address => uint256) public accumulatedStakingPower; // will accumulate every time staker does getReward() uint public nextRewardMultiplier = 75; // 0% -> 200% event RewardAdded(uint256 reward); event Burned(uint256 reward); event Staked(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RewardPaid(address indexed user, uint256 reward); event CommissionPaid(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 setNextRewardMultiplier(uint _nextRewardMultiplier) public onlyOwner { require(_nextRewardMultiplier <= 200); nextRewardMultiplier = _nextRewardMultiplier; } 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) { uint256 calculatedEarned = balanceOf(account) .mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e18) .add(rewards[account]); uint256 poolBalance = yfv.balanceOf(address(this)); // some rare case the reward can be slightly bigger than real number, we need to check against how much we have left in pool if (calculatedEarned > poolBalance) return poolBalance; return calculatedEarned; } function stakingPower(address account) public view returns (uint256) { return accumulatedStakingPower[account].add(earned(account)); } function stake(uint256 amount, address referrer) public updateReward(msg.sender) checkNextEpoch checkStart { require(amount > 0, "Cannot stake 0"); require(referrer != msg.sender, "You cannot refer yourself."); super.tokenStake(amount); emit Staked(msg.sender, amount); if (rewardReferral != address(0) && referrer != address(0)) { IULUReferral(rewardReferral).setReferrer(msg.sender, referrer); } } function withdraw(uint256 amount) public updateReward(msg.sender) checkNextEpoch checkStart { require(amount > 0, "Cannot withdraw 0"); super.tokenWithdraw(amount); emit Withdrawn(msg.sender, amount); } function exit() external { withdraw(balanceOf(msg.sender)); getReward(); } function getReward() public updateReward(msg.sender) checkNextEpoch checkStart returns (uint256) { uint256 reward = earned(msg.sender); if (reward > 1) { accumulatedStakingPower[msg.sender] = accumulatedStakingPower[msg.sender].add(rewards[msg.sender]); rewards[msg.sender] = 0; uint256 actualPaid = reward.mul(100 - REFERRAL_COMMISSION_PERCENT).div(100); // 95% uint256 commission = reward - actualPaid; // 5% yfv.safeTransfer(msg.sender, actualPaid); emit RewardPaid(msg.sender, actualPaid); address referrer = address(0); if (rewardReferral != address(0)) { referrer = IULUReferral(rewardReferral).getReferrer(msg.sender); } if (referrer != address(0)) { // send commission to referrer yfv.safeTransfer(referrer, commission); emit CommissionPaid(referrer, commission); } else {// or burn yfv.burn(commission); emit Burned(commission); } return actualPaid; } return 0; } modifier checkNextEpoch() { if (block.timestamp >= periodFinish) { currentEpochReward = currentEpochReward.mul(nextRewardMultiplier).div(100); // x0.00 -> x2.00 if (totalAccumulatedReward.add(currentEpochReward) > TOTAL_REWARD) { currentEpochReward = TOTAL_REWARD.sub(totalAccumulatedReward); // limit total reward } if (currentEpochReward > 0) { yfv.mint(address(this), currentEpochReward); totalAccumulatedReward = totalAccumulatedReward.add(currentEpochReward); currentEpoch++; } rewardRate = currentEpochReward.div(DURATION); lastUpdateTime = block.timestamp; periodFinish = block.timestamp.add(DURATION); emit RewardAdded(currentEpochReward); } _; } modifier checkStart() { require(block.timestamp > starttime, "not start"); require(periodFinish > 0, "Pool has not started"); _; } function notifyRewardAmount(uint256 reward) external onlyOwner updateReward(address(0)) { require(periodFinish == 0, "Only can call once to start staking"); currentEpochReward = reward; if (totalAccumulatedReward.add(currentEpochReward) > TOTAL_REWARD) { currentEpochReward = TOTAL_REWARD.sub(totalAccumulatedReward); // limit total reward } rewardRate = currentEpochReward.div(DURATION); yfv.mint(address(this), currentEpochReward); totalAccumulatedReward = totalAccumulatedReward.add(currentEpochReward); currentEpoch++; lastUpdateTime = block.timestamp; periodFinish = block.timestamp.add(DURATION); emit RewardAdded(currentEpochReward); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"CommissionPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":"REFERRAL_COMMISSION_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"accumulatedStakingPower","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":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":true,"inputs":[],"name":"nextRewardMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"rewardReferral","outputs":[{"internalType":"address","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":"uint256","name":"_nextRewardMultiplier","type":"uint256"}],"name":"setNextRewardMultiplier","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardReferral","type":"address"}],"name":"setRewardReferral","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"stakingPower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":[{"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":"y","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"yfv","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600080546001600160a01b0319908116735e7967eecd8828f5c50b5d1892da091fb797ecb61782556005805490911673035bfe6057e15ea692c0dfdcab3bb41a64dd2ad41790556871d75ab9b92050000060065560078190556008805460ff19169055635f538bd0600955600a819055600b55604b60115561008d6001600160e01b036100de16565b600380546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36100e2565b3390565b611fa2806100f16000396000f3fe608060405234801561001057600080fd5b50600436106102255760003560e01c80637acb775711610130578063c8333bb2116100b8578063e9b46e6d1161007c578063e9b46e6d1461047d578063e9fad8ee146104a3578063ebe2b12b146104ab578063f2fde38b146104b3578063ffe48902146104d957610225565b8063c8333bb214610455578063c8f33c911461045d578063cd3daf9d14610465578063df136d651461046d578063e68e035b1461047557610225565b80638b876347116100ff5780638b876347146103fb5780638da58897146104215780638da5cb5b146104295780638f32d59b14610431578063a56dfe4a1461044d57610225565b80637acb7757146103a25780637b0a47ee146103ce57806380faa57d146103d657806381376db4146103de57610225565b80632e1a7d4d116101b357806353220a421161018257806353220a421461035c57806370a0823114610364578063715018a61461038a5780637318a73014610392578063766718081461039a57610225565b80632e1a7d4d146103125780632e329bd31461032f5780633c6b16ab146103375780633d18b9121461035457610225565b80630fcfc6a8116101fa5780630fcfc6a8146102d457806313eb6c88146102f257806318160ddd146102fa5780631be0528914610302578063207e821d1461030a57610225565b80622dcfb91461022a5780628cc262146102525780630700037d1461028a5780630cdb43c4146102b0575b600080fd5b6102506004803603602081101561024057600080fd5b50356001600160a01b03166104ff565b005b6102786004803603602081101561026857600080fd5b50356001600160a01b0316610568565b60408051918252519081900360200190f35b610278600480360360208110156102a057600080fd5b50356001600160a01b0316610682565b6102b8610694565b604080516001600160a01b039092168252519081900360200190f35b6102dc6106a3565b6040805160ff9092168252519081900360200190f35b6102786106a8565b6102786106b5565b6102786106bc565b6102786106c3565b6102506004803603602081101561032857600080fd5b50356106c9565b6102786109b0565b6102506004803603602081101561034d57600080fd5b50356109b6565b610278610bdd565b6102786110ba565b6102786004803603602081101561037a57600080fd5b50356001600160a01b03166110bf565b6102506110da565b6102b861116b565b6102dc61117a565b610250600480360360408110156103b857600080fd5b50803590602001356001600160a01b0316611183565b61027861155b565b610278611561565b610250600480360360208110156103f457600080fd5b5035611574565b6102786004803603602081101561041157600080fd5b50356001600160a01b03166115ce565b6102786115e0565b6102b86115e6565b6104396115f5565b604080519115158252519081900360200190f35b6102b861161b565b61027861162a565b610278611638565b61027861163e565b610278611692565b610278611698565b6102786004803603602081101561049357600080fd5b50356001600160a01b031661169e565b6102506116b0565b6102786116cc565b610250600480360360208110156104c957600080fd5b50356001600160a01b03166116d2565b610278600480360360208110156104ef57600080fd5b50356001600160a01b0316611722565b6105076115f5565b610546576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600f6020908152604080832054600e90925282205482916105e9916105dd90670de0b6b3a7640000906105d1906105bc906105b061163e565b9063ffffffff61175b16565b6105c5896110bf565b9063ffffffff6117a416565b9063ffffffff6117fd16565b9063ffffffff61183f16565b600554604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561063a57600080fd5b505afa15801561064e573d6000803e3d6000fd5b505050506040513d602081101561066457600080fd5b505190508082111561067957915061067d9050565b5090505b919050565b600f6020526000908152604090205481565b6004546001600160a01b031681565b600a81565b6871d75ab9b92050000081565b6001545b90565b62093a8081565b60075481565b336106d261163e565b600d556106dd611561565b600c556001600160a01b03811615610724576106f881610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a5442106108945761074960646105d16011546006546117a490919063ffffffff16565b6006819055600754690472698b413b432000009161076d919063ffffffff61183f16565b11156107955760075461079190690472698b413b432000009063ffffffff61175b16565b6006555b6006541561083b57600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156107f357600080fd5b505af1158015610807573d6000803e3d6000fd5b50506006546007546108219350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff199091161790555b6006546108519062093a8063ffffffff6117fd16565b600b5542600c81905561086d9062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15b60095442116108d6576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600a5411610924576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000821161096d576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61097682611899565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60115481565b6109be6115f5565b6109fd576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b6000610a0761163e565b600d55610a12611561565b600c556001600160a01b03811615610a5957610a2d81610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a5415610a985760405162461bcd60e51b8152600401808060200182810382526023815260200180611f4b6023913960400191505060405180910390fd5b6006829055600754690472698b413b4320000090610abc908463ffffffff61183f16565b1115610ae457600754610ae090690472698b413b432000009063ffffffff61175b16565b6006555b600654610afa9062093a8063ffffffff6117fd16565b600b55600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610b5357600080fd5b505af1158015610b67573d6000803e3d6000fd5b5050600654600754610b819350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff1990911617905542600c819055610bb39062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15050565b600033610be861163e565b600d55610bf3611561565b600c556001600160a01b03811615610c3a57610c0e81610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a544210610daa57610c5f60646105d16011546006546117a490919063ffffffff16565b6006819055600754690472698b413b4320000091610c83919063ffffffff61183f16565b1115610cab57600754610ca790690472698b413b432000009063ffffffff61175b16565b6006555b60065415610d5157600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610d0957600080fd5b505af1158015610d1d573d6000803e3d6000fd5b5050600654600754610d379350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff199091161790555b600654610d679062093a8063ffffffff6117fd16565b600b5542600c819055610d839062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15b6009544211610dec576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600a5411610e3a576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000610e4533610568565b905060018111156110b057336000908152600f6020908152604080832054601090925290912054610e7b9163ffffffff61183f16565b33600090815260106020908152604080832093909355600f9052908120819055610eb160646105d184605f63ffffffff6117a416565b60055490915081830390610ed5906001600160a01b0316338463ffffffff6118f616565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a26004546000906001600160a01b031615610f9a576004805460408051634a9fefc760e01b81523393810193909352516001600160a01b0390911691634a9fefc7916024808301926020929190829003018186803b158015610f6b57600080fd5b505afa158015610f7f573d6000803e3d6000fd5b505050506040513d6020811015610f9557600080fd5b505190505b6001600160a01b0381161561100a57600554610fc6906001600160a01b0316828463ffffffff6118f616565b6040805183815290516001600160a01b038316917f885e6f6235626292940f78c947a331f4c7c1d7f50a48b38092cf546bc9c7907a919081900360200190a26110a4565b60055460408051630852cd8d60e31b81526004810185905290516001600160a01b03909216916342966c689160248082019260009290919082900301818387803b15801561105757600080fd5b505af115801561106b573d6000803e3d6000fd5b50506040805185815290517fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e9350908190036020019150a15b829550505050506110b6565b60009250505b5090565b600581565b6001600160a01b031660009081526002602052604090205490565b6110e26115f5565b611121576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6005546001600160a01b031681565b60085460ff1681565b3361118c61163e565b600d55611197611561565b600c556001600160a01b038116156111de576111b281610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a54421061134e5761120360646105d16011546006546117a490919063ffffffff16565b6006819055600754690472698b413b4320000091611227919063ffffffff61183f16565b111561124f5760075461124b90690472698b413b432000009063ffffffff61175b16565b6006555b600654156112f557600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156112ad57600080fd5b505af11580156112c1573d6000803e3d6000fd5b50506006546007546112db9350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff199091161790555b60065461130b9062093a8063ffffffff6117fd16565b600b5542600c8190556113279062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15b6009544211611390576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600a54116113de576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b60008311611424576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6001600160a01b038216331415611482576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420726566657220796f757273656c662e000000000000604482015290519081900360640190fd5b61148b83611948565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a26004546001600160a01b0316158015906114e357506001600160a01b03821615155b1561155657600480546040805163bbddaca360e01b815233938101939093526001600160a01b038581166024850152905191169163bbddaca391604480830192600092919082900301818387803b15801561153d57600080fd5b505af1158015611551573d6000803e3d6000fd5b505050505b505050565b600b5481565b600061156f42600a54611a50565b905090565b61157c6115f5565b6115bb576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b60c88111156115c957600080fd5b601155565b600e6020526000908152604090205481565b60095481565b6003546001600160a01b031690565b6003546000906001600160a01b031661160c611a66565b6001600160a01b031614905090565b6000546001600160a01b031681565b690472698b413b4320000081565b600c5481565b60006116486106b5565b6116555750600d546106b9565b61156f6116836116636106b5565b6105d1670de0b6b3a76400006105c5600b546105c5600c546105b0611561565b600d549063ffffffff61183f16565b600d5481565b60065481565b60106020526000908152604090205481565b6116c16116bc336110bf565b6106c9565b6116c9610bdd565b50565b600a5481565b6116da6115f5565b611719576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b6116c981611a6a565b600061175561173083610568565b6001600160a01b0384166000908152601060205260409020549063ffffffff61183f16565b92915050565b600061179d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b0b565b9392505050565b6000826117b357506000611755565b828202828482816117c057fe5b041461179d5760405162461bcd60e51b8152600401808060200182810382526021815260200180611ee06021913960400191505060405180910390fd5b600061179d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ba2565b60008282018381101561179d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546118ac908263ffffffff61175b16565b600155336000908152600260205260409020546118cf908263ffffffff61175b16565b3360008181526002602052604081209290925590546116c9916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611556908490611c07565b3361195281611dc5565b1561198e5760405162461bcd60e51b815260040180806020018281038252603e815260200180611e5c603e913960400191505060405180910390fd5b326001600160a01b038216146119db576040805162461bcd60e51b815260206004820152600d60248201526c20b7323932961039ba30b4381760991b604482015290519081900360640190fd5b6001546119ee908363ffffffff61183f16565b6001556001600160a01b038116600090815260026020526040902054611a1a908363ffffffff61183f16565b6001600160a01b038083166000908152600260205260408120929092559054611a4c911682308563ffffffff611e0116565b5050565b6000818310611a5f578161179d565b5090919050565b3390565b6001600160a01b038116611aaf5760405162461bcd60e51b8152600401808060200182810382526026815260200180611e9a6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008184841115611b9a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b5f578181015183820152602001611b47565b50505050905090810190601f168015611b8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611bf15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b5f578181015183820152602001611b47565b506000838581611bfd57fe5b0495945050505050565b611c19826001600160a01b0316611dc5565b611c6a576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611ca85780518252601f199092019160209182019101611c89565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d0a576040519150601f19603f3d011682016040523d82523d6000602084013e611d0f565b606091505b509150915081611d66576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611dbf57808060200190516020811015611d8257600080fd5b5051611dbf5760405162461bcd60e51b815260040180806020018281038252602a815260200180611f21602a913960400191505060405180910390fd5b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590611df95750808214155b949350505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611dbf908590611c0756fe416e6472652c20776520617265206661726d696e6720696e2070656163652c20676f206861727665737420736f6d65776865726520656c7365207369722e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373de88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644f6e6c792063616e2063616c6c206f6e636520746f207374617274207374616b696e67a265627a7a723158203ea87aa3b41e66cce54c4b92545d7d0fcc4e3869935c4765ea4da4dd97dff5f364736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102255760003560e01c80637acb775711610130578063c8333bb2116100b8578063e9b46e6d1161007c578063e9b46e6d1461047d578063e9fad8ee146104a3578063ebe2b12b146104ab578063f2fde38b146104b3578063ffe48902146104d957610225565b8063c8333bb214610455578063c8f33c911461045d578063cd3daf9d14610465578063df136d651461046d578063e68e035b1461047557610225565b80638b876347116100ff5780638b876347146103fb5780638da58897146104215780638da5cb5b146104295780638f32d59b14610431578063a56dfe4a1461044d57610225565b80637acb7757146103a25780637b0a47ee146103ce57806380faa57d146103d657806381376db4146103de57610225565b80632e1a7d4d116101b357806353220a421161018257806353220a421461035c57806370a0823114610364578063715018a61461038a5780637318a73014610392578063766718081461039a57610225565b80632e1a7d4d146103125780632e329bd31461032f5780633c6b16ab146103375780633d18b9121461035457610225565b80630fcfc6a8116101fa5780630fcfc6a8146102d457806313eb6c88146102f257806318160ddd146102fa5780631be0528914610302578063207e821d1461030a57610225565b80622dcfb91461022a5780628cc262146102525780630700037d1461028a5780630cdb43c4146102b0575b600080fd5b6102506004803603602081101561024057600080fd5b50356001600160a01b03166104ff565b005b6102786004803603602081101561026857600080fd5b50356001600160a01b0316610568565b60408051918252519081900360200190f35b610278600480360360208110156102a057600080fd5b50356001600160a01b0316610682565b6102b8610694565b604080516001600160a01b039092168252519081900360200190f35b6102dc6106a3565b6040805160ff9092168252519081900360200190f35b6102786106a8565b6102786106b5565b6102786106bc565b6102786106c3565b6102506004803603602081101561032857600080fd5b50356106c9565b6102786109b0565b6102506004803603602081101561034d57600080fd5b50356109b6565b610278610bdd565b6102786110ba565b6102786004803603602081101561037a57600080fd5b50356001600160a01b03166110bf565b6102506110da565b6102b861116b565b6102dc61117a565b610250600480360360408110156103b857600080fd5b50803590602001356001600160a01b0316611183565b61027861155b565b610278611561565b610250600480360360208110156103f457600080fd5b5035611574565b6102786004803603602081101561041157600080fd5b50356001600160a01b03166115ce565b6102786115e0565b6102b86115e6565b6104396115f5565b604080519115158252519081900360200190f35b6102b861161b565b61027861162a565b610278611638565b61027861163e565b610278611692565b610278611698565b6102786004803603602081101561049357600080fd5b50356001600160a01b031661169e565b6102506116b0565b6102786116cc565b610250600480360360208110156104c957600080fd5b50356001600160a01b03166116d2565b610278600480360360208110156104ef57600080fd5b50356001600160a01b0316611722565b6105076115f5565b610546576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600f6020908152604080832054600e90925282205482916105e9916105dd90670de0b6b3a7640000906105d1906105bc906105b061163e565b9063ffffffff61175b16565b6105c5896110bf565b9063ffffffff6117a416565b9063ffffffff6117fd16565b9063ffffffff61183f16565b600554604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561063a57600080fd5b505afa15801561064e573d6000803e3d6000fd5b505050506040513d602081101561066457600080fd5b505190508082111561067957915061067d9050565b5090505b919050565b600f6020526000908152604090205481565b6004546001600160a01b031681565b600a81565b6871d75ab9b92050000081565b6001545b90565b62093a8081565b60075481565b336106d261163e565b600d556106dd611561565b600c556001600160a01b03811615610724576106f881610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a5442106108945761074960646105d16011546006546117a490919063ffffffff16565b6006819055600754690472698b413b432000009161076d919063ffffffff61183f16565b11156107955760075461079190690472698b413b432000009063ffffffff61175b16565b6006555b6006541561083b57600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156107f357600080fd5b505af1158015610807573d6000803e3d6000fd5b50506006546007546108219350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff199091161790555b6006546108519062093a8063ffffffff6117fd16565b600b5542600c81905561086d9062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15b60095442116108d6576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600a5411610924576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000821161096d576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61097682611899565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60115481565b6109be6115f5565b6109fd576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b6000610a0761163e565b600d55610a12611561565b600c556001600160a01b03811615610a5957610a2d81610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a5415610a985760405162461bcd60e51b8152600401808060200182810382526023815260200180611f4b6023913960400191505060405180910390fd5b6006829055600754690472698b413b4320000090610abc908463ffffffff61183f16565b1115610ae457600754610ae090690472698b413b432000009063ffffffff61175b16565b6006555b600654610afa9062093a8063ffffffff6117fd16565b600b55600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610b5357600080fd5b505af1158015610b67573d6000803e3d6000fd5b5050600654600754610b819350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff1990911617905542600c819055610bb39062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15050565b600033610be861163e565b600d55610bf3611561565b600c556001600160a01b03811615610c3a57610c0e81610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a544210610daa57610c5f60646105d16011546006546117a490919063ffffffff16565b6006819055600754690472698b413b4320000091610c83919063ffffffff61183f16565b1115610cab57600754610ca790690472698b413b432000009063ffffffff61175b16565b6006555b60065415610d5157600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610d0957600080fd5b505af1158015610d1d573d6000803e3d6000fd5b5050600654600754610d379350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff199091161790555b600654610d679062093a8063ffffffff6117fd16565b600b5542600c819055610d839062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15b6009544211610dec576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600a5411610e3a576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000610e4533610568565b905060018111156110b057336000908152600f6020908152604080832054601090925290912054610e7b9163ffffffff61183f16565b33600090815260106020908152604080832093909355600f9052908120819055610eb160646105d184605f63ffffffff6117a416565b60055490915081830390610ed5906001600160a01b0316338463ffffffff6118f616565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a26004546000906001600160a01b031615610f9a576004805460408051634a9fefc760e01b81523393810193909352516001600160a01b0390911691634a9fefc7916024808301926020929190829003018186803b158015610f6b57600080fd5b505afa158015610f7f573d6000803e3d6000fd5b505050506040513d6020811015610f9557600080fd5b505190505b6001600160a01b0381161561100a57600554610fc6906001600160a01b0316828463ffffffff6118f616565b6040805183815290516001600160a01b038316917f885e6f6235626292940f78c947a331f4c7c1d7f50a48b38092cf546bc9c7907a919081900360200190a26110a4565b60055460408051630852cd8d60e31b81526004810185905290516001600160a01b03909216916342966c689160248082019260009290919082900301818387803b15801561105757600080fd5b505af115801561106b573d6000803e3d6000fd5b50506040805185815290517fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e9350908190036020019150a15b829550505050506110b6565b60009250505b5090565b600581565b6001600160a01b031660009081526002602052604090205490565b6110e26115f5565b611121576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6005546001600160a01b031681565b60085460ff1681565b3361118c61163e565b600d55611197611561565b600c556001600160a01b038116156111de576111b281610568565b6001600160a01b0382166000908152600f6020908152604080832093909355600d54600e909152919020555b600a54421061134e5761120360646105d16011546006546117a490919063ffffffff16565b6006819055600754690472698b413b4320000091611227919063ffffffff61183f16565b111561124f5760075461124b90690472698b413b432000009063ffffffff61175b16565b6006555b600654156112f557600554600654604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156112ad57600080fd5b505af11580156112c1573d6000803e3d6000fd5b50506006546007546112db9350915063ffffffff61183f16565b6007556008805460ff8082166001011660ff199091161790555b60065461130b9062093a8063ffffffff6117fd16565b600b5542600c8190556113279062093a8063ffffffff61183f16565b600a556006546040805191825251600080516020611ec08339815191529181900360200190a15b6009544211611390576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600a54116113de576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b60008311611424576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6001600160a01b038216331415611482576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420726566657220796f757273656c662e000000000000604482015290519081900360640190fd5b61148b83611948565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a26004546001600160a01b0316158015906114e357506001600160a01b03821615155b1561155657600480546040805163bbddaca360e01b815233938101939093526001600160a01b038581166024850152905191169163bbddaca391604480830192600092919082900301818387803b15801561153d57600080fd5b505af1158015611551573d6000803e3d6000fd5b505050505b505050565b600b5481565b600061156f42600a54611a50565b905090565b61157c6115f5565b6115bb576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b60c88111156115c957600080fd5b601155565b600e6020526000908152604090205481565b60095481565b6003546001600160a01b031690565b6003546000906001600160a01b031661160c611a66565b6001600160a01b031614905090565b6000546001600160a01b031681565b690472698b413b4320000081565b600c5481565b60006116486106b5565b6116555750600d546106b9565b61156f6116836116636106b5565b6105d1670de0b6b3a76400006105c5600b546105c5600c546105b0611561565b600d549063ffffffff61183f16565b600d5481565b60065481565b60106020526000908152604090205481565b6116c16116bc336110bf565b6106c9565b6116c9610bdd565b50565b600a5481565b6116da6115f5565b611719576040805162461bcd60e51b81526020600482018190526024820152600080516020611f01833981519152604482015290519081900360640190fd5b6116c981611a6a565b600061175561173083610568565b6001600160a01b0384166000908152601060205260409020549063ffffffff61183f16565b92915050565b600061179d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b0b565b9392505050565b6000826117b357506000611755565b828202828482816117c057fe5b041461179d5760405162461bcd60e51b8152600401808060200182810382526021815260200180611ee06021913960400191505060405180910390fd5b600061179d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ba2565b60008282018381101561179d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546118ac908263ffffffff61175b16565b600155336000908152600260205260409020546118cf908263ffffffff61175b16565b3360008181526002602052604081209290925590546116c9916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611556908490611c07565b3361195281611dc5565b1561198e5760405162461bcd60e51b815260040180806020018281038252603e815260200180611e5c603e913960400191505060405180910390fd5b326001600160a01b038216146119db576040805162461bcd60e51b815260206004820152600d60248201526c20b7323932961039ba30b4381760991b604482015290519081900360640190fd5b6001546119ee908363ffffffff61183f16565b6001556001600160a01b038116600090815260026020526040902054611a1a908363ffffffff61183f16565b6001600160a01b038083166000908152600260205260408120929092559054611a4c911682308563ffffffff611e0116565b5050565b6000818310611a5f578161179d565b5090919050565b3390565b6001600160a01b038116611aaf5760405162461bcd60e51b8152600401808060200182810382526026815260200180611e9a6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008184841115611b9a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b5f578181015183820152602001611b47565b50505050905090810190601f168015611b8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611bf15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b5f578181015183820152602001611b47565b506000838581611bfd57fe5b0495945050505050565b611c19826001600160a01b0316611dc5565b611c6a576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611ca85780518252601f199092019160209182019101611c89565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d0a576040519150601f19603f3d011682016040523d82523d6000602084013e611d0f565b606091505b509150915081611d66576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611dbf57808060200190516020811015611d8257600080fd5b5051611dbf5760405162461bcd60e51b815260040180806020018281038252602a815260200180611f21602a913960400191505060405180910390fd5b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590611df95750808214155b949350505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611dbf908590611c0756fe416e6472652c20776520617265206661726d696e6720696e2070656163652c20676f206861727665737420736f6d65776865726520656c7365207369722e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373de88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644f6e6c792063616e2063616c6c206f6e636520746f207374617274207374616b696e67a265627a7a723158203ea87aa3b41e66cce54c4b92545d7d0fcc4e3869935c4765ea4da4dd97dff5f364736f6c63430005100032
Deployed Bytecode Sourcemap
23625:7063:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23625:7063:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22072:122;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22072:122:0;-1:-1:-1;;;;;22072:122:0;;:::i;:::-;;26140:554;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26140:554:0;-1:-1:-1;;;;;26140:554:0;;:::i;:::-;;;;;;;;;;;;;;;;24530:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24530:42:0;-1:-1:-1;;;;;24530:42:0;;:::i;21973:29::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21973:29:0;;;;;;;;;;;;;;23835:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23948:49;;;:::i;22566:91::-;;;:::i;23787:41::-;;;:::i;24135:::-;;;:::i;27337:234::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27337:234:0;;:::i;24702:37::-;;;:::i;29922:763::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29922:763:0;;:::i;27684:1175::-;;;:::i;23884:55::-;;;:::i;22665:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22665:110:0;-1:-1:-1;;;;;22665:110:0;;:::i;11156:140::-;;;:::i;23708:70::-;;;:::i;24183:29::-;;;:::i;26858:471::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26858:471:0;;;;;;-1:-1:-1;;;;;26858:471:0;;:::i;24352:29::-;;;:::i;25617:131::-;;;:::i;25420:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25420:189:0;;:::i;24466:57::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24466:57:0;-1:-1:-1;;;;;24466:57:0;;:::i;24219:37::-;;;:::i;10345:79::-;;;:::i;10711:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;22400:68;;;:::i;24004:67::-;;;:::i;24388:29::-;;;:::i;25756:376::-;;;:::i;24424:35::-;;;:::i;24080:48::-;;;:::i;24581:58::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24581:58:0;-1:-1:-1;;;;;24581:58:0;;:::i;27579:97::-;;;:::i;24314:31::-;;;:::i;11451:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11451:109:0;-1:-1:-1;;;;;11451:109:0;;:::i;26702:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26702:148:0;-1:-1:-1;;;;;26702:148:0;;:::i;22072:122::-;10557:9;:7;:9::i;:::-;10549:54;;;;;-1:-1:-1;;;10549:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10549:54:0;;;;;;;;;;;;;;;22154:14;:32;;-1:-1:-1;;;;;;22154:32:0;-1:-1:-1;;;;;22154:32:0;;;;;;;;;;22072:122::o;26140:554::-;-1:-1:-1;;;;;26375:16:0;;26194:7;26375:16;;;:7;:16;;;;;;;;;26299:22;:31;;;;;;26194:7;;26241:151;;:115;;26351:4;;26241:91;;26278:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;26241:18;26251:7;26241:9;:18::i;:::-;:36;:91;:36;:91;:::i;:::-;:109;:115;:109;:115;:::i;:::-;:133;:151;:133;:151;:::i;:::-;26425:3;;:28;;;-1:-1:-1;;;26425:28:0;;26447:4;26425:28;;;;;;26214:178;;-1:-1:-1;26403:19:0;;-1:-1:-1;;;;;26425:3:0;;;;:13;;:28;;;;;;;;;;;;;;;:3;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;26425:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26425:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26425:28:0;;-1:-1:-1;26602:30:0;;;26598:54;;;26641:11;-1:-1:-1;26634:18:0;;-1:-1:-1;26634:18:0;26598:54;-1:-1:-1;26670:16:0;-1:-1:-1;26140:554:0;;;;:::o;24530:42::-;;;;;;;;;;;;;:::o;21973:29::-;;;-1:-1:-1;;;;;21973:29:0;;:::o;23835:40::-;23873:2;23835:40;:::o;23948:49::-;23987:10;23948:49;:::o;22566:91::-;22637:12;;22566:91;;:::o;23787:41::-;23822:6;23787:41;:::o;24135:::-;;;;:::o;27337:234::-;27391:10;25155:16;:14;:16::i;:::-;25132:20;:39;25199:26;:24;:26::i;:::-;25182:14;:43;-1:-1:-1;;;;;25240:21:0;;;25236:157;;25297:15;25304:7;25297:6;:15::i;:::-;-1:-1:-1;;;;;25278:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25361:20;;25327:22;:31;;;;;;:54;25236:157;28927:12;;28908:15;:31;28904:821;;28977:53;29026:3;28977:44;29000:20;;28977:18;;:22;;:44;;;;:::i;:53::-;28956:18;:74;;;29069:22;;24043:28;;29069:46;;:22;:46;:26;:46;:::i;:::-;:61;29065:185;;;29189:22;;29172:40;;24043:28;;29172:40;:16;:40;:::i;:::-;29151:18;:61;29065:185;29270:18;;:22;29266:229;;29313:3;;29337:18;;29313:43;;;-1:-1:-1;;;29313:43:0;;29330:4;29313:43;;;;;;;;;;;;-1:-1:-1;;;;;29313:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;29313:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;29427:18:0;;29400:22;;:46;;-1:-1:-1;29400:22:0;-1:-1:-1;29400:46:0;:26;:46;:::i;:::-;29375:22;:71;29465:12;:14;;;;;;;;;-1:-1:-1;;29465:14:0;;;;;;29266:229;29524:18;;:32;;23822:6;29524:32;:22;:32;:::i;:::-;29511:10;:45;29588:15;29571:14;:32;;;29633:29;;23822:6;29633:29;:19;:29;:::i;:::-;29618:12;:44;29694:18;;29682:31;;;;;;;-1:-1:-1;;;;;;;;;;;29682:31:0;;;;;;;;28904:821;29811:9;;29793:15;:27;29785:49;;;;;-1:-1:-1;;;29785:49:0;;;;;;;;;;;;-1:-1:-1;;;29785:49:0;;;;;;;;;;;;;;;29868:1;29853:12;;:16;29845:49;;;;;-1:-1:-1;;;29845:49:0;;;;;;;;;;;;-1:-1:-1;;;29845:49:0;;;;;;;;;;;;;;;27457:1;27448:6;:10;27440:40;;;;;-1:-1:-1;;;27440:40:0;;;;;;;;;;;;-1:-1:-1;;;27440:40:0;;;;;;;;;;;;;;;27491:27;27511:6;27491:19;:27::i;:::-;27534:29;;;;;;;;27544:10;;27534:29;;;;;;;;;;27337:234;;:::o;24702:37::-;;;;:::o;29922:763::-;10557:9;:7;:9::i;:::-;10549:54;;;;;-1:-1:-1;;;10549:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10549:54:0;;;;;;;;;;;;;;;30006:1;25155:16;:14;:16::i;:::-;25132:20;:39;25199:26;:24;:26::i;:::-;25182:14;:43;-1:-1:-1;;;;;25240:21:0;;;25236:157;;25297:15;25304:7;25297:6;:15::i;:::-;-1:-1:-1;;;;;25278:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25361:20;;25327:22;:31;;;;;;:54;25236:157;30029:12;;:17;30021:65;;;;-1:-1:-1;;;30021:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30097:18;:27;;;30141:22;;24043:28;;30141:46;;30118:6;30141:46;:26;:46;:::i;:::-;:61;30137:177;;;30257:22;;30240:40;;24043:28;;30240:40;:16;:40;:::i;:::-;30219:18;:61;30137:177;30339:18;;:32;;23822:6;30339:32;:22;:32;:::i;:::-;30326:10;:45;30382:3;;30406:18;;30382:43;;;-1:-1:-1;;;30382:43:0;;30399:4;30382:43;;;;;;;;;;;;-1:-1:-1;;;;;30382:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;30382:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;30488:18:0;;30461:22;;:46;;-1:-1:-1;30461:22:0;-1:-1:-1;30461:46:0;:26;:46;:::i;:::-;30436:22;:71;30518:12;:14;;;;;;;;;-1:-1:-1;;30518:14:0;;;;;;30560:15;30543:14;:32;;;30601:29;;23822:6;30601:29;:19;:29;:::i;:::-;30586:12;:44;30658:18;;30646:31;;;;;;;-1:-1:-1;;;;;;;;;;;30646:31:0;;;;;;;;10614:1;29922:763;:::o;27684:1175::-;27772:7;27725:10;25155:16;:14;:16::i;:::-;25132:20;:39;25199:26;:24;:26::i;:::-;25182:14;:43;-1:-1:-1;;;;;25240:21:0;;;25236:157;;25297:15;25304:7;25297:6;:15::i;:::-;-1:-1:-1;;;;;25278:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25361:20;;25327:22;:31;;;;;;:54;25236:157;28927:12;;28908:15;:31;28904:821;;28977:53;29026:3;28977:44;29000:20;;28977:18;;:22;;:44;;;;:::i;:53::-;28956:18;:74;;;29069:22;;24043:28;;29069:46;;:22;:46;:26;:46;:::i;:::-;:61;29065:185;;;29189:22;;29172:40;;24043:28;;29172:40;:16;:40;:::i;:::-;29151:18;:61;29065:185;29270:18;;:22;29266:229;;29313:3;;29337:18;;29313:43;;;-1:-1:-1;;;29313:43:0;;29330:4;29313:43;;;;;;;;;;;;-1:-1:-1;;;;;29313:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;29313:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;29427:18:0;;29400:22;;:46;;-1:-1:-1;29400:22:0;-1:-1:-1;29400:46:0;:26;:46;:::i;:::-;29375:22;:71;29465:12;:14;;;;;;;;;-1:-1:-1;;29465:14:0;;;;;;29266:229;29524:18;;:32;;23822:6;29524:32;:22;:32;:::i;:::-;29511:10;:45;29588:15;29571:14;:32;;;29633:29;;23822:6;29633:29;:19;:29;:::i;:::-;29618:12;:44;29694:18;;29682:31;;;;;;;-1:-1:-1;;;;;;;;;;;29682:31:0;;;;;;;;28904:821;29811:9;;29793:15;:27;29785:49;;;;;-1:-1:-1;;;29785:49:0;;;;;;;;;;;;-1:-1:-1;;;29785:49:0;;;;;;;;;;;;;;;29868:1;29853:12;;:16;29845:49;;;;;-1:-1:-1;;;29845:49:0;;;;;;;;;;;;-1:-1:-1;;;29845:49:0;;;;;;;;;;;;;;;27792:14;27809:18;27816:10;27809:6;:18::i;:::-;27792:35;;27851:1;27842:6;:10;27838:995;;;27955:10;27947:19;;;;:7;:19;;;;;;;;;27907:23;:35;;;;;;;:60;;;:39;:60;:::i;:::-;27893:10;27869:35;;;;:23;:35;;;;;;;;:98;;;;27982:7;:19;;;;;:23;;;28043:54;28093:3;28043:45;:6;28054:33;28043:45;:10;:45;:::i;:54::-;28182:3;;28022:75;;-1:-1:-1;28140:19:0;;;;28182:40;;-1:-1:-1;;;;;28182:3:0;28199:10;28022:75;28182:40;:16;:40;:::i;:::-;28242:34;;;;;;;;28253:10;;28242:34;;;;;;;;;;28341:14;;28293:16;;-1:-1:-1;;;;;28341:14:0;:28;28337:132;;28414:14;;;28401:52;;;-1:-1:-1;;;28401:52:0;;28442:10;28401:52;;;;;;;;-1:-1:-1;;;;;28414:14:0;;;;28401:40;;:52;;;;;;;;;;;;;;28414:14;28401:52;;;5:2:-1;;;;30:1;27;20:12;5:2;28401:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28401:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28401:52:0;;-1:-1:-1;28337:132:0;-1:-1:-1;;;;;28487:22:0;;;28483:305;;28561:3;;:38;;-1:-1:-1;;;;;28561:3:0;28578:8;28588:10;28561:38;:16;:38;:::i;:::-;28623:36;;;;;;;;-1:-1:-1;;;;;28623:36:0;;;;;;;;;;;;;28483:305;;;28710:3;;:20;;;-1:-1:-1;;;28710:20:0;;;;;;;;;;-1:-1:-1;;;;;28710:3:0;;;;:8;;:20;;;;;:3;;:20;;;;;;;;:3;;:20;;;5:2:-1;;;;30:1;27;20:12;5:2;28710:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;28754:18:0;;;;;;;;;;-1:-1:-1;28754:18:0;;;;;;;-1:-1:-1;28754:18:0;28483:305;28811:10;28804:17;;;;;;;;27838:995;28850:1;28843:8;;;29905:1;27684:1175;;:::o;23884:55::-;23938:1;23884:55;:::o;22665:110::-;-1:-1:-1;;;;;22749:18:0;22722:7;22749:18;;;:9;:18;;;;;;;22665:110::o;11156:140::-;10557:9;:7;:9::i;:::-;10549:54;;;;;-1:-1:-1;;;10549:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10549:54:0;;;;;;;;;;;;;;;11239:6;;11218:40;;11255:1;;-1:-1:-1;;;;;11239:6:0;;11218:40;;11255:1;;11218:40;11269:6;:19;;-1:-1:-1;;;;;;11269:19:0;;;11156:140::o;23708:70::-;;;-1:-1:-1;;;;;23708:70:0;;:::o;24183:29::-;;;;;;:::o;26858:471::-;26927:10;25155:16;:14;:16::i;:::-;25132:20;:39;25199:26;:24;:26::i;:::-;25182:14;:43;-1:-1:-1;;;;;25240:21:0;;;25236:157;;25297:15;25304:7;25297:6;:15::i;:::-;-1:-1:-1;;;;;25278:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25361:20;;25327:22;:31;;;;;;:54;25236:157;28927:12;;28908:15;:31;28904:821;;28977:53;29026:3;28977:44;29000:20;;28977:18;;:22;;:44;;;;:::i;:53::-;28956:18;:74;;;29069:22;;24043:28;;29069:46;;:22;:46;:26;:46;:::i;:::-;:61;29065:185;;;29189:22;;29172:40;;24043:28;;29172:40;:16;:40;:::i;:::-;29151:18;:61;29065:185;29270:18;;:22;29266:229;;29313:3;;29337:18;;29313:43;;;-1:-1:-1;;;29313:43:0;;29330:4;29313:43;;;;;;;;;;;;-1:-1:-1;;;;;29313:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;29313:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;29427:18:0;;29400:22;;:46;;-1:-1:-1;29400:22:0;-1:-1:-1;29400:46:0;:26;:46;:::i;:::-;29375:22;:71;29465:12;:14;;;;;;;;;-1:-1:-1;;29465:14:0;;;;;;29266:229;29524:18;;:32;;23822:6;29524:32;:22;:32;:::i;:::-;29511:10;:45;29588:15;29571:14;:32;;;29633:29;;23822:6;29633:29;:19;:29;:::i;:::-;29618:12;:44;29694:18;;29682:31;;;;;;;-1:-1:-1;;;;;;;;;;;29682:31:0;;;;;;;;28904:821;29811:9;;29793:15;:27;29785:49;;;;;-1:-1:-1;;;29785:49:0;;;;;;;;;;;;-1:-1:-1;;;29785:49:0;;;;;;;;;;;;;;;29868:1;29853:12;;:16;29845:49;;;;;-1:-1:-1;;;29845:49:0;;;;;;;;;;;;-1:-1:-1;;;29845:49:0;;;;;;;;;;;;;;;26993:1;26984:6;:10;26976:37;;;;;-1:-1:-1;;;26976:37:0;;;;;;;;;;;;-1:-1:-1;;;26976:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27032:22:0;;27044:10;27032:22;;27024:61;;;;;-1:-1:-1;;;27024:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27096:24;27113:6;27096:16;:24::i;:::-;27136:26;;;;;;;;27143:10;;27136:26;;;;;;;;;;27177:14;;-1:-1:-1;;;;;27177:14:0;:28;;;;:54;;-1:-1:-1;;;;;;27209:22:0;;;;27177:54;27173:149;;;27261:14;;;27248:62;;;-1:-1:-1;;;27248:62:0;;27289:10;27248:62;;;;;;;-1:-1:-1;;;;;27248:62:0;;;;;;;;;27261:14;;;27248:40;;:62;;;;;27261:14;;27248:62;;;;;;;27261:14;;27248:62;;;5:2:-1;;;;30:1;27;20:12;5:2;27248:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27248:62:0;;;;27173:149;26858:471;;;:::o;24352:29::-;;;;:::o;25617:131::-;25674:7;25701:39;25710:15;25727:12;;25701:8;:39::i;:::-;25694:46;;25617:131;:::o;25420:189::-;10557:9;:7;:9::i;:::-;10549:54;;;;;-1:-1:-1;;;10549:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10549:54:0;;;;;;;;;;;;;;;25542:3;25517:21;:28;;25509:37;;;;;;25557:20;:44;25420:189::o;24466:57::-;;;;;;;;;;;;;:::o;24219:37::-;;;;:::o;10345:79::-;10410:6;;-1:-1:-1;;;;;10410:6:0;10345:79;:::o;10711:94::-;10791:6;;10751:4;;-1:-1:-1;;;;;10791:6:0;10775:12;:10;:12::i;:::-;-1:-1:-1;;;;;10775:22:0;;10768:29;;10711:94;:::o;22400:68::-;;;-1:-1:-1;;;;;22400:68:0;;:::o;24004:67::-;24043:28;24004:67;:::o;24388:29::-;;;;:::o;25756:376::-;25803:7;25827:13;:11;:13::i;:::-;25823:78;;-1:-1:-1;25869:20:0;;25862:27;;25823:78;25927:197;25966:147;26099:13;:11;:13::i;:::-;25966:114;26075:4;25966:90;26045:10;;25966:60;26011:14;;25966:26;:24;:26::i;:147::-;25927:20;;;:197;:24;:197;:::i;24424:35::-;;;;:::o;24080:48::-;;;;:::o;24581:58::-;;;;;;;;;;;;;:::o;27579:97::-;27615:31;27624:21;27634:10;27624:9;:21::i;:::-;27615:8;:31::i;:::-;27657:11;:9;:11::i;:::-;;27579:97::o;24314:31::-;;;;:::o;11451:109::-;10557:9;:7;:9::i;:::-;10549:54;;;;;-1:-1:-1;;;10549:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10549:54:0;;;;;;;;;;;;;;;11524:28;11543:8;11524:18;:28::i;26702:148::-;26762:7;26789:53;26826:15;26833:7;26826:6;:15::i;:::-;-1:-1:-1;;;;;26789:32:0;;;;;;:23;:32;;;;;;;:53;:36;:53;:::i;:::-;26782:60;26702:148;-1:-1:-1;;26702:148:0:o;4087:136::-;4145:7;4172:43;4176:1;4179;4172:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4165:50;4087:136;-1:-1:-1;;;4087:136:0:o;5003:471::-;5061:7;5306:6;5302:47;;-1:-1:-1;5336:1:0;5329:8;;5302:47;5373:5;;;5377:1;5373;:5;:1;5397:5;;;;;:10;5389:56;;;;-1:-1:-1;;;5389:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5942:132;6000:7;6027:39;6031:1;6034;6027:39;;;;;;;;;;;;;;;;;:3;:39::i;3631:181::-;3689:7;3721:5;;;3745:6;;;;3737:46;;;;;-1:-1:-1;;;3737:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;23223:219;23297:12;;:24;;23314:6;23297:24;:16;:24;:::i;:::-;23282:12;:39;23366:10;23356:21;;;;:9;:21;;;;;;:33;;23382:6;23356:33;:25;:33;:::i;:::-;23342:10;23332:21;;;;:9;:21;;;;;:57;;;;23400:1;;:34;;-1:-1:-1;;;;;23400:1:0;;;;23427:6;18674:176;18783:58;;;-1:-1:-1;;;;;18783:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18783:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18757:85:0;;18776:5;;18757:18;:85::i;22783:432::-;22856:10;22886:28;22856:10;22886:26;:28::i;:::-;22885:29;22877:104;;;;-1:-1:-1;;;22877:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000:9;-1:-1:-1;;;;;23000:19:0;;;22992:45;;;;;-1:-1:-1;;;22992:45:0;;;;;;;;;;;;-1:-1:-1;;;22992:45:0;;;;;;;;;;;;;;;23063:12;;:24;;23080:6;23063:24;:16;:24;:::i;:::-;23048:12;:39;-1:-1:-1;;;;;23118:17:0;;;;;;:9;:17;;;;;;:29;;23140:6;23118:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;23098:17:0;;;;;;;:9;:17;;;;;:49;;;;23158:1;;:49;;:1;23108:6;23193:4;23200:6;23158:49;:18;:49;:::i;:::-;22783:432;;:::o;2293:106::-;2351:7;2382:1;2378;:5;:13;;2390:1;2378:13;;;-1:-1:-1;2386:1:0;;2293:106;-1:-1:-1;2293:106:0:o;9085:98::-;9165:10;9085:98;:::o;11666:229::-;-1:-1:-1;;;;;11740:22:0;;11732:73;;;;-1:-1:-1;;;11732:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11842:6;;11821:38;;-1:-1:-1;;;;;11821:38:0;;;;11842:6;;11821:38;;11842:6;;11821:38;11870:6;:17;;-1:-1:-1;;;;;;11870:17:0;-1:-1:-1;;;;;11870:17:0;;;;;;;;;;11666:229::o;4560:192::-;4646:7;4682:12;4674:6;;;;4666:29;;;;-1:-1:-1;;;4666:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4666:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4718:5:0;;;4560:192::o;6604:345::-;6690:7;6792:12;6785:5;6777:28;;;;-1:-1:-1;;;6777:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6777:28:0;;6816:9;6832:1;6828;:5;;;;;;;6604:345;-1:-1:-1;;;;;6604:345:0:o;20713:1113::-;21317:27;21325:5;-1:-1:-1;;;;;21317:25:0;;:27::i;:::-;21309:71;;;;;-1:-1:-1;;;21309:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21454:12;21468:23;21503:5;-1:-1:-1;;;;;21495:19:0;21515:4;21495:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;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;;;21495: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;;21453:67:0;;;;21539:7;21531:52;;;;;-1:-1:-1;;;21531:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21600:17;;:21;21596:223;;21741:10;21730:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21730:30:0;21722:85;;;;-1:-1:-1;;;21722:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20713:1113;;;;:::o;15515:808::-;15575:4;16233:20;;16077:66;16272:15;;;;;:42;;;16303:11;16291:8;:23;;16272:42;16264:51;15515:808;-1:-1:-1;;;;15515:808:0:o;18858:204::-;18985:68;;;-1:-1:-1;;;;;18985:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18985:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18959:95:0;;18978:5;;18959:18;:95::i
Swarm Source
bzzr://3ea87aa3b41e66cce54c4b92545d7d0fcc4e3869935c4765ea4da4dd97dff5f3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1.28 | 2.4932 | $3.19 |
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.