Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 10,286 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 13769056 | 1089 days ago | IN | 0 ETH | 0.01841165 | ||||
Withdraw | 11917915 | 1377 days ago | IN | 0 ETH | 0.0282156 | ||||
Withdraw | 11774490 | 1399 days ago | IN | 0 ETH | 0.02821728 | ||||
Withdraw | 11539893 | 1435 days ago | IN | 0 ETH | 0.01258963 | ||||
Withdraw | 11468671 | 1446 days ago | IN | 0 ETH | 0.01793706 | ||||
Withdraw | 11422267 | 1453 days ago | IN | 0 ETH | 0.00826363 | ||||
Withdraw | 11311182 | 1470 days ago | IN | 0 ETH | 0.01269777 | ||||
Withdraw | 11282790 | 1474 days ago | IN | 0 ETH | 0.01130374 | ||||
Withdraw | 11261942 | 1478 days ago | IN | 0 ETH | 0.00362793 | ||||
Withdraw | 11237464 | 1481 days ago | IN | 0 ETH | 0.00604863 | ||||
Withdraw | 11195545 | 1488 days ago | IN | 0 ETH | 0.00584396 | ||||
Withdraw | 11180864 | 1490 days ago | IN | 0 ETH | 0.00733072 | ||||
Withdraw | 11142079 | 1496 days ago | IN | 0 ETH | 0.00665121 | ||||
Withdraw | 11116368 | 1500 days ago | IN | 0 ETH | 0.00201621 | ||||
Withdraw | 11106344 | 1501 days ago | IN | 0 ETH | 0.00443332 | ||||
Withdraw | 11095511 | 1503 days ago | IN | 0 ETH | 0.00156779 | ||||
Withdraw | 11095511 | 1503 days ago | IN | 0 ETH | 0.005845 | ||||
Withdraw | 11047085 | 1510 days ago | IN | 0 ETH | 0.00504053 | ||||
Withdraw | 11046944 | 1511 days ago | IN | 0 ETH | 0.0056813 | ||||
Withdraw | 11037700 | 1512 days ago | IN | 0 ETH | 0.00355722 | ||||
Withdraw | 11034958 | 1512 days ago | IN | 0 ETH | 0.00467394 | ||||
Exit | 11032445 | 1513 days ago | IN | 0 ETH | 0.00467938 | ||||
Withdraw | 11021709 | 1514 days ago | IN | 0 ETH | 0.00674195 | ||||
Exit | 11019648 | 1515 days ago | IN | 0 ETH | 0.01402024 | ||||
Withdraw | 11018162 | 1515 days ago | IN | 0 ETH | 0.00403242 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
YFVRewardsKNCPool
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-20 */ /* ____ __ __ __ _ / __/__ __ ___ / /_ / / ___ / /_ (_)__ __ _\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ / /___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\ /___/ * 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; address public rewardVote; function notifyRewardAmount(uint256 reward) external; function setRewardReferral(address _rewardReferral) external onlyOwner { rewardReferral = _rewardReferral; } function setRewardVote(address _rewardVote) external onlyOwner { rewardVote = _rewardVote; } } // 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(0xbfDef139103033990082245C24FF4B23Dafd88cf); 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 { _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); y.safeTransferFrom(msg.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 IYFVReferral { function setReferrer(address farmer, address referrer) external; function getReferrer(address farmer) external view returns (address); } interface IYFVVote { function averageVotingValue(address poolAddress, uint256 votingItem) external view returns (uint16); } interface IYFVStake { function stakeOnBehalf(address stakeFor, uint256 amount) external; } contract YFVRewardsKNCPool is LPTokenWrapper, IRewardDistributionRecipient { IERC20 public yfv = IERC20(0x45f24BaEef268BB6d63AEe5129015d69702BCDfa); IERC20 public vUSD = IERC20(0x1B8E12F839BD4e73A47adDF76cF7F0097d74c14C); IERC20 public vETH = IERC20(0x76A034e76Aa835363056dd418611E4f81870f16e); uint256 public vUSD_REWARD_FRACTION_RATE = 21000000000; // 21 * 1e9 (vUSD decimals = 9) uint256 public vETH_REWARD_FRACTION_RATE = 21000000000000; // 21000 * 1e9 (vETH decimals = 9) uint256 public constant DURATION = 7 days; uint8 public constant NUMBER_EPOCHS = 10; uint256 public constant REFERRAL_COMMISSION_PERCENT = 1; uint256 public constant EPOCH_REWARD = 126000 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 = 1597944600; // Thursday, August 20, 2020 5:30: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 => bool) public claimedVETHRewards; // account -> has claimed vETH? mapping(address => uint256) public accumulatedStakingPower; // will accumulate every time staker does getReward() address public rewardStake; 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 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 vUSDBalance(address account) public view returns (uint256) { return earned(account).div(vUSD_REWARD_FRACTION_RATE); } function vETHBalance(address account) public view returns (uint256) { return stakingPower(account).div(vETH_REWARD_FRACTION_RATE); } function claimVETHReward() public { require(rewardRate == 0, "vETH could be claimed only after the pool ends."); uint256 claimAmount = vETHBalance(msg.sender); require(claimAmount > 0, "You have no vETH to claim"); require(!claimedVETHRewards[msg.sender], "You have claimed all pending vETH."); claimedVETHRewards[msg.sender] = true; vETH.safeTransfer(msg.sender, claimAmount); } function setRewardStake(address _rewardStake) external onlyOwner { rewardStake = _rewardStake; yfv.approve(rewardStake, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); } 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)) { IYFVReferral(rewardReferral).setReferrer(msg.sender, referrer); } } function stakeReward() public updateReward(msg.sender) checkNextEpoch checkStart { require(rewardStake != address(0), "Dont know the staking pool"); uint256 reward = getReward(); yfv.safeTransferFrom(msg.sender, address(this), reward); require(reward > 1, "Earned too little"); IYFVStake(rewardStake).stakeOnBehalf(msg.sender, reward); } 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); // 99% uint256 commission = reward - actualPaid; // 1% yfv.safeTransfer(msg.sender, actualPaid); emit RewardPaid(msg.sender, actualPaid); address referrer = address(0); if (rewardReferral != address(0)) { referrer = IYFVReferral(rewardReferral).getReferrer(msg.sender); } if (referrer != address(0)) { // send commission to referrer yfv.safeTransfer(referrer, commission); emit RewardPaid(msg.sender, commission); } else {// or burn yfv.burn(commission); emit Burned(commission); } vUSD.safeTransfer(msg.sender, reward.div(vUSD_REWARD_FRACTION_RATE)); return actualPaid; } return 0; } function nextRewardMultiplier() public view returns (uint16) { if (rewardVote != address(0)) { uint16 votingValue = IYFVVote(rewardVote).averageVotingValue(address(this), periodFinish); if (votingValue > 0) return votingValue; } return 100; } modifier checkNextEpoch() { if (block.timestamp >= periodFinish) { uint16 rewardMultiplier = nextRewardMultiplier(); // 50% -> 200% (by vote) currentEpochReward = EPOCH_REWARD.mul(rewardMultiplier).div(100); // x0.50 -> x2.00 (by vote) if (totalAccumulatedReward.add(currentEpochReward) > TOTAL_REWARD) { currentEpochReward = TOTAL_REWARD.sub(totalAccumulatedReward); // limit total reward } if (currentEpochReward > 0) { yfv.mint(address(this), currentEpochReward); vUSD.mint(address(this), currentEpochReward.div(vUSD_REWARD_FRACTION_RATE)); vETH.mint(address(this), currentEpochReward.div(vETH_REWARD_FRACTION_RATE)); 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"); _; } 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); vUSD.mint(address(this), currentEpochReward.div(vUSD_REWARD_FRACTION_RATE)); vETH.mint(address(this), currentEpochReward.div(vETH_REWARD_FRACTION_RATE)); 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":false,"inputs":[],"name":"claimVETHReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedVETHRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint16","name":"","type":"uint16"}],"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":[],"name":"rewardStake","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardVote","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":"address","name":"_rewardReferral","type":"address"}],"name":"setRewardReferral","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardStake","type":"address"}],"name":"setRewardStake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardVote","type":"address"}],"name":"setRewardVote","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":false,"inputs":[],"name":"stakeReward","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":true,"inputs":[],"name":"vETH","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"vETHBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vETH_REWARD_FRACTION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vUSD","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"vUSDBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vUSD_REWARD_FRACTION_RATE","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
6080604052600080546001600160a01b031990811673bfdef139103033990082245c24ff4b23dafd88cf1782556006805482167345f24baeef268bb6d63aee5129015d69702bcdfa179055600780548216731b8e12f839bd4e73a47addf76cf7f0097d74c14c179055600880549091167376a034e76aa835363056dd418611e4f81870f16e1790556404e3b29200600955651319718a5000600a55691aae7943876392c00000600b55600c819055600d805460ff19169055635f3eb318600e55600f8190556010556100d86001600160e01b0361012916565b600380546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a361012d565b3390565b612c898061013c6000396000f3fe608060405234801561001057600080fd5b50600436106102b95760003560e01c8063715018a611610182578063a56dfe4a116100e9578063df136d65116100a2578063e9fad8ee1161007c578063e9fad8ee1461062f578063ebe2b12b14610637578063f2fde38b1461063f578063ffe4890214610665576102b9565b8063df136d65146105f9578063e68e035b14610601578063e9b46e6d14610609576102b9565b8063a56dfe4a146105c9578063c3dee20b146105d1578063c8333bb2146105d9578063c8f33c91146105e1578063cd3daf9d146105e9578063dc8d3683146105f1576102b9565b806380faa57d1161013b57806380faa57d1461057b5780638b876347146105835780638da58897146105a95780638da5cb5b146105b15780638f32d59b146105b9578063a457536c146105c1576102b9565b8063715018a6146105275780637318a7301461052f578063766718081461053757806379a7d1be1461053f5780637acb7757146105475780637b0a47ee14610573576102b9565b80631d8a6d10116102265780633d18b912116101df5780633d18b912146104895780633d62bbe1146104915780634e8999ed146104b757806353220a42146104bf57806367b37b7a146104c757806370a0823114610501576102b9565b80631d8a6d10146103fa578063207e821d146104025780632e1a7d4d1461040a5780632e329bd3146104275780632f38c8a1146104465780633c6b16ab1461046c576102b9565b806313eb6c881161027857806313eb6c881461038e57806314f47dcc1461039657806318160ddd1461039e5780631961eaf9146103a65780631be05289146103cc5780631d6851c6146103d4576102b9565b80622dcfb9146102be5780628cc262146102e657806304e01d871461031e5780630700037d146103265780630cdb43c41461034c5780630fcfc6a814610370575b600080fd5b6102e4600480360360208110156102d457600080fd5b50356001600160a01b031661068b565b005b61030c600480360360208110156102fc57600080fd5b50356001600160a01b03166106f4565b60408051918252519081900360200190f35b61030c61080e565b61030c6004803603602081101561033c57600080fd5b50356001600160a01b0316610814565b610354610826565b604080516001600160a01b039092168252519081900360200190f35b610378610835565b6040805160ff9092168252519081900360200190f35b61030c61083a565b6102e4610848565b61030c610cd1565b6102e4600480360360208110156103bc57600080fd5b50356001600160a01b0316610cd8565b61030c610d41565b6102e4600480360360208110156103ea57600080fd5b50356001600160a01b0316610d48565b6102e4610e2b565b61030c610f58565b6102e46004803603602081101561042057600080fd5b5035610f5e565b61042f611333565b6040805161ffff9092168252519081900360200190f35b61030c6004803603602081101561045c57600080fd5b50356001600160a01b03166113e3565b6102e46004803603602081101561048257600080fd5b50356113fa565b61030c611749565b61030c600480360360208110156104a757600080fd5b50356001600160a01b0316611d3d565b610354611d4e565b61030c611d5d565b6104ed600480360360208110156104dd57600080fd5b50356001600160a01b0316611d62565b604080519115158252519081900360200190f35b61030c6004803603602081101561051757600080fd5b50356001600160a01b0316611d77565b6102e4611d92565b610354611e23565b610378611e32565b610354611e3b565b6102e46004803603604081101561055d57600080fd5b50803590602001356001600160a01b0316611e4a565b61030c61230f565b61030c612315565b61030c6004803603602081101561059957600080fd5b50356001600160a01b0316612328565b61030c61233a565b610354612340565b6104ed61234f565b610354612375565b610354612384565b610354612393565b61030c6123a2565b61030c6123b1565b61030c6123b7565b61030c61240b565b61030c612411565b61030c612417565b61030c6004803603602081101561061f57600080fd5b50356001600160a01b031661241d565b6102e461242f565b61030c612448565b6102e46004803603602081101561065557600080fd5b50356001600160a01b031661244e565b61030c6004803603602081101561067b57600080fd5b50356001600160a01b031661249e565b61069361234f565b6106d2576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038116600090815260146020908152604080832054601390925282205482916107759161076990670de0b6b3a76400009061075d906107489061073c6123b7565b9063ffffffff6124d116565b61075189611d77565b9063ffffffff61251a16565b9063ffffffff61257316565b9063ffffffff6125b516565b600654604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156107c657600080fd5b505afa1580156107da573d6000803e3d6000fd5b505050506040513d60208110156107f057600080fd5b50519050808211156108055791506108099050565b5090505b919050565b600a5481565b60146020526000908152604090205481565b6004546001600160a01b031681565b600a81565b691aae7943876392c0000081565b336108516123b7565b60125561085c612315565b6011556001600160a01b038116156108a357610877816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210610b4f5760006108b6611333565b90506108db606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091610900919063ffffffff6125b516565b111561092957600c54610925906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b5415610af557600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561098757600080fd5b505af115801561099b573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916109cb9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610a1a57600080fd5b505af1158015610a2e573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f1992503091610a5e9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610aad57600080fd5b505af1158015610ac1573d6000803e3d6000fd5b5050600b54600c54610adb9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b54610b0b9062093a8063ffffffff61257316565b601055426011819055610b279062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e544211610b91576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6017546001600160a01b0316610bee576040805162461bcd60e51b815260206004820152601a60248201527f446f6e74206b6e6f7720746865207374616b696e6720706f6f6c000000000000604482015290519081900360640190fd5b6000610bf8611749565b600654909150610c19906001600160a01b031633308463ffffffff61260f16565b60018111610c62576040805162461bcd60e51b81526020600482015260116024820152704561726e656420746f6f206c6974746c6560781b604482015290519081900360640190fd5b60175460408051632305af7160e11b81523360048201526024810184905290516001600160a01b039092169163460b5ee29160448082019260009290919082900301818387803b158015610cb557600080fd5b505af1158015610cc9573d6000803e3d6000fd5b505050505050565b6001545b90565b610ce061234f565b610d1f576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b62093a8081565b610d5061234f565b610d8f576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0383811691909117918290556006546040805163095ea7b360e01b8152938316600485015260001960248501525191169163095ea7b39160448083019260209291908290030181600087803b158015610dfc57600080fd5b505af1158015610e10573d6000803e3d6000fd5b505050506040513d6020811015610e2657600080fd5b505050565b60105415610e6a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612c26602f913960400191505060405180910390fd5b6000610e7533611d3d565b905060008111610ecc576040805162461bcd60e51b815260206004820152601960248201527f596f752068617665206e6f207645544820746f20636c61696d00000000000000604482015290519081900360640190fd5b3360009081526015602052604090205460ff1615610f1b5760405162461bcd60e51b8152600401808060200182810382526022815260200180612b566022913960400191505060405180910390fd5b336000818152601560205260409020805460ff19166001179055600854610f55916001600160a01b0391909116908363ffffffff61266f16565b50565b600c5481565b33610f676123b7565b601255610f72612315565b6011556001600160a01b03811615610fb957610f8d816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210611265576000610fcc611333565b9050610ff1606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091611016919063ffffffff6125b516565b111561103f57600c5461103b906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b541561120b57600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561109d57600080fd5b505af11580156110b1573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916110e19163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561113057600080fd5b505af1158015611144573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916111749163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156111c357600080fd5b505af11580156111d7573d6000803e3d6000fd5b5050600b54600c546111f19350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b546112219062093a8063ffffffff61257316565b60105542601181905561123d9062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e5442116112a7576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600082116112f0576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b6112f9826126c1565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b6005546000906001600160a01b0316156113dd57600554600f54604080516397ec0ffd60e01b81523060048201526024810192909252516000926001600160a01b0316916397ec0ffd916044808301926020929190829003018186803b15801561139c57600080fd5b505afa1580156113b0573d6000803e3d6000fd5b505050506040513d60208110156113c657600080fd5b5051905061ffff8116156113db579050610cd5565b505b50606490565b60006113f460095461075d846106f4565b92915050565b61140261234f565b611441576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b600061144b6123b7565b601255611456612315565b6011556001600160a01b0381161561149d57611471816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f54156114dc5760405162461bcd60e51b8152600401808060200182810382526023815260200180612c036023913960400191505060405180910390fd5b600b829055600c546a010ad0bca349e3bb80000090611501908463ffffffff6125b516565b111561152a57600c54611526906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b546115409062093a8063ffffffff61257316565b601055600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561159957600080fd5b505af11580156115ad573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916115dd9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561162c57600080fd5b505af1158015611640573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916116709163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156116bf57600080fd5b505af11580156116d3573d6000803e3d6000fd5b5050600b54600c546116ed9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff1990911617905542601181905561171f9062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a15050565b6000336117546123b7565b60125561175f612315565b6011556001600160a01b038116156117a65761177a816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210611a525760006117b9611333565b90506117de606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091611803919063ffffffff6125b516565b111561182c57600c54611828906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b54156119f857600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561188a57600080fd5b505af115801561189e573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916118ce9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561191d57600080fd5b505af1158015611931573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916119619163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156119b057600080fd5b505af11580156119c4573d6000803e3d6000fd5b5050600b54600c546119de9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b54611a0e9062093a8063ffffffff61257316565b601055426011819055611a2a9062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e544211611a94576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000611a9f336106f4565b90506001811115611d335733600090815260146020908152604080832054601690925290912054611ad59163ffffffff6125b516565b3360009081526016602090815260408083209390935560149052908120819055611b0b606461075d84606363ffffffff61251a16565b60065490915081830390611b2f906001600160a01b0316338463ffffffff61266f16565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a26004546000906001600160a01b031615611bf4576004805460408051634a9fefc760e01b81523393810193909352516001600160a01b0390911691634a9fefc7916024808301926020929190829003018186803b158015611bc557600080fd5b505afa158015611bd9573d6000803e3d6000fd5b505050506040513d6020811015611bef57600080fd5b505190505b6001600160a01b03811615611c5b57600654611c20906001600160a01b0316828463ffffffff61266f16565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a2611cf5565b60065460408051630852cd8d60e31b81526004810185905290516001600160a01b03909216916342966c689160248082019260009290919082900301818387803b158015611ca857600080fd5b505af1158015611cbc573d6000803e3d6000fd5b50506040805185815290517fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e9350908190036020019150a15b611d2733611d0e6009548761257390919063ffffffff16565b6007546001600160a01b0316919063ffffffff61266f16565b82955050505050611d39565b60009250505b5090565b60006113f4600a5461075d8461249e565b6017546001600160a01b031681565b600181565b60156020526000908152604090205460ff1681565b6001600160a01b031660009081526002602052604090205490565b611d9a61234f565b611dd9576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6006546001600160a01b031681565b600d5460ff1681565b6008546001600160a01b031681565b33611e536123b7565b601255611e5e612315565b6011556001600160a01b03811615611ea557611e79816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210612151576000611eb8611333565b9050611edd606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091611f02919063ffffffff6125b516565b1115611f2b57600c54611f27906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b54156120f757600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015611f8957600080fd5b505af1158015611f9d573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f1992503091611fcd9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916120609163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156120af57600080fd5b505af11580156120c3573d6000803e3d6000fd5b5050600b54600c546120dd9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b5461210d9062093a8063ffffffff61257316565b6010554260118190556121299062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e544211612193576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600083116121d9576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6001600160a01b038216331415612237576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420726566657220796f757273656c662e000000000000604482015290519081900360640190fd5b61224083612722565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a26004546001600160a01b03161580159061229857506001600160a01b03821615155b15610e2657600480546040805163bbddaca360e01b815233938101939093526001600160a01b038581166024850152905191169163bbddaca391604480830192600092919082900301818387803b1580156122f257600080fd5b505af1158015612306573d6000803e3d6000fd5b50505050505050565b60105481565b600061232342600f54612784565b905090565b60136020526000908152604090205481565b600e5481565b6003546001600160a01b031690565b6003546000906001600160a01b031661236661279a565b6001600160a01b031614905090565b6007546001600160a01b031681565b6000546001600160a01b031681565b6005546001600160a01b031681565b6a010ad0bca349e3bb80000081565b60115481565b60006123c1610cd1565b6123ce5750601254610cd5565b6123236123fc6123dc610cd1565b61075d670de0b6b3a764000061075160105461075160115461073c612315565b6012549063ffffffff6125b516565b60095481565b60125481565b600b5481565b60166020526000908152604090205481565b61244061243b33611d77565b610f5e565b610f55611749565b600f5481565b61245661234f565b612495576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b610f558161279e565b60006113f46124ac836106f4565b6001600160a01b0384166000908152601660205260409020549063ffffffff6125b516565b600061251383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061283f565b9392505050565b600082612529575060006113f4565b8282028284828161253657fe5b04146125135760405162461bcd60e51b8152600401808060200182810382526021815260200180612b986021913960400191505060405180910390fd5b600061251383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128d6565b600082820183811015612513576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261266990859061293b565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e2690849061293b565b6001546126d4908263ffffffff6124d116565b600155336000908152600260205260409020546126f7908263ffffffff6124d116565b336000818152600260205260408120929092559054610f55916001600160a01b03909116908361266f565b600154612735908263ffffffff6125b516565b60015533600090815260026020526040902054612758908263ffffffff6125b516565b336000818152600260205260408120929092559054610f55916001600160a01b0390911690308461260f565b60008183106127935781612513565b5090919050565b3390565b6001600160a01b0381166127e35760405162461bcd60e51b8152600401808060200182810382526026815260200180612b306026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156128ce5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561289357818101518382015260200161287b565b50505050905090810190601f1680156128c05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836129255760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561289357818101518382015260200161287b565b50600083858161293157fe5b0495945050505050565b61294d826001600160a01b0316612af3565b61299e576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106129dc5780518252601f1990920191602091820191016129bd565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612a3e576040519150601f19603f3d011682016040523d82523d6000602084013e612a43565b606091505b509150915081612a9a576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561266957808060200190516020811015612ab657600080fd5b50516126695760405162461bcd60e51b815260040180806020018281038252602a815260200180612bd9602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590612b275750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373596f75206861766520636c61696d656420616c6c2070656e64696e6720764554482ede88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644f6e6c792063616e2063616c6c206f6e636520746f207374617274207374616b696e677645544820636f756c6420626520636c61696d6564206f6e6c792061667465722074686520706f6f6c20656e64732ea265627a7a72315820f71f727c8166e37bf6930f736c7aebfa6d6efe72b06248c210e1b1e9d02b97d464736f6c63430005110032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102b95760003560e01c8063715018a611610182578063a56dfe4a116100e9578063df136d65116100a2578063e9fad8ee1161007c578063e9fad8ee1461062f578063ebe2b12b14610637578063f2fde38b1461063f578063ffe4890214610665576102b9565b8063df136d65146105f9578063e68e035b14610601578063e9b46e6d14610609576102b9565b8063a56dfe4a146105c9578063c3dee20b146105d1578063c8333bb2146105d9578063c8f33c91146105e1578063cd3daf9d146105e9578063dc8d3683146105f1576102b9565b806380faa57d1161013b57806380faa57d1461057b5780638b876347146105835780638da58897146105a95780638da5cb5b146105b15780638f32d59b146105b9578063a457536c146105c1576102b9565b8063715018a6146105275780637318a7301461052f578063766718081461053757806379a7d1be1461053f5780637acb7757146105475780637b0a47ee14610573576102b9565b80631d8a6d10116102265780633d18b912116101df5780633d18b912146104895780633d62bbe1146104915780634e8999ed146104b757806353220a42146104bf57806367b37b7a146104c757806370a0823114610501576102b9565b80631d8a6d10146103fa578063207e821d146104025780632e1a7d4d1461040a5780632e329bd3146104275780632f38c8a1146104465780633c6b16ab1461046c576102b9565b806313eb6c881161027857806313eb6c881461038e57806314f47dcc1461039657806318160ddd1461039e5780631961eaf9146103a65780631be05289146103cc5780631d6851c6146103d4576102b9565b80622dcfb9146102be5780628cc262146102e657806304e01d871461031e5780630700037d146103265780630cdb43c41461034c5780630fcfc6a814610370575b600080fd5b6102e4600480360360208110156102d457600080fd5b50356001600160a01b031661068b565b005b61030c600480360360208110156102fc57600080fd5b50356001600160a01b03166106f4565b60408051918252519081900360200190f35b61030c61080e565b61030c6004803603602081101561033c57600080fd5b50356001600160a01b0316610814565b610354610826565b604080516001600160a01b039092168252519081900360200190f35b610378610835565b6040805160ff9092168252519081900360200190f35b61030c61083a565b6102e4610848565b61030c610cd1565b6102e4600480360360208110156103bc57600080fd5b50356001600160a01b0316610cd8565b61030c610d41565b6102e4600480360360208110156103ea57600080fd5b50356001600160a01b0316610d48565b6102e4610e2b565b61030c610f58565b6102e46004803603602081101561042057600080fd5b5035610f5e565b61042f611333565b6040805161ffff9092168252519081900360200190f35b61030c6004803603602081101561045c57600080fd5b50356001600160a01b03166113e3565b6102e46004803603602081101561048257600080fd5b50356113fa565b61030c611749565b61030c600480360360208110156104a757600080fd5b50356001600160a01b0316611d3d565b610354611d4e565b61030c611d5d565b6104ed600480360360208110156104dd57600080fd5b50356001600160a01b0316611d62565b604080519115158252519081900360200190f35b61030c6004803603602081101561051757600080fd5b50356001600160a01b0316611d77565b6102e4611d92565b610354611e23565b610378611e32565b610354611e3b565b6102e46004803603604081101561055d57600080fd5b50803590602001356001600160a01b0316611e4a565b61030c61230f565b61030c612315565b61030c6004803603602081101561059957600080fd5b50356001600160a01b0316612328565b61030c61233a565b610354612340565b6104ed61234f565b610354612375565b610354612384565b610354612393565b61030c6123a2565b61030c6123b1565b61030c6123b7565b61030c61240b565b61030c612411565b61030c612417565b61030c6004803603602081101561061f57600080fd5b50356001600160a01b031661241d565b6102e461242f565b61030c612448565b6102e46004803603602081101561065557600080fd5b50356001600160a01b031661244e565b61030c6004803603602081101561067b57600080fd5b50356001600160a01b031661249e565b61069361234f565b6106d2576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038116600090815260146020908152604080832054601390925282205482916107759161076990670de0b6b3a76400009061075d906107489061073c6123b7565b9063ffffffff6124d116565b61075189611d77565b9063ffffffff61251a16565b9063ffffffff61257316565b9063ffffffff6125b516565b600654604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156107c657600080fd5b505afa1580156107da573d6000803e3d6000fd5b505050506040513d60208110156107f057600080fd5b50519050808211156108055791506108099050565b5090505b919050565b600a5481565b60146020526000908152604090205481565b6004546001600160a01b031681565b600a81565b691aae7943876392c0000081565b336108516123b7565b60125561085c612315565b6011556001600160a01b038116156108a357610877816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210610b4f5760006108b6611333565b90506108db606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091610900919063ffffffff6125b516565b111561092957600c54610925906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b5415610af557600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561098757600080fd5b505af115801561099b573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916109cb9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610a1a57600080fd5b505af1158015610a2e573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f1992503091610a5e9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610aad57600080fd5b505af1158015610ac1573d6000803e3d6000fd5b5050600b54600c54610adb9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b54610b0b9062093a8063ffffffff61257316565b601055426011819055610b279062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e544211610b91576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6017546001600160a01b0316610bee576040805162461bcd60e51b815260206004820152601a60248201527f446f6e74206b6e6f7720746865207374616b696e6720706f6f6c000000000000604482015290519081900360640190fd5b6000610bf8611749565b600654909150610c19906001600160a01b031633308463ffffffff61260f16565b60018111610c62576040805162461bcd60e51b81526020600482015260116024820152704561726e656420746f6f206c6974746c6560781b604482015290519081900360640190fd5b60175460408051632305af7160e11b81523360048201526024810184905290516001600160a01b039092169163460b5ee29160448082019260009290919082900301818387803b158015610cb557600080fd5b505af1158015610cc9573d6000803e3d6000fd5b505050505050565b6001545b90565b610ce061234f565b610d1f576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b62093a8081565b610d5061234f565b610d8f576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0383811691909117918290556006546040805163095ea7b360e01b8152938316600485015260001960248501525191169163095ea7b39160448083019260209291908290030181600087803b158015610dfc57600080fd5b505af1158015610e10573d6000803e3d6000fd5b505050506040513d6020811015610e2657600080fd5b505050565b60105415610e6a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612c26602f913960400191505060405180910390fd5b6000610e7533611d3d565b905060008111610ecc576040805162461bcd60e51b815260206004820152601960248201527f596f752068617665206e6f207645544820746f20636c61696d00000000000000604482015290519081900360640190fd5b3360009081526015602052604090205460ff1615610f1b5760405162461bcd60e51b8152600401808060200182810382526022815260200180612b566022913960400191505060405180910390fd5b336000818152601560205260409020805460ff19166001179055600854610f55916001600160a01b0391909116908363ffffffff61266f16565b50565b600c5481565b33610f676123b7565b601255610f72612315565b6011556001600160a01b03811615610fb957610f8d816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210611265576000610fcc611333565b9050610ff1606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091611016919063ffffffff6125b516565b111561103f57600c5461103b906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b541561120b57600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561109d57600080fd5b505af11580156110b1573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916110e19163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561113057600080fd5b505af1158015611144573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916111749163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156111c357600080fd5b505af11580156111d7573d6000803e3d6000fd5b5050600b54600c546111f19350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b546112219062093a8063ffffffff61257316565b60105542601181905561123d9062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e5442116112a7576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600082116112f0576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b6112f9826126c1565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b6005546000906001600160a01b0316156113dd57600554600f54604080516397ec0ffd60e01b81523060048201526024810192909252516000926001600160a01b0316916397ec0ffd916044808301926020929190829003018186803b15801561139c57600080fd5b505afa1580156113b0573d6000803e3d6000fd5b505050506040513d60208110156113c657600080fd5b5051905061ffff8116156113db579050610cd5565b505b50606490565b60006113f460095461075d846106f4565b92915050565b61140261234f565b611441576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b600061144b6123b7565b601255611456612315565b6011556001600160a01b0381161561149d57611471816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f54156114dc5760405162461bcd60e51b8152600401808060200182810382526023815260200180612c036023913960400191505060405180910390fd5b600b829055600c546a010ad0bca349e3bb80000090611501908463ffffffff6125b516565b111561152a57600c54611526906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b546115409062093a8063ffffffff61257316565b601055600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561159957600080fd5b505af11580156115ad573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916115dd9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561162c57600080fd5b505af1158015611640573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916116709163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156116bf57600080fd5b505af11580156116d3573d6000803e3d6000fd5b5050600b54600c546116ed9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff1990911617905542601181905561171f9062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a15050565b6000336117546123b7565b60125561175f612315565b6011556001600160a01b038116156117a65761177a816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210611a525760006117b9611333565b90506117de606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091611803919063ffffffff6125b516565b111561182c57600c54611828906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b54156119f857600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b15801561188a57600080fd5b505af115801561189e573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f19925030916118ce9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561191d57600080fd5b505af1158015611931573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916119619163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156119b057600080fd5b505af11580156119c4573d6000803e3d6000fd5b5050600b54600c546119de9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b54611a0e9062093a8063ffffffff61257316565b601055426011819055611a2a9062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e544211611a94576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000611a9f336106f4565b90506001811115611d335733600090815260146020908152604080832054601690925290912054611ad59163ffffffff6125b516565b3360009081526016602090815260408083209390935560149052908120819055611b0b606461075d84606363ffffffff61251a16565b60065490915081830390611b2f906001600160a01b0316338463ffffffff61266f16565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a26004546000906001600160a01b031615611bf4576004805460408051634a9fefc760e01b81523393810193909352516001600160a01b0390911691634a9fefc7916024808301926020929190829003018186803b158015611bc557600080fd5b505afa158015611bd9573d6000803e3d6000fd5b505050506040513d6020811015611bef57600080fd5b505190505b6001600160a01b03811615611c5b57600654611c20906001600160a01b0316828463ffffffff61266f16565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a2611cf5565b60065460408051630852cd8d60e31b81526004810185905290516001600160a01b03909216916342966c689160248082019260009290919082900301818387803b158015611ca857600080fd5b505af1158015611cbc573d6000803e3d6000fd5b50506040805185815290517fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e9350908190036020019150a15b611d2733611d0e6009548761257390919063ffffffff16565b6007546001600160a01b0316919063ffffffff61266f16565b82955050505050611d39565b60009250505b5090565b60006113f4600a5461075d8461249e565b6017546001600160a01b031681565b600181565b60156020526000908152604090205460ff1681565b6001600160a01b031660009081526002602052604090205490565b611d9a61234f565b611dd9576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6006546001600160a01b031681565b600d5460ff1681565b6008546001600160a01b031681565b33611e536123b7565b601255611e5e612315565b6011556001600160a01b03811615611ea557611e79816106f4565b6001600160a01b0382166000908152601460209081526040808320939093556012546013909152919020555b600f544210612151576000611eb8611333565b9050611edd606461075d691aae7943876392c0000061ffff851663ffffffff61251a16565b600b819055600c546a010ad0bca349e3bb80000091611f02919063ffffffff6125b516565b1115611f2b57600c54611f27906a010ad0bca349e3bb8000009063ffffffff6124d116565b600b555b600b54156120f757600654600b54604080516340c10f1960e01b81523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015611f8957600080fd5b505af1158015611f9d573d6000803e3d6000fd5b5050600754600954600b546001600160a01b0390921693506340c10f1992503091611fcd9163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b5050600854600a54600b546001600160a01b0390921693506340c10f19925030916120609163ffffffff61257316565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156120af57600080fd5b505af11580156120c3573d6000803e3d6000fd5b5050600b54600c546120dd9350915063ffffffff6125b516565b600c55600d805460ff8082166001011660ff199091161790555b600b5461210d9062093a8063ffffffff61257316565b6010554260118190556121299062093a8063ffffffff6125b516565b600f55600b546040805191825251600080516020612b788339815191529181900360200190a1505b600e544211612193576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600083116121d9576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6001600160a01b038216331415612237576040805162461bcd60e51b815260206004820152601a60248201527f596f752063616e6e6f7420726566657220796f757273656c662e000000000000604482015290519081900360640190fd5b61224083612722565b60408051848152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a26004546001600160a01b03161580159061229857506001600160a01b03821615155b15610e2657600480546040805163bbddaca360e01b815233938101939093526001600160a01b038581166024850152905191169163bbddaca391604480830192600092919082900301818387803b1580156122f257600080fd5b505af1158015612306573d6000803e3d6000fd5b50505050505050565b60105481565b600061232342600f54612784565b905090565b60136020526000908152604090205481565b600e5481565b6003546001600160a01b031690565b6003546000906001600160a01b031661236661279a565b6001600160a01b031614905090565b6007546001600160a01b031681565b6000546001600160a01b031681565b6005546001600160a01b031681565b6a010ad0bca349e3bb80000081565b60115481565b60006123c1610cd1565b6123ce5750601254610cd5565b6123236123fc6123dc610cd1565b61075d670de0b6b3a764000061075160105461075160115461073c612315565b6012549063ffffffff6125b516565b60095481565b60125481565b600b5481565b60166020526000908152604090205481565b61244061243b33611d77565b610f5e565b610f55611749565b600f5481565b61245661234f565b612495576040805162461bcd60e51b81526020600482018190526024820152600080516020612bb9833981519152604482015290519081900360640190fd5b610f558161279e565b60006113f46124ac836106f4565b6001600160a01b0384166000908152601660205260409020549063ffffffff6125b516565b600061251383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061283f565b9392505050565b600082612529575060006113f4565b8282028284828161253657fe5b04146125135760405162461bcd60e51b8152600401808060200182810382526021815260200180612b986021913960400191505060405180910390fd5b600061251383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128d6565b600082820183811015612513576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261266990859061293b565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e2690849061293b565b6001546126d4908263ffffffff6124d116565b600155336000908152600260205260409020546126f7908263ffffffff6124d116565b336000818152600260205260408120929092559054610f55916001600160a01b03909116908361266f565b600154612735908263ffffffff6125b516565b60015533600090815260026020526040902054612758908263ffffffff6125b516565b336000818152600260205260408120929092559054610f55916001600160a01b0390911690308461260f565b60008183106127935781612513565b5090919050565b3390565b6001600160a01b0381166127e35760405162461bcd60e51b8152600401808060200182810382526026815260200180612b306026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156128ce5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561289357818101518382015260200161287b565b50505050905090810190601f1680156128c05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836129255760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561289357818101518382015260200161287b565b50600083858161293157fe5b0495945050505050565b61294d826001600160a01b0316612af3565b61299e576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106129dc5780518252601f1990920191602091820191016129bd565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612a3e576040519150601f19603f3d011682016040523d82523d6000602084013e612a43565b606091505b509150915081612a9a576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561266957808060200190516020811015612ab657600080fd5b50516126695760405162461bcd60e51b815260040180806020018281038252602a815260200180612bd9602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590612b275750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373596f75206861766520636c61696d656420616c6c2070656e64696e6720764554482ede88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644f6e6c792063616e2063616c6c206f6e636520746f207374617274207374616b696e677645544820636f756c6420626520636c61696d6564206f6e6c792061667465722074686520706f6f6c20656e64732ea265627a7a72315820f71f727c8166e37bf6930f736c7aebfa6d6efe72b06248c210e1b1e9d02b97d464736f6c63430005110032
Deployed Bytecode Sourcemap
23348:9419:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23348:9419:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21645:122;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21645:122:0;-1:-1:-1;;;;;21645:122:0;;:::i;:::-;;26078:554;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26078:554:0;-1:-1:-1;;;;;26078:554:0;;:::i;:::-;;;;;;;;;;;;;;;;23758:57;;;:::i;24601:42::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24601:42:0;-1:-1:-1;;;;;24601:42:0;;:::i;21514:29::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21514:29:0;;;;;;;;;;;;;;23907:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24020:51;;;:::i;28244:387::-;;;:::i;22253:91::-;;;:::i;21775:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21775:106:0;-1:-1:-1;;;;;21775:106:0;;:::i;23859:41::-;;;:::i;27544:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27544:213:0;-1:-1:-1;;;;;27544:213:0;;:::i;27098:438::-;;;:::i;24209:41::-;;;:::i;28639:234::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28639:234:0;;:::i;30250:300::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26796:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26796:140:0;-1:-1:-1;;;;;26796:140:0;;:::i;31829:935::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31829:935:0;;:::i;28986:1256::-;;;:::i;26944:146::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26944:146:0;-1:-1:-1;;;;;26944:146:0;;:::i;24862:26::-;;;:::i;23956:55::-;;;:::i;24650:50::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24650:50:0;-1:-1:-1;;;;;24650:50:0;;:::i;:::-;;;;;;;;;;;;;;;;;;22352:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22352:110:0;-1:-1:-1;;;;;22352:110:0;;:::i;10697:140::-;;;:::i;23430:70::-;;;:::i;24257:29::-;;;:::i;23585:71::-;;;:::i;27765:471::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27765:471:0;;;;;;-1:-1:-1;;;;;27765:471:0;;:::i;24423:29::-;;;:::i;25555:131::-;;;:::i;24537:57::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24537:57:0;-1:-1:-1;;;;;24537:57:0;;:::i;24293:37::-;;;:::i;9886:79::-;;;:::i;10252:94::-;;;:::i;23507:71::-;;;:::i;22087:68::-;;;:::i;21550:25::-;;;:::i;24078:67::-;;;:::i;24459:29::-;;;:::i;25694:376::-;;;:::i;23665:54::-;;;:::i;24495:35::-;;;:::i;24154:48::-;;;:::i;24741:58::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24741:58:0;-1:-1:-1;;;;;24741:58:0;;:::i;28881:97::-;;;:::i;24385:31::-;;;:::i;10992:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10992:109:0;-1:-1:-1;;;;;10992:109:0;;:::i;26640:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26640:148:0;-1:-1:-1;;;;;26640:148:0;;:::i;21645:122::-;10098:9;:7;:9::i;:::-;10090:54;;;;;-1:-1:-1;;;10090:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10090:54:0;;;;;;;;;;;;;;;21727:14;:32;;-1:-1:-1;;;;;;21727:32:0;-1:-1:-1;;;;;21727:32:0;;;;;;;;;;21645:122::o;26078:554::-;-1:-1:-1;;;;;26313:16:0;;26132:7;26313:16;;;:7;:16;;;;;;;;;26237:22;:31;;;;;;26132:7;;26179:151;;:115;;26289:4;;26179:91;;26216:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;26179:18;26189:7;26179:9;:18::i;:::-;:36;:91;:36;:91;:::i;:::-;:109;:115;:109;:115;:::i;:::-;:133;:151;:133;:151;:::i;:::-;26363:3;;:28;;;-1:-1:-1;;;26363:28:0;;26385:4;26363:28;;;;;;26152:178;;-1:-1:-1;26341:19:0;;-1:-1:-1;;;;;26363:3:0;;;;:13;;:28;;;;;;;;;;;;;;;:3;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;26363:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26363:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26363:28:0;;-1:-1:-1;26540:30:0;;;26536:54;;;26579:11;-1:-1:-1;26572:18:0;;-1:-1:-1;26572:18:0;26536:54;-1:-1:-1;26608:16:0;-1:-1:-1;26078:554:0;;;;:::o;23758:57::-;;;;:::o;24601:42::-;;;;;;;;;;;;;:::o;21514:29::-;;;-1:-1:-1;;;;;21514:29:0;;:::o;23907:40::-;23945:2;23907:40;:::o;24020:51::-;24059:12;24020:51;:::o;28244:387::-;28287:10;25290:16;:14;:16::i;:::-;25267:20;:39;25334:26;:24;:26::i;:::-;25317:14;:43;-1:-1:-1;;;;;25375:21:0;;;25371:157;;25432:15;25439:7;25432:6;:15::i;:::-;-1:-1:-1;;;;;25413:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25496:20;;25462:22;:31;;;;;;:54;25371:157;30618:12;;30599:15;:31;30595:1097;;30647:23;30673:22;:20;:22::i;:::-;30647:48;-1:-1:-1;30756:43:0;30795:3;30756:34;24059:12;30756:34;;;;:16;:34;:::i;:43::-;30735:18;:64;;;30848:22;;24117:28;;30848:46;;:22;:46;:26;:46;:::i;:::-;:61;30844:185;;;30968:22;;30951:40;;24117:28;;30951:40;:16;:40;:::i;:::-;30930:18;:61;30844:185;31049:18;;:22;31045:417;;31092:3;;31116:18;;31092:43;;;-1:-1:-1;;;31092:43:0;;31109:4;31092:43;;;;;;;;;;;;-1:-1:-1;;;;;31092:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;31092:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31154:4:0;;31202:25;;31179:18;;-1:-1:-1;;;;;31154:4:0;;;;-1:-1:-1;31154:9:0;;-1:-1:-1;31172:4:0;;31179:49;;;:22;:49;:::i;:::-;31154:75;;;;;;;;;;;;;-1:-1:-1;;;;;31154:75:0;-1:-1:-1;;;;;31154:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31154:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31248:4:0;;31296:25;;31273:18;;-1:-1:-1;;;;;31248:4:0;;;;-1:-1:-1;31248:9:0;;-1:-1:-1;31266:4:0;;31273:49;;;:22;:49;:::i;:::-;31248:75;;;;;;;;;;;;;-1:-1:-1;;;;;31248:75:0;-1:-1:-1;;;;;31248:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31248:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31394:18:0;;31367:22;;:46;;-1:-1:-1;31367:22:0;-1:-1:-1;31367:46:0;:26;:46;:::i;:::-;31342:22;:71;31432:12;:14;;;;;;;;;-1:-1:-1;;31432:14:0;;;;;;31045:417;31491:18;;:32;;23894:6;31491:32;:22;:32;:::i;:::-;31478:10;:45;31555:15;31538:14;:32;;;31600:29;;23894:6;31600:29;:19;:29;:::i;:::-;31585:12;:44;31661:18;;31649:31;;;;;;;-1:-1:-1;;;;;;;;;;;31649:31:0;;;;;;;;30595:1097;;31778:9;;31760:15;:27;31752:49;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;;;;28344:11;;-1:-1:-1;;;;;28344:11:0;28336:64;;;;;-1:-1:-1;;;28336:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28411:14;28428:11;:9;:11::i;:::-;28450:3;;28411:28;;-1:-1:-1;28450:55:0;;-1:-1:-1;;;;;28450:3:0;28471:10;28491:4;28411:28;28450:55;:20;:55;:::i;:::-;28533:1;28524:6;:10;28516:40;;;;;-1:-1:-1;;;28516:40:0;;;;;;;;;;;;-1:-1:-1;;;28516:40:0;;;;;;;;;;;;;;;28577:11;;28567:56;;;-1:-1:-1;;;28567:56:0;;28604:10;28567:56;;;;;;;;;;;;-1:-1:-1;;;;;28577:11:0;;;;28567:36;;:56;;;;;28577:11;;28567:56;;;;;;;;28577:11;;28567:56;;;5:2:-1;;;;30:1;27;20:12;5:2;28567:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28567:56:0;;;;31812:1;28244:387;:::o;22253:91::-;22324:12;;22253:91;;:::o;21775:106::-;10098:9;:7;:9::i;:::-;10090:54;;;;;-1:-1:-1;;;10090:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10090:54:0;;;;;;;;;;;;;;;21849:10;:24;;-1:-1:-1;;;;;;21849:24:0;-1:-1:-1;;;;;21849:24:0;;;;;;;;;;21775:106::o;23859:41::-;23894:6;23859:41;:::o;27544:213::-;10098:9;:7;:9::i;:::-;10090:54;;;;;-1:-1:-1;;;10090:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10090:54:0;;;;;;;;;;;;;;;27620:11;:26;;-1:-1:-1;;;;;;27620:26:0;-1:-1:-1;;;;;27620:26:0;;;;;;;;;;;27657:3;;:92;;;-1:-1:-1;;;27657:92:0;;27669:11;;;27657:92;;;;-1:-1:-1;;27657:92:0;;;;;:3;;;:11;;:92;;;;;;;;;;;;;;-1:-1:-1;27657:3:0;:92;;;5:2:-1;;;;30:1;27;20:12;5:2;27657:92:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27657:92:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;27544:213:0:o;27098:438::-;27151:10;;:15;27143:75;;;;-1:-1:-1;;;27143:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27229:19;27251:23;27263:10;27251:11;:23::i;:::-;27229:45;;27307:1;27293:11;:15;27285:53;;;;;-1:-1:-1;;;27285:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27377:10;27358:30;;;;:18;:30;;;;;;;;27357:31;27349:78;;;;-1:-1:-1;;;27349:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27457:10;27438:30;;;;:18;:30;;;;;:37;;-1:-1:-1;;27438:37:0;27471:4;27438:37;;;27486:4;;:42;;-1:-1:-1;;;;;27486:4:0;;;;;27516:11;27486:42;:17;:42;:::i;:::-;27098:438;:::o;24209:41::-;;;;:::o;28639:234::-;28693:10;25290:16;:14;:16::i;:::-;25267:20;:39;25334:26;:24;:26::i;:::-;25317:14;:43;-1:-1:-1;;;;;25375:21:0;;;25371:157;;25432:15;25439:7;25432:6;:15::i;:::-;-1:-1:-1;;;;;25413:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25496:20;;25462:22;:31;;;;;;:54;25371:157;30618:12;;30599:15;:31;30595:1097;;30647:23;30673:22;:20;:22::i;:::-;30647:48;-1:-1:-1;30756:43:0;30795:3;30756:34;24059:12;30756:34;;;;:16;:34;:::i;:43::-;30735:18;:64;;;30848:22;;24117:28;;30848:46;;:22;:46;:26;:46;:::i;:::-;:61;30844:185;;;30968:22;;30951:40;;24117:28;;30951:40;:16;:40;:::i;:::-;30930:18;:61;30844:185;31049:18;;:22;31045:417;;31092:3;;31116:18;;31092:43;;;-1:-1:-1;;;31092:43:0;;31109:4;31092:43;;;;;;;;;;;;-1:-1:-1;;;;;31092:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;31092:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31154:4:0;;31202:25;;31179:18;;-1:-1:-1;;;;;31154:4:0;;;;-1:-1:-1;31154:9:0;;-1:-1:-1;31172:4:0;;31179:49;;;:22;:49;:::i;:::-;31154:75;;;;;;;;;;;;;-1:-1:-1;;;;;31154:75:0;-1:-1:-1;;;;;31154:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31154:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31248:4:0;;31296:25;;31273:18;;-1:-1:-1;;;;;31248:4:0;;;;-1:-1:-1;31248:9:0;;-1:-1:-1;31266:4:0;;31273:49;;;:22;:49;:::i;:::-;31248:75;;;;;;;;;;;;;-1:-1:-1;;;;;31248:75:0;-1:-1:-1;;;;;31248:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31248:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31394:18:0;;31367:22;;:46;;-1:-1:-1;31367:22:0;-1:-1:-1;31367:46:0;:26;:46;:::i;:::-;31342:22;:71;31432:12;:14;;;;;;;;;-1:-1:-1;;31432:14:0;;;;;;31045:417;31491:18;;:32;;23894:6;31491:32;:22;:32;:::i;:::-;31478:10;:45;31555:15;31538:14;:32;;;31600:29;;23894:6;31600:29;:19;:29;:::i;:::-;31585:12;:44;31661:18;;31649:31;;;;;;;-1:-1:-1;;;;;;;;;;;31649:31:0;;;;;;;;30595:1097;;31778:9;;31760:15;:27;31752:49;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;;;;28759:1;28750:6;:10;28742:40;;;;;-1:-1:-1;;;28742:40:0;;;;;;;;;;;;-1:-1:-1;;;28742:40:0;;;;;;;;;;;;;;;28793:27;28813:6;28793:19;:27::i;:::-;28836:29;;;;;;;;28846:10;;28836:29;;;;;;;;;;28639:234;;:::o;30250:300::-;30326:10;;30303:6;;-1:-1:-1;;;;;30326:10:0;:24;30322:200;;30397:10;;30443:12;;30388:68;;;-1:-1:-1;;;30388:68:0;;30436:4;30388:68;;;;;;;;;;;;30367:18;;-1:-1:-1;;;;;30397:10:0;;30388:39;;:68;;;;;;;;;;;;;;30397:10;30388:68;;;5:2:-1;;;;30:1;27;20:12;5:2;30388:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30388:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30388:68:0;;-1:-1:-1;30475:15:0;;;;30471:39;;30499:11;-1:-1:-1;30492:18:0;;30471:39;30322:200;;-1:-1:-1;30539:3:0;30250:300;:::o;26796:140::-;26855:7;26882:46;26902:25;;26882:15;26889:7;26882:6;:15::i;:46::-;26875:53;26796:140;-1:-1:-1;;26796:140:0:o;31829:935::-;10098:9;:7;:9::i;:::-;10090:54;;;;;-1:-1:-1;;;10090:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10090:54:0;;;;;;;;;;;;;;;31913:1;25290:16;:14;:16::i;:::-;25267:20;:39;25334:26;:24;:26::i;:::-;25317:14;:43;-1:-1:-1;;;;;25375:21:0;;;25371:157;;25432:15;25439:7;25432:6;:15::i;:::-;-1:-1:-1;;;;;25413:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25496:20;;25462:22;:31;;;;;;:54;25371:157;31936:12;;:17;31928:65;;;;-1:-1:-1;;;31928:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32004:18;:27;;;32048:22;;24117:28;;32048:46;;32025:6;32048:46;:26;:46;:::i;:::-;:61;32044:177;;;32164:22;;32147:40;;24117:28;;32147:40;:16;:40;:::i;:::-;32126:18;:61;32044:177;32246:18;;:32;;23894:6;32246:32;:22;:32;:::i;:::-;32233:10;:45;32289:3;;32313:18;;32289:43;;;-1:-1:-1;;;32289:43:0;;32306:4;32289:43;;;;;;;;;;;;-1:-1:-1;;;;;32289:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;32289:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32343:4:0;;32391:25;;32368:18;;-1:-1:-1;;;;;32343:4:0;;;;-1:-1:-1;32343:9:0;;-1:-1:-1;32361:4:0;;32368:49;;;:22;:49;:::i;:::-;32343:75;;;;;;;;;;;;;-1:-1:-1;;;;;32343:75:0;-1:-1:-1;;;;;32343:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32343:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32429:4:0;;32477:25;;32454:18;;-1:-1:-1;;;;;32429:4:0;;;;-1:-1:-1;32429:9:0;;-1:-1:-1;32447:4:0;;32454:49;;;:22;:49;:::i;:::-;32429:75;;;;;;;;;;;;;-1:-1:-1;;;;;32429:75:0;-1:-1:-1;;;;;32429:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32429:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32567:18:0;;32540:22;;:46;;-1:-1:-1;32540:22:0;-1:-1:-1;32540:46:0;:26;:46;:::i;:::-;32515:22;:71;32597:12;:14;;;;;;;;;-1:-1:-1;;32597:14:0;;;;;;32639:15;32622:14;:32;;;32680:29;;23894:6;32680:29;:19;:29;:::i;:::-;32665:12;:44;32737:18;;32725:31;;;;;;;-1:-1:-1;;;;;;;;;;;32725:31:0;;;;;;;;10155:1;31829:935;:::o;28986:1256::-;29074:7;29027:10;25290:16;:14;:16::i;:::-;25267:20;:39;25334:26;:24;:26::i;:::-;25317:14;:43;-1:-1:-1;;;;;25375:21:0;;;25371:157;;25432:15;25439:7;25432:6;:15::i;:::-;-1:-1:-1;;;;;25413:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25496:20;;25462:22;:31;;;;;;:54;25371:157;30618:12;;30599:15;:31;30595:1097;;30647:23;30673:22;:20;:22::i;:::-;30647:48;-1:-1:-1;30756:43:0;30795:3;30756:34;24059:12;30756:34;;;;:16;:34;:::i;:43::-;30735:18;:64;;;30848:22;;24117:28;;30848:46;;:22;:46;:26;:46;:::i;:::-;:61;30844:185;;;30968:22;;30951:40;;24117:28;;30951:40;:16;:40;:::i;:::-;30930:18;:61;30844:185;31049:18;;:22;31045:417;;31092:3;;31116:18;;31092:43;;;-1:-1:-1;;;31092:43:0;;31109:4;31092:43;;;;;;;;;;;;-1:-1:-1;;;;;31092:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;31092:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31154:4:0;;31202:25;;31179:18;;-1:-1:-1;;;;;31154:4:0;;;;-1:-1:-1;31154:9:0;;-1:-1:-1;31172:4:0;;31179:49;;;:22;:49;:::i;:::-;31154:75;;;;;;;;;;;;;-1:-1:-1;;;;;31154:75:0;-1:-1:-1;;;;;31154:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31154:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31248:4:0;;31296:25;;31273:18;;-1:-1:-1;;;;;31248:4:0;;;;-1:-1:-1;31248:9:0;;-1:-1:-1;31266:4:0;;31273:49;;;:22;:49;:::i;:::-;31248:75;;;;;;;;;;;;;-1:-1:-1;;;;;31248:75:0;-1:-1:-1;;;;;31248:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31248:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31394:18:0;;31367:22;;:46;;-1:-1:-1;31367:22:0;-1:-1:-1;31367:46:0;:26;:46;:::i;:::-;31342:22;:71;31432:12;:14;;;;;;;;;-1:-1:-1;;31432:14:0;;;;;;31045:417;31491:18;;:32;;23894:6;31491:32;:22;:32;:::i;:::-;31478:10;:45;31555:15;31538:14;:32;;;31600:29;;23894:6;31600:29;:19;:29;:::i;:::-;31585:12;:44;31661:18;;31649:31;;;;;;;-1:-1:-1;;;;;;;;;;;31649:31:0;;;;;;;;30595:1097;;31778:9;;31760:15;:27;31752:49;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;;;;29094:14;29111:18;29118:10;29111:6;:18::i;:::-;29094:35;;29153:1;29144:6;:10;29140:1076;;;29257:10;29249:19;;;;:7;:19;;;;;;;;;29209:23;:35;;;;;;;:60;;;:39;:60;:::i;:::-;29195:10;29171:35;;;;:23;:35;;;;;;;;:98;;;;29284:7;:19;;;;;:23;;;29345:54;29395:3;29345:45;:6;29356:33;29345:45;:10;:45;:::i;:54::-;29484:3;;29324:75;;-1:-1:-1;29442:19:0;;;;29484:40;;-1:-1:-1;;;;;29484:3:0;29501:10;29324:75;29484:40;:16;:40;:::i;:::-;29544:34;;;;;;;;29555:10;;29544:34;;;;;;;;;;29643:14;;29595:16;;-1:-1:-1;;;;;29643:14:0;:28;29639:132;;29716:14;;;29703:52;;;-1:-1:-1;;;29703:52:0;;29744:10;29703:52;;;;;;;;-1:-1:-1;;;;;29716:14:0;;;;29703:40;;:52;;;;;;;;;;;;;;29716:14;29703:52;;;5:2:-1;;;;30:1;27;20:12;5:2;29703:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29703:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29703:52:0;;-1:-1:-1;29639:132:0;-1:-1:-1;;;;;29789:22:0;;;29785:303;;29863:3;;:38;;-1:-1:-1;;;;;29863:3:0;29880:8;29890:10;29863:38;:16;:38;:::i;:::-;29925:34;;;;;;;;29936:10;;29925:34;;;;;;;;;;29785:303;;;30010:3;;:20;;;-1:-1:-1;;;30010:20:0;;;;;;;;;;-1:-1:-1;;;;;30010:3:0;;;;:8;;:20;;;;;:3;;:20;;;;;;;;:3;;:20;;;5:2:-1;;;;30:1;27;20:12;5:2;30010:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;30054:18:0;;;;;;;;;;-1:-1:-1;30054:18:0;;;;;;;-1:-1:-1;30054:18:0;29785:303;30104:68;30122:10;30134:37;30145:25;;30134:6;:10;;:37;;;;:::i;:::-;30104:4;;-1:-1:-1;;;;;30104:4:0;;:68;;:17;:68;:::i;:::-;30194:10;30187:17;;;;;;;;29140:1076;30233:1;30226:8;;;31812:1;28986:1256;;:::o;26944:146::-;27003:7;27030:52;27056:25;;27030:21;27043:7;27030:12;:21::i;24862:26::-;;;-1:-1:-1;;;;;24862:26:0;;:::o;23956:55::-;24010:1;23956:55;:::o;24650:50::-;;;;;;;;;;;;;;;:::o;22352:110::-;-1:-1:-1;;;;;22436:18:0;22409:7;22436:18;;;:9;:18;;;;;;;22352:110::o;10697:140::-;10098:9;:7;:9::i;:::-;10090:54;;;;;-1:-1:-1;;;10090:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10090:54:0;;;;;;;;;;;;;;;10780:6;;10759:40;;10796:1;;-1:-1:-1;;;;;10780:6:0;;10759:40;;10796:1;;10759:40;10810:6;:19;;-1:-1:-1;;;;;;10810:19:0;;;10697:140::o;23430:70::-;;;-1:-1:-1;;;;;23430:70:0;;:::o;24257:29::-;;;;;;:::o;23585:71::-;;;-1:-1:-1;;;;;23585:71:0;;:::o;27765:471::-;27834:10;25290:16;:14;:16::i;:::-;25267:20;:39;25334:26;:24;:26::i;:::-;25317:14;:43;-1:-1:-1;;;;;25375:21:0;;;25371:157;;25432:15;25439:7;25432:6;:15::i;:::-;-1:-1:-1;;;;;25413:16:0;;;;;;:7;:16;;;;;;;;:34;;;;25496:20;;25462:22;:31;;;;;;:54;25371:157;30618:12;;30599:15;:31;30595:1097;;30647:23;30673:22;:20;:22::i;:::-;30647:48;-1:-1:-1;30756:43:0;30795:3;30756:34;24059:12;30756:34;;;;:16;:34;:::i;:43::-;30735:18;:64;;;30848:22;;24117:28;;30848:46;;:22;:46;:26;:46;:::i;:::-;:61;30844:185;;;30968:22;;30951:40;;24117:28;;30951:40;:16;:40;:::i;:::-;30930:18;:61;30844:185;31049:18;;:22;31045:417;;31092:3;;31116:18;;31092:43;;;-1:-1:-1;;;31092:43:0;;31109:4;31092:43;;;;;;;;;;;;-1:-1:-1;;;;;31092:3:0;;;;:8;;:43;;;;;:3;;:43;;;;;;;;:3;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;31092:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31154:4:0;;31202:25;;31179:18;;-1:-1:-1;;;;;31154:4:0;;;;-1:-1:-1;31154:9:0;;-1:-1:-1;31172:4:0;;31179:49;;;:22;:49;:::i;:::-;31154:75;;;;;;;;;;;;;-1:-1:-1;;;;;31154:75:0;-1:-1:-1;;;;;31154:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31154:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31248:4:0;;31296:25;;31273:18;;-1:-1:-1;;;;;31248:4:0;;;;-1:-1:-1;31248:9:0;;-1:-1:-1;31266:4:0;;31273:49;;;:22;:49;:::i;:::-;31248:75;;;;;;;;;;;;;-1:-1:-1;;;;;31248:75:0;-1:-1:-1;;;;;31248:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31248:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31394:18:0;;31367:22;;:46;;-1:-1:-1;31367:22:0;-1:-1:-1;31367:46:0;:26;:46;:::i;:::-;31342:22;:71;31432:12;:14;;;;;;;;;-1:-1:-1;;31432:14:0;;;;;;31045:417;31491:18;;:32;;23894:6;31491:32;:22;:32;:::i;:::-;31478:10;:45;31555:15;31538:14;:32;;;31600:29;;23894:6;31600:29;:19;:29;:::i;:::-;31585:12;:44;31661:18;;31649:31;;;;;;;-1:-1:-1;;;;;;;;;;;31649:31:0;;;;;;;;30595:1097;;31778:9;;31760:15;:27;31752:49;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;-1:-1:-1;;;31752:49:0;;;;;;;;;;;;;;;27900:1;27891:6;:10;27883:37;;;;;-1:-1:-1;;;27883:37:0;;;;;;;;;;;;-1:-1:-1;;;27883:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27939:22:0;;27951:10;27939:22;;27931:61;;;;;-1:-1:-1;;;27931:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28003:24;28020:6;28003:16;:24::i;:::-;28043:26;;;;;;;;28050:10;;28043:26;;;;;;;;;;28084:14;;-1:-1:-1;;;;;28084:14:0;:28;;;;:54;;-1:-1:-1;;;;;;28116:22:0;;;;28084:54;28080:149;;;28168:14;;;28155:62;;;-1:-1:-1;;;28155:62:0;;28196:10;28155:62;;;;;;;-1:-1:-1;;;;;28155:62:0;;;;;;;;;28168:14;;;28155:40;;:62;;;;;28168:14;;28155:62;;;;;;;28168:14;;28155:62;;;5:2:-1;;;;30:1;27;20:12;5:2;28155:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28155:62:0;;;;27765:471;;;:::o;24423:29::-;;;;:::o;25555:131::-;25612:7;25639:39;25648:15;25665:12;;25639:8;:39::i;:::-;25632:46;;25555:131;:::o;24537:57::-;;;;;;;;;;;;;:::o;24293:37::-;;;;:::o;9886:79::-;9951:6;;-1:-1:-1;;;;;9951:6:0;9886:79;:::o;10252:94::-;10332:6;;10292:4;;-1:-1:-1;;;;;10332:6:0;10316:12;:10;:12::i;:::-;-1:-1:-1;;;;;10316:22:0;;10309:29;;10252:94;:::o;23507:71::-;;;-1:-1:-1;;;;;23507:71:0;;:::o;22087:68::-;;;-1:-1:-1;;;;;22087:68:0;;:::o;21550:25::-;;;-1:-1:-1;;;;;21550:25:0;;:::o;24078:67::-;24117:28;24078:67;:::o;24459:29::-;;;;:::o;25694:376::-;25741:7;25765:13;:11;:13::i;:::-;25761:78;;-1:-1:-1;25807:20:0;;25800:27;;25761:78;25865:197;25904:147;26037:13;:11;:13::i;:::-;25904:114;26013:4;25904:90;25983:10;;25904:60;25949:14;;25904:26;:24;:26::i;:147::-;25865:20;;;:197;:24;:197;:::i;23665:54::-;;;;:::o;24495:35::-;;;;:::o;24154:48::-;;;;:::o;24741:58::-;;;;;;;;;;;;;:::o;28881:97::-;28917:31;28926:21;28936:10;28926:9;:21::i;:::-;28917:8;:31::i;:::-;28959:11;:9;:11::i;24385:31::-;;;;:::o;10992:109::-;10098:9;:7;:9::i;:::-;10090:54;;;;;-1:-1:-1;;;10090:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10090:54:0;;;;;;;;;;;;;;;11065:28;11084:8;11065:18;:28::i;26640:148::-;26700:7;26727:53;26764:15;26771:7;26764:6;:15::i;:::-;-1:-1:-1;;;;;26727:32:0;;;;;;:23;:32;;;;;;;:53;:36;:53;:::i;3628:136::-;3686:7;3713:43;3717:1;3720;3713:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3706:50;3628:136;-1:-1:-1;;;3628:136:0:o;4544:471::-;4602:7;4847:6;4843:47;;-1:-1:-1;4877:1:0;4870:8;;4843:47;4914:5;;;4918:1;4914;:5;:1;4938:5;;;;;:10;4930:56;;;;-1:-1:-1;;;4930:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5483:132;5541:7;5568:39;5572:1;5575;5568:39;;;;;;;;;;;;;;;;;:3;:39::i;3172:181::-;3230:7;3262:5;;;3286:6;;;;3278:46;;;;;-1:-1:-1;;;3278:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;18399:204;18526:68;;;-1:-1:-1;;;;;18526:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18526:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18500:95:0;;18519:5;;18500:18;:95::i;:::-;18399:204;;;;:::o;18215:176::-;18324:58;;;-1:-1:-1;;;;;18324:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18324:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18298:85:0;;18317:5;;18298:18;:85::i;22713:219::-;22787:12;;:24;;22804:6;22787:24;:16;:24;:::i;:::-;22772:12;:39;22856:10;22846:21;;;;:9;:21;;;;;;:33;;22872:6;22846:33;:25;:33;:::i;:::-;22832:10;22822:21;;;;:9;:21;;;;;:57;;;;22890:1;;:34;;-1:-1:-1;;;;;22890:1:0;;;;22917:6;22890:14;:34::i;22470:235::-;22541:12;;:24;;22558:6;22541:24;:16;:24;:::i;:::-;22526:12;:39;22610:10;22600:21;;;;:9;:21;;;;;;:33;;22626:6;22600:33;:25;:33;:::i;:::-;22586:10;22576:21;;;;:9;:21;;;;;:57;;;;22644:1;;:53;;-1:-1:-1;;;;;22644:1:0;;;;22683:4;22690:6;22644:18;:53::i;1834:106::-;1892:7;1923:1;1919;:5;:13;;1931:1;1919:13;;;-1:-1:-1;1927:1:0;;1834:106;-1:-1:-1;1834:106:0:o;8626:98::-;8706:10;8626:98;:::o;11207:229::-;-1:-1:-1;;;;;11281:22:0;;11273:73;;;;-1:-1:-1;;;11273:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11383:6;;11362:38;;-1:-1:-1;;;;;11362:38:0;;;;11383:6;;11362:38;;11383:6;;11362:38;11411:6;:17;;-1:-1:-1;;;;;;11411:17:0;-1:-1:-1;;;;;11411:17:0;;;;;;;;;;11207:229::o;4101:192::-;4187:7;4223:12;4215:6;;;;4207:29;;;;-1:-1:-1;;;4207: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;4207:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4259:5:0;;;4101:192::o;6145:345::-;6231:7;6333:12;6326:5;6318:28;;;;-1:-1:-1;;;6318:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6318:28:0;;6357:9;6373:1;6369;:5;;;;;;;6145:345;-1:-1:-1;;;;;6145:345:0:o;20254:1113::-;20858:27;20866:5;-1:-1:-1;;;;;20858:25:0;;:27::i;:::-;20850:71;;;;;-1:-1:-1;;;20850:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20995:12;21009:23;21044:5;-1:-1:-1;;;;;21036:19:0;21056:4;21036: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;;;21036: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;;20994:67:0;;;;21080:7;21072:52;;;;;-1:-1:-1;;;21072:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21141:17;;:21;21137:223;;21282:10;21271:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21271:30:0;21263:85;;;;-1:-1:-1;;;21263:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15056:808;15116:4;15774:20;;15618:66;15813:15;;;;;:42;;;15844:11;15832:8;:23;;15813:42;15805:51;15056:808;-1:-1:-1;;;;15056:808:0:o
Swarm Source
bzzr://f71f727c8166e37bf6930f736c7aebfa6d6efe72b06248c210e1b1e9d02b97d4
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.