More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 412 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exit | 11038131 | 1576 days ago | IN | 0 ETH | 0.00505395 | ||||
Exit | 11033337 | 1577 days ago | IN | 0 ETH | 0.00516066 | ||||
Get Reward | 11010203 | 1581 days ago | IN | 0 ETH | 0.00600857 | ||||
Get Reward | 10998139 | 1583 days ago | IN | 0 ETH | 0.00343783 | ||||
Exit | 10994555 | 1583 days ago | IN | 0 ETH | 0.01689047 | ||||
Get Reward | 10994219 | 1583 days ago | IN | 0 ETH | 0.00572972 | ||||
Exit | 10979402 | 1586 days ago | IN | 0 ETH | 0.0074957 | ||||
Exit | 10935554 | 1592 days ago | IN | 0 ETH | 0.00881973 | ||||
Exit | 10935352 | 1592 days ago | IN | 0 ETH | 0.00972315 | ||||
Exit | 10918655 | 1595 days ago | IN | 0 ETH | 0.01164278 | ||||
Get Reward | 10915640 | 1595 days ago | IN | 0 ETH | 0.01009235 | ||||
Withdraw | 10915638 | 1595 days ago | IN | 0 ETH | 0.00801133 | ||||
Exit | 10912434 | 1596 days ago | IN | 0 ETH | 0.02842848 | ||||
Exit | 10912036 | 1596 days ago | IN | 0 ETH | 0.01889843 | ||||
Withdraw | 10911916 | 1596 days ago | IN | 0 ETH | 0.01201018 | ||||
Get Reward | 10911916 | 1596 days ago | IN | 0 ETH | 0.02177823 | ||||
Exit | 10910609 | 1596 days ago | IN | 0 ETH | 0.01181152 | ||||
Exit | 10909096 | 1596 days ago | IN | 0 ETH | 0.01569244 | ||||
Exit | 10907326 | 1597 days ago | IN | 0 ETH | 0.01737296 | ||||
Exit | 10907155 | 1597 days ago | IN | 0 ETH | 0.01349888 | ||||
Exit | 10906809 | 1597 days ago | IN | 0 ETH | 0.02041705 | ||||
Exit | 10904706 | 1597 days ago | IN | 0 ETH | 0.0067902 | ||||
Exit | 10904706 | 1597 days ago | IN | 0 ETH | 0.01473579 | ||||
Exit | 10904524 | 1597 days ago | IN | 0 ETH | 0.01936883 | ||||
Exit | 10904325 | 1597 days ago | IN | 0 ETH | 0.01753356 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ULUStakeV2
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-10 */ /** * * 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 yfv = IERC20(0x035bfe6057E15Ea692c0DfdcaB3BB41a64Dd2aD4); 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); yfv.safeTransferFrom(sender, address(this), amount); } function tokenWithdraw(uint256 amount) internal { _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); yfv.safeTransfer(msg.sender, amount); } } interface IULUReferral { function setReferrer(address farmer, address referrer) external; function getReferrer(address farmer) external view returns (address); } contract ULUStakeV2 is LPTokenWrapper, IRewardDistributionRecipient { uint256 public constant DURATION = 7 days; uint8 public constant NUMBER_EPOCHS = 50; uint256 public constant REFERRAL_COMMISSION_PERCENT = 5; uint256 public constant EPOCH_REWARD = 900 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 = 1600005600; // Sunday, September 13, 2020 14: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 = 100; // 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)); if (poolBalance < totalSupply()) return 0; // double-check for sure. It should never happen // 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.add(totalSupply()) > poolBalance) return poolBalance.sub(totalSupply()); 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":"yfv","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600080546001600160a01b03191673035bfe6057e15ea692c0dfdcab3bb41a64dd2ad41781556830ca024f987b90000060055560068190556007805460ff19169055635f5e25e06008556009819055600a55606460105561006c6001600160e01b036100bd16565b600380546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36100c1565b3390565b611faf806100d06000396000f3fe608060405234801561001057600080fd5b506004361061021a5760003560e01c80637acb775711610125578063c8f33c91116100ad578063e9b46e6d1161007c578063e9b46e6d1461046a578063e9fad8ee14610490578063ebe2b12b14610498578063f2fde38b146104a0578063ffe48902146104c65761021a565b8063c8f33c911461044a578063cd3daf9d14610452578063df136d651461045a578063e68e035b146104625761021a565b80638b876347116100f45780638b876347146103f05780638da58897146104165780638da5cb5b1461041e5780638f32d59b14610426578063c8333bb2146104425761021a565b80637acb7757146103975780637b0a47ee146103c357806380faa57d146103cb57806381376db4146103d35761021a565b80632e1a7d4d116101a857806353220a421161017757806353220a421461035157806370a0823114610359578063715018a61461037f5780637318a73014610387578063766718081461038f5761021a565b80632e1a7d4d146103075780632e329bd3146103245780633c6b16ab1461032c5780633d18b912146103495761021a565b80630fcfc6a8116101ef5780630fcfc6a8146102c957806313eb6c88146102e757806318160ddd146102ef5780631be05289146102f7578063207e821d146102ff5761021a565b80622dcfb91461021f5780628cc262146102475780630700037d1461027f5780630cdb43c4146102a5575b600080fd5b6102456004803603602081101561023557600080fd5b50356001600160a01b03166104ec565b005b61026d6004803603602081101561025d57600080fd5b50356001600160a01b0316610555565b60408051918252519081900360200190f35b61026d6004803603602081101561029557600080fd5b50356001600160a01b03166106b7565b6102ad6106c9565b604080516001600160a01b039092168252519081900360200190f35b6102d16106d8565b6040805160ff9092168252519081900360200190f35b61026d6106dd565b61026d6106ea565b61026d6106f1565b61026d6106f8565b6102456004803603602081101561031d57600080fd5b50356106fe565b61026d6109e0565b6102456004803603602081101561034257600080fd5b50356109e6565b61026d610c08565b61026d6110db565b61026d6004803603602081101561036f57600080fd5b50356001600160a01b03166110e0565b6102456110fb565b6102ad61118c565b6102d161119b565b610245600480360360408110156103ad57600080fd5b50803590602001356001600160a01b03166111a4565b61026d611577565b61026d61157d565b610245600480360360208110156103e957600080fd5b5035611590565b61026d6004803603602081101561040657600080fd5b50356001600160a01b03166115ea565b61026d6115fc565b6102ad611602565b61042e611611565b604080519115158252519081900360200190f35b61026d611637565b61026d611645565b61026d61164b565b61026d61169f565b61026d6116a5565b61026d6004803603602081101561048057600080fd5b50356001600160a01b03166116ab565b6102456116bd565b61026d6116d9565b610245600480360360208110156104b657600080fd5b50356001600160a01b03166116df565b61026d600480360360208110156104dc57600080fd5b50356001600160a01b031661172f565b6104f4611611565b610533576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600e6020908152604080832054600d90925282205482916105d6916105ca90670de0b6b3a7640000906105be906105a99061059d61164b565b9063ffffffff61176816565b6105b2896110e0565b9063ffffffff6117b116565b9063ffffffff61180a16565b9063ffffffff61184c16565b60008054604080516370a0823160e01b8152306004820152905193945091926001600160a01b03909116916370a08231916024808301926020929190829003018186803b15801561062657600080fd5b505afa15801561063a573d6000803e3d6000fd5b505050506040513d602081101561065057600080fd5b5051905061065c6106ea565b81101561066e576000925050506106b2565b8061068761067a6106ea565b849063ffffffff61184c16565b11156106ae576106a56106986106ea565b829063ffffffff61176816565b925050506106b2565b5090505b919050565b600e6020526000908152604090205481565b6004546001600160a01b031681565b603281565b6830ca024f987b90000081565b6001545b90565b62093a8081565b60065481565b3361070761164b565b600c5561071261157d565b600b556001600160a01b038116156107595761072d81610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60095442106108c45761077e60646105be6010546005546117b190919063ffffffff16565b600581905560065469098774738bc822200000916107a2919063ffffffff61184c16565b11156107ca576006546107c69069098774738bc8222000009063ffffffff61176816565b6005555b6005541561086b5760008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b15801561082357600080fd5b505af1158015610837573d6000803e3d6000fd5b50506005546006546108519350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff199091161790555b6005546108819062093a8063ffffffff61180a16565b600a5542600b81905561089d9062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15b6008544211610906576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600060095411610954576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000821161099d576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b6109a6826118a6565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60105481565b6109ee611611565b610a2d576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b6000610a3761164b565b600c55610a4261157d565b600b556001600160a01b03811615610a8957610a5d81610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60095415610ac85760405162461bcd60e51b8152600401808060200182810382526023815260200180611f586023913960400191505060405180910390fd5b600582905560065469098774738bc82220000090610aec908463ffffffff61184c16565b1115610b1457600654610b109069098774738bc8222000009063ffffffff61176816565b6005555b600554610b2a9062093a8063ffffffff61180a16565b600a5560008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b158015610b7e57600080fd5b505af1158015610b92573d6000803e3d6000fd5b5050600554600654610bac9350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff1990911617905542600b819055610bde9062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15050565b600033610c1361164b565b600c55610c1e61157d565b600b556001600160a01b03811615610c6557610c3981610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6009544210610dd057610c8a60646105be6010546005546117b190919063ffffffff16565b600581905560065469098774738bc82220000091610cae919063ffffffff61184c16565b1115610cd657600654610cd29069098774738bc8222000009063ffffffff61176816565b6005555b60055415610d775760008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b158015610d2f57600080fd5b505af1158015610d43573d6000803e3d6000fd5b5050600554600654610d5d9350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff199091161790555b600554610d8d9062093a8063ffffffff61180a16565b600a5542600b819055610da99062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15b6008544211610e12576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600060095411610e60576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000610e6b33610555565b905060018111156110d157336000908152600e6020908152604080832054600f90925290912054610ea19163ffffffff61184c16565b336000908152600f6020908152604080832093909355600e9052908120819055610ed760646105be84605f63ffffffff6117b116565b60005490915081830390610efb906001600160a01b0316338463ffffffff61190316565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a26004546000906001600160a01b031615610fc0576004805460408051634a9fefc760e01b81523393810193909352516001600160a01b0390911691634a9fefc7916024808301926020929190829003018186803b158015610f9157600080fd5b505afa158015610fa5573d6000803e3d6000fd5b505050506040513d6020811015610fbb57600080fd5b505190505b6001600160a01b0381161561103057600054610fec906001600160a01b0316828463ffffffff61190316565b6040805183815290516001600160a01b038316917f885e6f6235626292940f78c947a331f4c7c1d7f50a48b38092cf546bc9c7907a919081900360200190a26110c5565b6000805460408051630852cd8d60e31b81526004810186905290516001600160a01b03909216926342966c689260248084019382900301818387803b15801561107857600080fd5b505af115801561108c573d6000803e3d6000fd5b50506040805185815290517fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e9350908190036020019150a15b829550505050506110d7565b60009250505b5090565b600581565b6001600160a01b031660009081526002602052604090205490565b611103611611565b611142576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6000546001600160a01b031681565b60075460ff1681565b336111ad61164b565b600c556111b861157d565b600b556001600160a01b038116156111ff576111d381610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b600954421061136a5761122460646105be6010546005546117b190919063ffffffff16565b600581905560065469098774738bc82220000091611248919063ffffffff61184c16565b11156112705760065461126c9069098774738bc8222000009063ffffffff61176816565b6005555b600554156113115760008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b1580156112c957600080fd5b505af11580156112dd573d6000803e3d6000fd5b50506005546006546112f79350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff199091161790555b6005546113279062093a8063ffffffff61180a16565b600a5542600b8190556113439062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15b60085442116113ac576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600954116113fa576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b60008311611440576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6001600160a01b03821633141561149e576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420726566657220796f757273656c662e000000000000604482015290519081900360640190fd5b6114a783611955565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a26004546001600160a01b0316158015906114ff57506001600160a01b03821615155b1561157257600480546040805163bbddaca360e01b815233938101939093526001600160a01b038581166024850152905191169163bbddaca391604480830192600092919082900301818387803b15801561155957600080fd5b505af115801561156d573d6000803e3d6000fd5b505050505b505050565b600a5481565b600061158b42600954611a5d565b905090565b611598611611565b6115d7576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b60c88111156115e557600080fd5b601055565b600d6020526000908152604090205481565b60085481565b6003546001600160a01b031690565b6003546000906001600160a01b0316611628611a73565b6001600160a01b031614905090565b69098774738bc82220000081565b600b5481565b60006116556106ea565b6116625750600c546106ee565b61158b6116906116706106ea565b6105be670de0b6b3a76400006105b2600a546105b2600b5461059d61157d565b600c549063ffffffff61184c16565b600c5481565b60055481565b600f6020526000908152604090205481565b6116ce6116c9336110e0565b6106fe565b6116d6610c08565b50565b60095481565b6116e7611611565b611726576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b6116d681611a77565b600061176261173d83610555565b6001600160a01b0384166000908152600f60205260409020549063ffffffff61184c16565b92915050565b60006117aa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b18565b9392505050565b6000826117c057506000611762565b828202828482816117cd57fe5b04146117aa5760405162461bcd60e51b8152600401808060200182810382526021815260200180611eed6021913960400191505060405180910390fd5b60006117aa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611baf565b6000828201838110156117aa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546118b9908263ffffffff61176816565b600155336000908152600260205260409020546118dc908263ffffffff61176816565b3360008181526002602052604081209290925590546116d6916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611572908490611c14565b3361195f81611dd2565b1561199b5760405162461bcd60e51b815260040180806020018281038252603e815260200180611e69603e913960400191505060405180910390fd5b326001600160a01b038216146119e8576040805162461bcd60e51b815260206004820152600d60248201526c20b7323932961039ba30b4381760991b604482015290519081900360640190fd5b6001546119fb908363ffffffff61184c16565b6001556001600160a01b038116600090815260026020526040902054611a27908363ffffffff61184c16565b6001600160a01b038083166000908152600260205260408120929092559054611a59911682308563ffffffff611e0e16565b5050565b6000818310611a6c57816117aa565b5090919050565b3390565b6001600160a01b038116611abc5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ea76026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008184841115611ba75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b6c578181015183820152602001611b54565b50505050905090810190601f168015611b995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611bfe5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b6c578181015183820152602001611b54565b506000838581611c0a57fe5b0495945050505050565b611c26826001600160a01b0316611dd2565b611c77576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611cb55780518252601f199092019160209182019101611c96565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d17576040519150601f19603f3d011682016040523d82523d6000602084013e611d1c565b606091505b509150915081611d73576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611dcc57808060200190516020811015611d8f57600080fd5b5051611dcc5760405162461bcd60e51b815260040180806020018281038252602a815260200180611f2e602a913960400191505060405180910390fd5b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590611e065750808214155b949350505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611dcc908590611c1456fe416e6472652c20776520617265206661726d696e6720696e2070656163652c20676f206861727665737420736f6d65776865726520656c7365207369722e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373de88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644f6e6c792063616e2063616c6c206f6e636520746f207374617274207374616b696e67a265627a7a72315820d8de657bf1c2fe5cfdaf7f6000b948fb9a272ef30562eec0f149ccddd0e3d26864736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021a5760003560e01c80637acb775711610125578063c8f33c91116100ad578063e9b46e6d1161007c578063e9b46e6d1461046a578063e9fad8ee14610490578063ebe2b12b14610498578063f2fde38b146104a0578063ffe48902146104c65761021a565b8063c8f33c911461044a578063cd3daf9d14610452578063df136d651461045a578063e68e035b146104625761021a565b80638b876347116100f45780638b876347146103f05780638da58897146104165780638da5cb5b1461041e5780638f32d59b14610426578063c8333bb2146104425761021a565b80637acb7757146103975780637b0a47ee146103c357806380faa57d146103cb57806381376db4146103d35761021a565b80632e1a7d4d116101a857806353220a421161017757806353220a421461035157806370a0823114610359578063715018a61461037f5780637318a73014610387578063766718081461038f5761021a565b80632e1a7d4d146103075780632e329bd3146103245780633c6b16ab1461032c5780633d18b912146103495761021a565b80630fcfc6a8116101ef5780630fcfc6a8146102c957806313eb6c88146102e757806318160ddd146102ef5780631be05289146102f7578063207e821d146102ff5761021a565b80622dcfb91461021f5780628cc262146102475780630700037d1461027f5780630cdb43c4146102a5575b600080fd5b6102456004803603602081101561023557600080fd5b50356001600160a01b03166104ec565b005b61026d6004803603602081101561025d57600080fd5b50356001600160a01b0316610555565b60408051918252519081900360200190f35b61026d6004803603602081101561029557600080fd5b50356001600160a01b03166106b7565b6102ad6106c9565b604080516001600160a01b039092168252519081900360200190f35b6102d16106d8565b6040805160ff9092168252519081900360200190f35b61026d6106dd565b61026d6106ea565b61026d6106f1565b61026d6106f8565b6102456004803603602081101561031d57600080fd5b50356106fe565b61026d6109e0565b6102456004803603602081101561034257600080fd5b50356109e6565b61026d610c08565b61026d6110db565b61026d6004803603602081101561036f57600080fd5b50356001600160a01b03166110e0565b6102456110fb565b6102ad61118c565b6102d161119b565b610245600480360360408110156103ad57600080fd5b50803590602001356001600160a01b03166111a4565b61026d611577565b61026d61157d565b610245600480360360208110156103e957600080fd5b5035611590565b61026d6004803603602081101561040657600080fd5b50356001600160a01b03166115ea565b61026d6115fc565b6102ad611602565b61042e611611565b604080519115158252519081900360200190f35b61026d611637565b61026d611645565b61026d61164b565b61026d61169f565b61026d6116a5565b61026d6004803603602081101561048057600080fd5b50356001600160a01b03166116ab565b6102456116bd565b61026d6116d9565b610245600480360360208110156104b657600080fd5b50356001600160a01b03166116df565b61026d600480360360208110156104dc57600080fd5b50356001600160a01b031661172f565b6104f4611611565b610533576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600e6020908152604080832054600d90925282205482916105d6916105ca90670de0b6b3a7640000906105be906105a99061059d61164b565b9063ffffffff61176816565b6105b2896110e0565b9063ffffffff6117b116565b9063ffffffff61180a16565b9063ffffffff61184c16565b60008054604080516370a0823160e01b8152306004820152905193945091926001600160a01b03909116916370a08231916024808301926020929190829003018186803b15801561062657600080fd5b505afa15801561063a573d6000803e3d6000fd5b505050506040513d602081101561065057600080fd5b5051905061065c6106ea565b81101561066e576000925050506106b2565b8061068761067a6106ea565b849063ffffffff61184c16565b11156106ae576106a56106986106ea565b829063ffffffff61176816565b925050506106b2565b5090505b919050565b600e6020526000908152604090205481565b6004546001600160a01b031681565b603281565b6830ca024f987b90000081565b6001545b90565b62093a8081565b60065481565b3361070761164b565b600c5561071261157d565b600b556001600160a01b038116156107595761072d81610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60095442106108c45761077e60646105be6010546005546117b190919063ffffffff16565b600581905560065469098774738bc822200000916107a2919063ffffffff61184c16565b11156107ca576006546107c69069098774738bc8222000009063ffffffff61176816565b6005555b6005541561086b5760008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b15801561082357600080fd5b505af1158015610837573d6000803e3d6000fd5b50506005546006546108519350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff199091161790555b6005546108819062093a8063ffffffff61180a16565b600a5542600b81905561089d9062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15b6008544211610906576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600060095411610954576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000821161099d576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b6109a6826118a6565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60105481565b6109ee611611565b610a2d576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b6000610a3761164b565b600c55610a4261157d565b600b556001600160a01b03811615610a8957610a5d81610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60095415610ac85760405162461bcd60e51b8152600401808060200182810382526023815260200180611f586023913960400191505060405180910390fd5b600582905560065469098774738bc82220000090610aec908463ffffffff61184c16565b1115610b1457600654610b109069098774738bc8222000009063ffffffff61176816565b6005555b600554610b2a9062093a8063ffffffff61180a16565b600a5560008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b158015610b7e57600080fd5b505af1158015610b92573d6000803e3d6000fd5b5050600554600654610bac9350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff1990911617905542600b819055610bde9062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15050565b600033610c1361164b565b600c55610c1e61157d565b600b556001600160a01b03811615610c6557610c3981610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6009544210610dd057610c8a60646105be6010546005546117b190919063ffffffff16565b600581905560065469098774738bc82220000091610cae919063ffffffff61184c16565b1115610cd657600654610cd29069098774738bc8222000009063ffffffff61176816565b6005555b60055415610d775760008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b158015610d2f57600080fd5b505af1158015610d43573d6000803e3d6000fd5b5050600554600654610d5d9350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff199091161790555b600554610d8d9062093a8063ffffffff61180a16565b600a5542600b819055610da99062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15b6008544211610e12576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600060095411610e60576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b6000610e6b33610555565b905060018111156110d157336000908152600e6020908152604080832054600f90925290912054610ea19163ffffffff61184c16565b336000908152600f6020908152604080832093909355600e9052908120819055610ed760646105be84605f63ffffffff6117b116565b60005490915081830390610efb906001600160a01b0316338463ffffffff61190316565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a26004546000906001600160a01b031615610fc0576004805460408051634a9fefc760e01b81523393810193909352516001600160a01b0390911691634a9fefc7916024808301926020929190829003018186803b158015610f9157600080fd5b505afa158015610fa5573d6000803e3d6000fd5b505050506040513d6020811015610fbb57600080fd5b505190505b6001600160a01b0381161561103057600054610fec906001600160a01b0316828463ffffffff61190316565b6040805183815290516001600160a01b038316917f885e6f6235626292940f78c947a331f4c7c1d7f50a48b38092cf546bc9c7907a919081900360200190a26110c5565b6000805460408051630852cd8d60e31b81526004810186905290516001600160a01b03909216926342966c689260248084019382900301818387803b15801561107857600080fd5b505af115801561108c573d6000803e3d6000fd5b50506040805185815290517fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e9350908190036020019150a15b829550505050506110d7565b60009250505b5090565b600581565b6001600160a01b031660009081526002602052604090205490565b611103611611565b611142576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6000546001600160a01b031681565b60075460ff1681565b336111ad61164b565b600c556111b861157d565b600b556001600160a01b038116156111ff576111d381610555565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b600954421061136a5761122460646105be6010546005546117b190919063ffffffff16565b600581905560065469098774738bc82220000091611248919063ffffffff61184c16565b11156112705760065461126c9069098774738bc8222000009063ffffffff61176816565b6005555b600554156113115760008054600554604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216926340c10f199260448084019382900301818387803b1580156112c957600080fd5b505af11580156112dd573d6000803e3d6000fd5b50506005546006546112f79350915063ffffffff61184c16565b6006556007805460ff8082166001011660ff199091161790555b6005546113279062093a8063ffffffff61180a16565b600a5542600b8190556113439062093a8063ffffffff61184c16565b6009556005546040805191825251600080516020611ecd8339815191529181900360200190a15b60085442116113ac576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000600954116113fa576040805162461bcd60e51b8152602060048201526014602482015273141bdbdb081a185cc81b9bdd081cdd185c9d195960621b604482015290519081900360640190fd5b60008311611440576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6001600160a01b03821633141561149e576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420726566657220796f757273656c662e000000000000604482015290519081900360640190fd5b6114a783611955565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a26004546001600160a01b0316158015906114ff57506001600160a01b03821615155b1561157257600480546040805163bbddaca360e01b815233938101939093526001600160a01b038581166024850152905191169163bbddaca391604480830192600092919082900301818387803b15801561155957600080fd5b505af115801561156d573d6000803e3d6000fd5b505050505b505050565b600a5481565b600061158b42600954611a5d565b905090565b611598611611565b6115d7576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b60c88111156115e557600080fd5b601055565b600d6020526000908152604090205481565b60085481565b6003546001600160a01b031690565b6003546000906001600160a01b0316611628611a73565b6001600160a01b031614905090565b69098774738bc82220000081565b600b5481565b60006116556106ea565b6116625750600c546106ee565b61158b6116906116706106ea565b6105be670de0b6b3a76400006105b2600a546105b2600b5461059d61157d565b600c549063ffffffff61184c16565b600c5481565b60055481565b600f6020526000908152604090205481565b6116ce6116c9336110e0565b6106fe565b6116d6610c08565b50565b60095481565b6116e7611611565b611726576040805162461bcd60e51b81526020600482018190526024820152600080516020611f0e833981519152604482015290519081900360640190fd5b6116d681611a77565b600061176261173d83610555565b6001600160a01b0384166000908152600f60205260409020549063ffffffff61184c16565b92915050565b60006117aa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b18565b9392505050565b6000826117c057506000611762565b828202828482816117cd57fe5b04146117aa5760405162461bcd60e51b8152600401808060200182810382526021815260200180611eed6021913960400191505060405180910390fd5b60006117aa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611baf565b6000828201838110156117aa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546118b9908263ffffffff61176816565b600155336000908152600260205260409020546118dc908263ffffffff61176816565b3360008181526002602052604081209290925590546116d6916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611572908490611c14565b3361195f81611dd2565b1561199b5760405162461bcd60e51b815260040180806020018281038252603e815260200180611e69603e913960400191505060405180910390fd5b326001600160a01b038216146119e8576040805162461bcd60e51b815260206004820152600d60248201526c20b7323932961039ba30b4381760991b604482015290519081900360640190fd5b6001546119fb908363ffffffff61184c16565b6001556001600160a01b038116600090815260026020526040902054611a27908363ffffffff61184c16565b6001600160a01b038083166000908152600260205260408120929092559054611a59911682308563ffffffff611e0e16565b5050565b6000818310611a6c57816117aa565b5090919050565b3390565b6001600160a01b038116611abc5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ea76026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008184841115611ba75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b6c578181015183820152602001611b54565b50505050905090810190601f168015611b995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611bfe5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b6c578181015183820152602001611b54565b506000838581611c0a57fe5b0495945050505050565b611c26826001600160a01b0316611dd2565b611c77576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611cb55780518252601f199092019160209182019101611c96565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d17576040519150601f19603f3d011682016040523d82523d6000602084013e611d1c565b606091505b509150915081611d73576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611dcc57808060200190516020811015611d8f57600080fd5b5051611dcc5760405162461bcd60e51b815260040180806020018281038252602a815260200180611f2e602a913960400191505060405180910390fd5b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590611e065750808214155b949350505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611dcc908590611c1456fe416e6472652c20776520617265206661726d696e6720696e2070656163652c20676f206861727665737420736f6d65776865726520656c7365207369722e4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373de88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644f6e6c792063616e2063616c6c206f6e636520746f207374617274207374616b696e67a265627a7a72315820d8de657bf1c2fe5cfdaf7f6000b948fb9a272ef30562eec0f149ccddd0e3d26864736f6c63430005100032
Deployed Bytecode Sourcemap
23631:7110:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23631:7110: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;:::-;;26054:693;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26054:693:0;-1:-1:-1;;;;;26054:693:0;;:::i;:::-;;;;;;;;;;;;;;;;24447:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24447:42:0;-1:-1:-1;;;;;24447:42:0;;:::i;21973:29::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21973:29:0;;;;;;;;;;;;;;23754:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23867:48;;;:::i;22568:91::-;;;:::i;23706:41::-;;;:::i;24053:::-;;;:::i;27390:234::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27390:234:0;;:::i;24619:38::-;;;:::i;29975:763::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29975:763:0;;:::i;27737:1175::-;;;:::i;23803:55::-;;;:::i;22667:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22667:110:0;-1:-1:-1;;;;;22667:110:0;;:::i;11156:140::-;;;:::i;22400:70::-;;;:::i;24101:29::-;;;:::i;26911:471::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26911:471:0;;;;;;-1:-1:-1;;;;;26911:471:0;;:::i;24269:29::-;;;:::i;25531:131::-;;;:::i;25338:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25338:185:0;;:::i;24383:57::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24383:57:0;-1:-1:-1;;;;;24383:57:0;;:::i;24137:37::-;;;:::i;10345:79::-;;;:::i;10711:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;23922:67;;;:::i;24305:29::-;;;:::i;25670:376::-;;;:::i;24341:35::-;;;:::i;23998:48::-;;;:::i;24498:58::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24498:58:0;-1:-1:-1;;;;;24498:58:0;;:::i;27632:97::-;;;:::i;24231: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;26755:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26755:148:0;-1:-1:-1;;;;;26755: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;26054:693::-;-1:-1:-1;;;;;26289:16:0;;26108:7;26289:16;;;:7;:16;;;;;;;;;26213:22;:31;;;;;;26108:7;;26155:151;;:115;;26265:4;;26155:91;;26192:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;26155:18;26165:7;26155:9;:18::i;:::-;:36;:91;:36;:91;:::i;:::-;:109;:115;:109;:115;:::i;:::-;:133;:151;:133;:151;:::i;:::-;26317:19;26339:3;;:28;;;-1:-1:-1;;;26339:28:0;;26361:4;26339:28;;;;;;26128:178;;-1:-1:-1;26317:19:0;;-1:-1:-1;;;;;26339:3:0;;;;:13;;:28;;;;;;;;;;;;;;:3;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;26339:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26339:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26339:28:0;;-1:-1:-1;26396:13:0;:11;:13::i;:::-;26382:11;:27;26378:41;;;26418:1;26411:8;;;;;;26378:41;26655:11;26617:35;26638:13;:11;:13::i;:::-;26617:16;;:35;:20;:35;:::i;:::-;:49;26613:92;;;26675:30;26691:13;:11;:13::i;:::-;26675:11;;:30;:15;:30;:::i;:::-;26668:37;;;;;;26613:92;-1:-1:-1;26723:16:0;-1:-1:-1;26054:693:0;;;;:::o;24447:42::-;;;;;;;;;;;;;:::o;21973:29::-;;;-1:-1:-1;;;;;21973:29:0;;:::o;23754:40::-;23792:2;23754:40;:::o;23867:48::-;23906:9;23867:48;:::o;22568:91::-;22639:12;;22568:91;;:::o;23706:41::-;23741:6;23706:41;:::o;24053:::-;;;;:::o;27390:234::-;27444:10;25073:16;:14;:16::i;:::-;25050:20;:39;25117:26;:24;:26::i;:::-;25100:14;:43;-1:-1:-1;;;;;25158:21:0;;;25154:157;;25215:15;25222:7;25215:6;:15::i;:::-;-1:-1:-1;;;;;25196:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25279:20;;25245:22;:31;;;;;;:54;25154:157;28980:12;;28961:15;:31;28957:821;;29030:53;29079:3;29030:44;29053:20;;29030:18;;:22;;:44;;;;:::i;:53::-;29009:18;:74;;;29122:22;;23961:28;;29122:46;;:22;:46;:26;:46;:::i;:::-;:61;29118:185;;;29242:22;;29225:40;;23961:28;;29225:40;:16;:40;:::i;:::-;29204:18;:61;29118:185;29323:18;;:22;29319:229;;29366:3;;;29390:18;;29366:43;;;-1:-1:-1;;;29366:43:0;;29383:4;29366:43;;;;;;;;;;;;-1:-1:-1;;;;;29366:3:0;;;;:8;;:43;;;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;29366:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;29480:18:0;;29453:22;;:46;;-1:-1:-1;29453:22:0;-1:-1:-1;29453:46:0;:26;:46;:::i;:::-;29428:22;:71;29518:12;:14;;;;;;;;;-1:-1:-1;;29518:14:0;;;;;;29319:229;29577:18;;:32;;23741:6;29577:32;:22;:32;:::i;:::-;29564:10;:45;29641:15;29624:14;:32;;;29686:29;;23741:6;29686:29;:19;:29;:::i;:::-;29671:12;:44;29747:18;;29735:31;;;;;;;-1:-1:-1;;;;;;;;;;;29735:31:0;;;;;;;;28957:821;29864:9;;29846:15;:27;29838:49;;;;;-1:-1:-1;;;29838:49:0;;;;;;;;;;;;-1:-1:-1;;;29838:49:0;;;;;;;;;;;;;;;29921:1;29906:12;;:16;29898:49;;;;;-1:-1:-1;;;29898:49:0;;;;;;;;;;;;-1:-1:-1;;;29898:49:0;;;;;;;;;;;;;;;27510:1;27501:6;:10;27493:40;;;;;-1:-1:-1;;;27493:40:0;;;;;;;;;;;;-1:-1:-1;;;27493:40:0;;;;;;;;;;;;;;;27544:27;27564:6;27544:19;:27::i;:::-;27587:29;;;;;;;;27597:10;;27587:29;;;;;;;;;;27390:234;;:::o;24619:38::-;;;;:::o;29975:763::-;10557:9;:7;:9::i;:::-;10549:54;;;;;-1:-1:-1;;;10549:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10549:54:0;;;;;;;;;;;;;;;30059:1;25073:16;:14;:16::i;:::-;25050:20;:39;25117:26;:24;:26::i;:::-;25100:14;:43;-1:-1:-1;;;;;25158:21:0;;;25154:157;;25215:15;25222:7;25215:6;:15::i;:::-;-1:-1:-1;;;;;25196:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25279:20;;25245:22;:31;;;;;;:54;25154:157;30082:12;;:17;30074:65;;;;-1:-1:-1;;;30074:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30150:18;:27;;;30194:22;;23961:28;;30194:46;;30171:6;30194:46;:26;:46;:::i;:::-;:61;30190:177;;;30310:22;;30293:40;;23961:28;;30293:40;:16;:40;:::i;:::-;30272:18;:61;30190:177;30392:18;;:32;;23741:6;30392:32;:22;:32;:::i;:::-;30379:10;:45;30435:3;;;30459:18;;30435:43;;;-1:-1:-1;;;30435:43:0;;30452:4;30435:43;;;;;;;;;;;;-1:-1:-1;;;;;30435:3:0;;;;:8;;:43;;;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;30435:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;30541:18:0;;30514:22;;:46;;-1:-1:-1;30514:22:0;-1:-1:-1;30514:46:0;:26;:46;:::i;:::-;30489:22;:71;30571:12;:14;;;;;;;;;-1:-1:-1;;30571:14:0;;;;;;30613:15;30596:14;:32;;;30654:29;;23741:6;30654:29;:19;:29;:::i;:::-;30639:12;:44;30711:18;;30699:31;;;;;;;-1:-1:-1;;;;;;;;;;;30699:31:0;;;;;;;;10614:1;29975:763;:::o;27737:1175::-;27825:7;27778:10;25073:16;:14;:16::i;:::-;25050:20;:39;25117:26;:24;:26::i;:::-;25100:14;:43;-1:-1:-1;;;;;25158:21:0;;;25154:157;;25215:15;25222:7;25215:6;:15::i;:::-;-1:-1:-1;;;;;25196:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25279:20;;25245:22;:31;;;;;;:54;25154:157;28980:12;;28961:15;:31;28957:821;;29030:53;29079:3;29030:44;29053:20;;29030:18;;:22;;:44;;;;:::i;:53::-;29009:18;:74;;;29122:22;;23961:28;;29122:46;;:22;:46;:26;:46;:::i;:::-;:61;29118:185;;;29242:22;;29225:40;;23961:28;;29225:40;:16;:40;:::i;:::-;29204:18;:61;29118:185;29323:18;;:22;29319:229;;29366:3;;;29390:18;;29366:43;;;-1:-1:-1;;;29366:43:0;;29383:4;29366:43;;;;;;;;;;;;-1:-1:-1;;;;;29366:3:0;;;;:8;;:43;;;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;29366:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;29480:18:0;;29453:22;;:46;;-1:-1:-1;29453:22:0;-1:-1:-1;29453:46:0;:26;:46;:::i;:::-;29428:22;:71;29518:12;:14;;;;;;;;;-1:-1:-1;;29518:14:0;;;;;;29319:229;29577:18;;:32;;23741:6;29577:32;:22;:32;:::i;:::-;29564:10;:45;29641:15;29624:14;:32;;;29686:29;;23741:6;29686:29;:19;:29;:::i;:::-;29671:12;:44;29747:18;;29735:31;;;;;;;-1:-1:-1;;;;;;;;;;;29735:31:0;;;;;;;;28957:821;29864:9;;29846:15;:27;29838:49;;;;;-1:-1:-1;;;29838:49:0;;;;;;;;;;;;-1:-1:-1;;;29838:49:0;;;;;;;;;;;;;;;29921:1;29906:12;;:16;29898:49;;;;;-1:-1:-1;;;29898:49:0;;;;;;;;;;;;-1:-1:-1;;;29898:49:0;;;;;;;;;;;;;;;27845:14;27862:18;27869:10;27862:6;:18::i;:::-;27845:35;;27904:1;27895:6;:10;27891:995;;;28008:10;28000:19;;;;:7;:19;;;;;;;;;27960:23;:35;;;;;;;:60;;;:39;:60;:::i;:::-;27946:10;27922:35;;;;:23;:35;;;;;;;;:98;;;;28035:7;:19;;;;;:23;;;28096:54;28146:3;28096:45;:6;28107:33;28096:45;:10;:45;:::i;:54::-;28172:18;28235:3;28075:75;;-1:-1:-1;28193:19:0;;;;28235:40;;-1:-1:-1;;;;;28235:3:0;28252:10;28075:75;28235:40;:16;:40;:::i;:::-;28295:34;;;;;;;;28306:10;;28295:34;;;;;;;;;;28394:14;;28346:16;;-1:-1:-1;;;;;28394:14:0;:28;28390:132;;28467:14;;;28454:52;;;-1:-1:-1;;;28454:52:0;;28495:10;28454:52;;;;;;;;-1:-1:-1;;;;;28467:14:0;;;;28454:40;;:52;;;;;;;;;;;;;;28467:14;28454:52;;;5:2:-1;;;;30:1;27;20:12;5:2;28454:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28454:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28454:52:0;;-1:-1:-1;28390:132:0;-1:-1:-1;;;;;28540:22:0;;;28536:305;;28614:3;;:38;;-1:-1:-1;;;;;28614:3:0;28631:8;28641:10;28614:38;:16;:38;:::i;:::-;28676:36;;;;;;;;-1:-1:-1;;;;;28676:36:0;;;;;;;;;;;;;28536:305;;;28763:3;;;:20;;;-1:-1:-1;;;28763:20:0;;;;;;;;;;-1:-1:-1;;;;;28763:3:0;;;;:8;;:20;;;;;;;;;;:3;;:20;;;5:2:-1;;;;30:1;27;20:12;5:2;28763:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;28807:18:0;;;;;;;;;;-1:-1:-1;28807:18:0;;;;;;;-1:-1:-1;28807:18:0;28536:305;28864:10;28857:17;;;;;;;;27891:995;28903:1;28896:8;;;29958:1;27737:1175;;:::o;23803:55::-;23857:1;23803:55;:::o;22667:110::-;-1:-1:-1;;;;;22751:18:0;22724:7;22751:18;;;:9;:18;;;;;;;22667: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;22400:70::-;;;-1:-1:-1;;;;;22400:70:0;;:::o;24101:29::-;;;;;;:::o;26911:471::-;26980:10;25073:16;:14;:16::i;:::-;25050:20;:39;25117:26;:24;:26::i;:::-;25100:14;:43;-1:-1:-1;;;;;25158:21:0;;;25154:157;;25215:15;25222:7;25215:6;:15::i;:::-;-1:-1:-1;;;;;25196:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25279:20;;25245:22;:31;;;;;;:54;25154:157;28980:12;;28961:15;:31;28957:821;;29030:53;29079:3;29030:44;29053:20;;29030:18;;:22;;:44;;;;:::i;:53::-;29009:18;:74;;;29122:22;;23961:28;;29122:46;;:22;:46;:26;:46;:::i;:::-;:61;29118:185;;;29242:22;;29225:40;;23961:28;;29225:40;:16;:40;:::i;:::-;29204:18;:61;29118:185;29323:18;;:22;29319:229;;29366:3;;;29390:18;;29366:43;;;-1:-1:-1;;;29366:43:0;;29383:4;29366:43;;;;;;;;;;;;-1:-1:-1;;;;;29366:3:0;;;;:8;;:43;;;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;29366:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;29480:18:0;;29453:22;;:46;;-1:-1:-1;29453:22:0;-1:-1:-1;29453:46:0;:26;:46;:::i;:::-;29428:22;:71;29518:12;:14;;;;;;;;;-1:-1:-1;;29518:14:0;;;;;;29319:229;29577:18;;:32;;23741:6;29577:32;:22;:32;:::i;:::-;29564:10;:45;29641:15;29624:14;:32;;;29686:29;;23741:6;29686:29;:19;:29;:::i;:::-;29671:12;:44;29747:18;;29735:31;;;;;;;-1:-1:-1;;;;;;;;;;;29735:31:0;;;;;;;;28957:821;29864:9;;29846:15;:27;29838:49;;;;;-1:-1:-1;;;29838:49:0;;;;;;;;;;;;-1:-1:-1;;;29838:49:0;;;;;;;;;;;;;;;29921:1;29906:12;;:16;29898:49;;;;;-1:-1:-1;;;29898:49:0;;;;;;;;;;;;-1:-1:-1;;;29898:49:0;;;;;;;;;;;;;;;27046:1;27037:6;:10;27029:37;;;;;-1:-1:-1;;;27029:37:0;;;;;;;;;;;;-1:-1:-1;;;27029:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27085:22:0;;27097:10;27085:22;;27077:61;;;;;-1:-1:-1;;;27077:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27149:24;27166:6;27149:16;:24::i;:::-;27189:26;;;;;;;;27196:10;;27189:26;;;;;;;;;;27230:14;;-1:-1:-1;;;;;27230:14:0;:28;;;;:54;;-1:-1:-1;;;;;;27262:22:0;;;;27230:54;27226:149;;;27314:14;;;27301:62;;;-1:-1:-1;;;27301:62:0;;27342:10;27301:62;;;;;;;-1:-1:-1;;;;;27301:62:0;;;;;;;;;27314:14;;;27301:40;;:62;;;;;27314:14;;27301:62;;;;;;;27314:14;;27301:62;;;5:2:-1;;;;30:1;27;20:12;5:2;27301:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27301:62:0;;;;27226:149;26911:471;;;:::o;24269:29::-;;;;:::o;25531:131::-;25588:7;25615:39;25624:15;25641:12;;25615:8;:39::i;:::-;25608:46;;25531:131;:::o;25338:185::-;10557:9;:7;:9::i;:::-;10549:54;;;;;-1:-1:-1;;;10549:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10549:54:0;;;;;;;;;;;;;;;25458:3;25433:21;:28;;25425:37;;;;;;25471:20;:44;25338:185::o;24383:57::-;;;;;;;;;;;;;:::o;24137: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;23922:67::-;23961:28;23922:67;:::o;24305:29::-;;;;:::o;25670:376::-;25717:7;25741:13;:11;:13::i;:::-;25737:78;;-1:-1:-1;25783:20:0;;25776:27;;25737:78;25841:197;25880:147;26013:13;:11;:13::i;:::-;25880:114;25989:4;25880:90;25959:10;;25880:60;25925:14;;25880:26;:24;:26::i;:147::-;25841:20;;;:197;:24;:197;:::i;24341:35::-;;;;:::o;23998:48::-;;;;:::o;24498:58::-;;;;;;;;;;;;;:::o;27632:97::-;27668:31;27677:21;27687:10;27677:9;:21::i;:::-;27668:8;:31::i;:::-;27710:11;:9;:11::i;:::-;;27632:97::o;24231: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;26755:148::-;26815:7;26842:53;26879:15;26886:7;26879:6;:15::i;:::-;-1:-1:-1;;;;;26842:32:0;;;;;;:23;:32;;;;;;;:53;:36;:53;:::i;:::-;26835:60;26755:148;-1:-1:-1;;26755: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;;;;;;;;;;;;;;;;;;;;;;;;;;;23227:221;23301:12;;:24;;23318:6;23301:24;:16;:24;:::i;:::-;23286:12;:39;23370:10;23360:21;;;;:9;:21;;;;;;:33;;23386:6;23360:33;:25;:33;:::i;:::-;23346:10;23336:21;;;;:9;:21;;;;;:57;;;;23404:3;;:36;;-1:-1:-1;;;;;23404:3:0;;;;23433: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;22785:434::-;22858:10;22888:28;22858:10;22888:26;:28::i;:::-;22887:29;22879:104;;;;-1:-1:-1;;;22879:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23002:9;-1:-1:-1;;;;;23002:19:0;;;22994:45;;;;;-1:-1:-1;;;22994:45:0;;;;;;;;;;;;-1:-1:-1;;;22994:45:0;;;;;;;;;;;;;;;23065:12;;:24;;23082:6;23065:24;:16;:24;:::i;:::-;23050:12;:39;-1:-1:-1;;;;;23120:17:0;;;;;;:9;:17;;;;;;:29;;23142:6;23120:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;23100:17:0;;;;;;;:9;:17;;;;;:49;;;;23160:3;;:51;;:3;23110:6;23197:4;23204:6;23160:51;:20;:51;:::i;:::-;22785:434;;:::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://d8de657bf1c2fe5cfdaf7f6000b948fb9a272ef30562eec0f149ccddd0e3d268
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1.28 | 859.4063 | $1,100.04 |
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.