Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x39cf72dc3871e28d3c0bf02c80ced4d5cf65d83959d79b6335e580ab4d76a12c | Set Handler | 38513640 | 2 days 5 hrs ago | 0xe3c601b1fc6564ebf5603fcad7956697761e39db | IN | 0x6d475ee793b115efab2865ccfc6a84a8150cef88 | 0 MATIC | 0.003074170298 | |
0x68e69a3233b4ca5c0c875020601a8c99783cfccb57b3d8ecb4b1c8ee92963f93 | 0x60806040 | 38511258 | 2 days 7 hrs ago | 0xe3c601b1fc6564ebf5603fcad7956697761e39db | IN | Create: Vester | 0 MATIC | 0.186520302221 |
[ Download CSV Export ]
Contract Name:
Vester
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-01-25 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is 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. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity 0.6.12; contract Governable { address public gov; constructor() public { gov = msg.sender; } modifier onlyGov() { require(msg.sender == gov, "Governable: forbidden"); _; } function setGov(address _gov) external onlyGov { gov = _gov; } } pragma solidity 0.6.12; interface IMintable { function isMinter(address _account) external returns (bool); function setMinter(address _minter, bool _isActive) external; function mint(address _account, uint256 _amount) external; function burn(address _account, uint256 _amount) external; } pragma solidity 0.6.12; interface IVester { function claimForAccount(address _account, address _receiver) external returns (uint256); function transferredAverageStakedAmounts(address _account) external view returns (uint256); function transferredCumulativeRewards(address _account) external view returns (uint256); function cumulativeRewardDeductions(address _account) external view returns (uint256); function bonusRewards(address _account) external view returns (uint256); function transferStakeValues(address _sender, address _receiver) external; function setTransferredAverageStakedAmounts(address _account, uint256 _amount) external; function setTransferredCumulativeRewards(address _account, uint256 _amount) external; function setCumulativeRewardDeductions(address _account, uint256 _amount) external; function setBonusRewards(address _account, uint256 _amount) external; function getMaxVestableAmount(address _account) external view returns (uint256); function getCombinedAverageStakedAmount(address _account) external view returns (uint256); } pragma solidity 0.6.12; interface IRewardTracker { function depositBalances(address _account, address _depositToken) external view returns (uint256); function stakedAmounts(address _account) external view returns (uint256); function updateRewards() external; function stake(address _depositToken, uint256 _amount) external; function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external; function unstake(address _depositToken, uint256 _amount) external; function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external; function tokensPerInterval() external view returns (uint256); function claim(address _receiver) external returns (uint256); function claimForAccount(address _account, address _receiver) external returns (uint256); function claimable(address _account) external view returns (uint256); function averageStakedAmounts(address _account) external view returns (uint256); function cumulativeRewards(address _account) external view returns (uint256); } pragma solidity 0.6.12; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity 0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity 0.6.12; /** * @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. */ 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. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { 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. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity 0.6.12; /** * @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 IERC20;` 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)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ 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. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "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"); } } } pragma solidity 0.6.12; contract Vester is IVester, IERC20, ReentrancyGuard, Governable { using SafeMath for uint256; using SafeERC20 for IERC20; string public name; string public symbol; uint8 public decimals = 18; uint256 public vestingDuration; address public esToken; address public pairToken; address public claimableToken; address public rewardTracker; uint256 public override totalSupply; uint256 public pairSupply; bool public hasMaxVestableAmount; mapping (address => uint256) public balances; mapping (address => uint256) public pairAmounts; mapping (address => uint256) public cumulativeClaimAmounts; mapping (address => uint256) public claimedAmounts; mapping (address => uint256) public lastVestingTimes; mapping (address => uint256) public override transferredAverageStakedAmounts; mapping (address => uint256) public override transferredCumulativeRewards; mapping (address => uint256) public override cumulativeRewardDeductions; mapping (address => uint256) public override bonusRewards; mapping (address => bool) public isHandler; event Claim(address receiver, uint256 amount); event Deposit(address account, uint256 amount); event Withdraw(address account, uint256 claimedAmount, uint256 balance); event PairTransfer(address indexed from, address indexed to, uint256 value); constructor ( string memory _name, string memory _symbol, uint256 _vestingDuration, address _esToken, address _pairToken, address _claimableToken, address _rewardTracker ) public { name = _name; symbol = _symbol; vestingDuration = _vestingDuration; esToken = _esToken; pairToken = _pairToken; claimableToken = _claimableToken; rewardTracker = _rewardTracker; if (rewardTracker != address(0)) { hasMaxVestableAmount = true; } } function setHandler(address _handler, bool _isActive) external onlyGov { isHandler[_handler] = _isActive; } function setHasMaxVestableAmount(bool _hasMaxVestableAmount) external onlyGov { hasMaxVestableAmount = _hasMaxVestableAmount; } function deposit(uint256 _amount) external nonReentrant { _deposit(msg.sender, _amount); } function depositForAccount(address _account, uint256 _amount) external nonReentrant { _validateHandler(); _deposit(_account, _amount); } function claim() external nonReentrant returns (uint256) { return _claim(msg.sender, msg.sender); } function claimForAccount(address _account, address _receiver) external override nonReentrant returns (uint256) { _validateHandler(); return _claim(_account, _receiver); } // to help users who accidentally send their tokens to this contract function withdrawToken(address _token, address _account, uint256 _amount) external onlyGov { IERC20(_token).safeTransfer(_account, _amount); } function withdraw() external nonReentrant { address account = msg.sender; address _receiver = account; _claim(account, _receiver); uint256 claimedAmount = cumulativeClaimAmounts[account]; uint256 balance = balances[account]; uint256 totalVested = balance.add(claimedAmount); require(totalVested > 0, "Vester: vested amount is zero"); if (hasPairToken()) { uint256 pairAmount = pairAmounts[account]; _burnPair(account, pairAmount); IERC20(pairToken).safeTransfer(_receiver, pairAmount); } IERC20(esToken).safeTransfer(_receiver, balance); _burn(account, balance); delete cumulativeClaimAmounts[account]; delete claimedAmounts[account]; delete lastVestingTimes[account]; emit Withdraw(account, claimedAmount, balance); } function transferStakeValues(address _sender, address _receiver) external override nonReentrant { _validateHandler(); transferredAverageStakedAmounts[_receiver] = getCombinedAverageStakedAmount(_sender); transferredAverageStakedAmounts[_sender] = 0; uint256 transferredCumulativeReward = transferredCumulativeRewards[_sender]; uint256 cumulativeReward = IRewardTracker(rewardTracker).cumulativeRewards(_sender); transferredCumulativeRewards[_receiver] = transferredCumulativeReward.add(cumulativeReward); cumulativeRewardDeductions[_sender] = cumulativeReward; transferredCumulativeRewards[_sender] = 0; bonusRewards[_receiver] = bonusRewards[_sender]; bonusRewards[_sender] = 0; } function setTransferredAverageStakedAmounts(address _account, uint256 _amount) external override nonReentrant { _validateHandler(); transferredAverageStakedAmounts[_account] = _amount; } function setTransferredCumulativeRewards(address _account, uint256 _amount) external override nonReentrant { _validateHandler(); transferredCumulativeRewards[_account] = _amount; } function setCumulativeRewardDeductions(address _account, uint256 _amount) external override nonReentrant { _validateHandler(); cumulativeRewardDeductions[_account] = _amount; } function setBonusRewards(address _account, uint256 _amount) external override nonReentrant { _validateHandler(); bonusRewards[_account] = _amount; } function claimable(address _account) public view returns (uint256) { uint256 amount = cumulativeClaimAmounts[_account].sub(claimedAmounts[_account]); uint256 nextClaimable = _getNextClaimableAmount(_account); return amount.add(nextClaimable); } function getMaxVestableAmount(address _account) public override view returns (uint256) { if (!hasRewardTracker()) { return 0; } uint256 transferredCumulativeReward = transferredCumulativeRewards[_account]; uint256 bonusReward = bonusRewards[_account]; uint256 cumulativeReward = IRewardTracker(rewardTracker).cumulativeRewards(_account); uint256 maxVestableAmount = cumulativeReward.add(transferredCumulativeReward).add(bonusReward); uint256 cumulativeRewardDeduction = cumulativeRewardDeductions[_account]; if (maxVestableAmount < cumulativeRewardDeduction) { return 0; } return maxVestableAmount.sub(cumulativeRewardDeduction); } function getCombinedAverageStakedAmount(address _account) public override view returns (uint256) { uint256 cumulativeReward = IRewardTracker(rewardTracker).cumulativeRewards(_account); uint256 transferredCumulativeReward = transferredCumulativeRewards[_account]; uint256 totalCumulativeReward = cumulativeReward.add(transferredCumulativeReward); if (totalCumulativeReward == 0) { return 0; } uint256 averageStakedAmount = IRewardTracker(rewardTracker).averageStakedAmounts(_account); uint256 transferredAverageStakedAmount = transferredAverageStakedAmounts[_account]; return averageStakedAmount .mul(cumulativeReward) .div(totalCumulativeReward) .add( transferredAverageStakedAmount.mul(transferredCumulativeReward).div(totalCumulativeReward) ); } function getPairAmount(address _account, uint256 _esAmount) public view returns (uint256) { if (!hasRewardTracker()) { return 0; } uint256 combinedAverageStakedAmount = getCombinedAverageStakedAmount(_account); if (combinedAverageStakedAmount == 0) { return 0; } uint256 maxVestableAmount = getMaxVestableAmount(_account); if (maxVestableAmount == 0) { return 0; } return _esAmount.mul(combinedAverageStakedAmount).div(maxVestableAmount); } function hasRewardTracker() public view returns (bool) { return rewardTracker != address(0); } function hasPairToken() public view returns (bool) { return pairToken != address(0); } function getTotalVested(address _account) public view returns (uint256) { return balances[_account].add(cumulativeClaimAmounts[_account]); } function balanceOf(address _account) public view override returns (uint256) { return balances[_account]; } // empty implementation, tokens are non-transferrable function transfer(address /* recipient */, uint256 /* amount */) public override returns (bool) { revert("Vester: non-transferrable"); } // empty implementation, tokens are non-transferrable function allowance(address /* owner */, address /* spender */) public view virtual override returns (uint256) { return 0; } // empty implementation, tokens are non-transferrable function approve(address /* spender */, uint256 /* amount */) public virtual override returns (bool) { revert("Vester: non-transferrable"); } // empty implementation, tokens are non-transferrable function transferFrom(address /* sender */, address /* recipient */, uint256 /* amount */) public virtual override returns (bool) { revert("Vester: non-transferrable"); } function getVestedAmount(address _account) public view returns (uint256) { uint256 balance = balances[_account]; uint256 cumulativeClaimAmount = cumulativeClaimAmounts[_account]; return balance.add(cumulativeClaimAmount); } function _mint(address _account, uint256 _amount) private { require(_account != address(0), "Vester: mint to the zero address"); totalSupply = totalSupply.add(_amount); balances[_account] = balances[_account].add(_amount); emit Transfer(address(0), _account, _amount); } function _mintPair(address _account, uint256 _amount) private { require(_account != address(0), "Vester: mint to the zero address"); pairSupply = pairSupply.add(_amount); pairAmounts[_account] = pairAmounts[_account].add(_amount); emit PairTransfer(address(0), _account, _amount); } function _burn(address _account, uint256 _amount) private { require(_account != address(0), "Vester: burn from the zero address"); balances[_account] = balances[_account].sub(_amount, "Vester: burn amount exceeds balance"); totalSupply = totalSupply.sub(_amount); emit Transfer(_account, address(0), _amount); } function _burnPair(address _account, uint256 _amount) private { require(_account != address(0), "Vester: burn from the zero address"); pairAmounts[_account] = pairAmounts[_account].sub(_amount, "Vester: burn amount exceeds balance"); pairSupply = pairSupply.sub(_amount); emit PairTransfer(_account, address(0), _amount); } function _deposit(address _account, uint256 _amount) private { require(_amount > 0, "Vester: invalid _amount"); _updateVesting(_account); IERC20(esToken).safeTransferFrom(_account, address(this), _amount); _mint(_account, _amount); if (hasPairToken()) { uint256 pairAmount = pairAmounts[_account]; uint256 nextPairAmount = getPairAmount(_account, balances[_account]); if (nextPairAmount > pairAmount) { uint256 pairAmountDiff = nextPairAmount.sub(pairAmount); IERC20(pairToken).safeTransferFrom(_account, address(this), pairAmountDiff); _mintPair(_account, pairAmountDiff); } } if (hasMaxVestableAmount) { uint256 maxAmount = getMaxVestableAmount(_account); require(getTotalVested(_account) <= maxAmount, "Vester: max vestable amount exceeded"); } emit Deposit(_account, _amount); } function _updateVesting(address _account) private { uint256 amount = _getNextClaimableAmount(_account); lastVestingTimes[_account] = block.timestamp; if (amount == 0) { return; } // transfer claimableAmount from balances to cumulativeClaimAmounts _burn(_account, amount); cumulativeClaimAmounts[_account] = cumulativeClaimAmounts[_account].add(amount); IMintable(esToken).burn(address(this), amount); } function _getNextClaimableAmount(address _account) private view returns (uint256) { uint256 timeDiff = block.timestamp.sub(lastVestingTimes[_account]); uint256 balance = balances[_account]; if (balance == 0) { return 0; } uint256 vestedAmount = getVestedAmount(_account); uint256 claimableAmount = vestedAmount.mul(timeDiff).div(vestingDuration); if (claimableAmount < balance) { return claimableAmount; } return balance; } function _claim(address _account, address _receiver) private returns (uint256) { _updateVesting(_account); uint256 amount = claimable(_account); claimedAmounts[_account] = claimedAmounts[_account].add(amount); IERC20(claimableToken).safeTransfer(_receiver, amount); emit Claim(_account, amount); return amount; } function _validateHandler() private view { require(isHandler[msg.sender], "Vester: forbidden"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_vestingDuration","type":"uint256"},{"internalType":"address","name":"_esToken","type":"address"},{"internalType":"address","name":"_pairToken","type":"address"},{"internalType":"address","name":"_claimableToken","type":"address"},{"internalType":"address","name":"_rewardTracker","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"PairTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bonusRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimForAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimableToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeClaimAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeRewardDeductions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositForAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"esToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getCombinedAverageStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getMaxVestableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_esAmount","type":"uint256"}],"name":"getPairAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getTotalVested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getVestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasMaxVestableAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPairToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasRewardTracker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isHandler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastVestingTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTracker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setBonusRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setCumulativeRewardDeductions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gov","type":"address"}],"name":"setGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_handler","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasMaxVestableAmount","type":"bool"}],"name":"setHasMaxVestableAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTransferredAverageStakedAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTransferredCumulativeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"transferStakeValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"transferredAverageStakedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"transferredCumulativeRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526004805460ff191660121790553480156200001e57600080fd5b506040516200285a3803806200285a833981810160405260e08110156200004457600080fd5b81019080805160405193929190846401000000008211156200006557600080fd5b9083019060208201858111156200007b57600080fd5b82516401000000008111828201881017156200009657600080fd5b82525081516020918201929091019080838360005b83811015620000c5578181015183820152602001620000ab565b50505050905090810190601f168015620000f35780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011757600080fd5b9083019060208201858111156200012d57600080fd5b82516401000000008111828201881017156200014857600080fd5b82525081516020918201929091019080838360005b83811015620001775781810151838201526020016200015d565b50505050905090810190601f168015620001a55780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060840151608085015160a0909501516001600081905580546001600160a01b03191633179055895194975091955093929091620001f9916002918a019062000280565b5085516200020f90600390602089019062000280565b506005859055600680546001600160a01b03199081166001600160a01b038781169190911790925560078054821686841617905560088054821685841617905560098054909116838316179081905516156200027357600c805460ff191660011790555b505050505050506200031c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002c357805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f3578251825591602001919060010190620002d6565b506200030192915062000305565b5090565b5b8082111562000301576000815560010162000306565b61252e806200032c6000396000f3fe608060405234801561001057600080fd5b506004361061023b5760003560e01c806301e336671461024057806306fdde031461027857806308f26c76146102f5578063095ea7b31461032d5780630db9ea4a1461036d57806312d43a511461039357806313e82e7a146103b75780631514617e146103e557806315e90a41146103ed57806316ca05c5146103f557806318160ddd146103fd57806323b872dd1461040557806327e235e31461043b578063313ce56714610461578063342fcda91461047f578063387a785d146104ab5780633ccfd60b146104d15780633de35b79146104d9578063402914f5146104e157806341f227241461050757806345f01ee61461053357806346ea87af146105595780634e71d92d1461057f5780635d50e7291461058757806369de9b93146105ad5780636bcb411a146105cc57806370a08231146105d457806371417b32146105fa5780637337035c146106205780637cf8f3b214610646578063930354731461067257806395d89b41146106985780639cb7de4b146106a0578063a2545fa5146106ce578063a9059cbb1461032d578063acf077a5146106f4578063b5ff136d146106fc578063b6b55f2514610722578063b71bce2a1461073f578063cfad57a214610765578063d0b038b71461078b578063d5a73fdd146107b7578063d75abb57146107dd578063d89b7007146107e5578063dd62ed3e14610811578063e3ecc4b21461083f578063f421f62a1461086b578063f6d6d5aa14610873578063f713c2301461087b575b600080fd5b6102766004803603606081101561025657600080fd5b506001600160a01b038135811691602081013590911690604001356108a9565b005b61028061090f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ba5781810151838201526020016102a2565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031b6004803603602081101561030b57600080fd5b50356001600160a01b031661099a565b60408051918252519081900360200190f35b6103596004803603604081101561034357600080fd5b506001600160a01b038135169060200135610aa3565b604080519115158252519081900360200190f35b61031b6004803603602081101561038357600080fd5b50356001600160a01b0316610aee565b61039b610b00565b604080516001600160a01b039092168252519081900360200190f35b61031b600480360360408110156103cd57600080fd5b506001600160a01b0381358116916020013516610b0f565b61031b610b7a565b61031b610b80565b61039b610b86565b61031b610b95565b6103596004803603606081101561041b57600080fd5b506001600160a01b03813581169160208101359091169060400135610aa3565b61031b6004803603602081101561045157600080fd5b50356001600160a01b0316610b9b565b610469610bad565b6040805160ff9092168252519081900360200190f35b6102766004803603604081101561049557600080fd5b506001600160a01b038135169060200135610bb6565b61031b600480360360208110156104c157600080fd5b50356001600160a01b0316610c1c565b610276610c2e565b61039b610df1565b61031b600480360360208110156104f757600080fd5b50356001600160a01b0316610e00565b6102766004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610e51565b61031b6004803603602081101561054957600080fd5b50356001600160a01b0316610ec7565b6103596004803603602081101561056f57600080fd5b50356001600160a01b0316611039565b61031b61104e565b61031b6004803603602081101561059d57600080fd5b50356001600160a01b03166110af565b610276600480360360208110156105c357600080fd5b503515156110c1565b61039b611121565b61031b600480360360208110156105ea57600080fd5b50356001600160a01b0316611130565b61031b6004803603602081101561061057600080fd5b50356001600160a01b031661114b565b61031b6004803603602081101561063657600080fd5b50356001600160a01b031661115d565b61031b6004803603604081101561065c57600080fd5b506001600160a01b03813516906020013561116f565b61031b6004803603602081101561068857600080fd5b50356001600160a01b03166111d7565b610280611204565b610276600480360360408110156106b657600080fd5b506001600160a01b038135169060200135151561125f565b61031b600480360360208110156106e457600080fd5b50356001600160a01b03166112d7565b6103596112e9565b61031b6004803603602081101561071257600080fd5b50356001600160a01b03166112f2565b6102766004803603602081101561073857600080fd5b5035611304565b61031b6004803603602081101561075557600080fd5b50356001600160a01b0316611361565b6102766004803603602081101561077b57600080fd5b50356001600160a01b0316611373565b610276600480360360408110156107a157600080fd5b506001600160a01b0381351690602001356113e2565b61031b600480360360208110156107cd57600080fd5b50356001600160a01b0316611458565b610359611486565b610276600480360360408110156107fb57600080fd5b506001600160a01b038135169060200135611497565b61031b6004803603604081101561082757600080fd5b506001600160a01b038135811691602001351661150d565b6102766004803603604081101561085557600080fd5b506001600160a01b038135169060200135611515565b61035961158b565b61039b61159c565b6102766004803603604081101561089157600080fd5b506001600160a01b03813581169160200135166115ab565b6001546001600160a01b031633146108f6576040805162461bcd60e51b815260206004820152601560248201526000805160206123c5833981519152604482015290519081900360640190fd5b61090a6001600160a01b0384168383611714565b505050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156109925780601f1061096757610100808354040283529160200191610992565b820191906000526020600020905b81548152906001019060200180831161097557829003601f168201915b505050505081565b60006109a461158b565b6109b057506000610a9e565b6001600160a01b0380831660008181526013602090815260408083205460158352818420546009548351633792def360e01b81526004810197909752925191969095921692633792def39260248082019391829003018186803b158015610a1657600080fd5b505afa158015610a2a573d6000803e3d6000fd5b505050506040513d6020811015610a4057600080fd5b505190506000610a5a83610a548487611766565b90611766565b6001600160a01b03871660009081526014602052604090205490915080821015610a8c57600095505050505050610a9e565b610a9682826117c5565b955050505050505b919050565b6040805162461bcd60e51b81526020600482015260196024820152785665737465723a206e6f6e2d7472616e736665727261626c6560381b6044820152905160009181900360640190fd5b60116020526000908152604090205481565b6001546001600160a01b031681565b600060026000541415610b57576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b6002600055610b64611807565b610b6e8383611861565b60016000559392505050565b60055481565b600b5481565b6006546001600160a01b031681565b600a5481565b600d6020526000908152604090205481565b60045460ff1681565b60026000541415610bfc576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b6002600055610c09611807565b610c138282611914565b50506001600055565b60146020526000908152604090205481565b60026000541415610c74576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b60026000553380610c858180611861565b506001600160a01b0382166000908152600f6020908152604080832054600d9092528220549091610cb68284611766565b905060008111610d0d576040805162461bcd60e51b815260206004820152601d60248201527f5665737465723a2076657374656420616d6f756e74206973207a65726f000000604482015290519081900360640190fd5b610d15611486565b15610d56576001600160a01b0385166000908152600e6020526040902054610d3d8682611ab6565b600754610d54906001600160a01b03168683611714565b505b600654610d6d906001600160a01b03168584611714565b610d778583611b94565b6001600160a01b0385166000818152600f6020908152604080832083905560108252808320839055601182528083209290925581519283528201859052818101849052517ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360600190a150506001600055505050565b6007546001600160a01b031681565b6001600160a01b038116600090815260106020908152604080832054600f9092528220548291610e3091906117c5565b90506000610e3d84611c72565b9050610e498282611766565b949350505050565b60026000541415610e97576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b6002600055610ea4611807565b6001600160a01b0390911660009081526015602052604081209190915560019055565b60095460408051633792def360e01b81526001600160a01b038481166004830152915160009384931691633792def3916024808301926020929190829003018186803b158015610f1657600080fd5b505afa158015610f2a573d6000803e3d6000fd5b505050506040513d6020811015610f4057600080fd5b50516001600160a01b038416600090815260136020526040812054919250610f688383611766565b905080610f7b5760009350505050610a9e565b6009546040805163a318021760e01b81526001600160a01b0388811660048301529151600093929092169163a318021791602480820192602092909190829003018186803b158015610fcc57600080fd5b505afa158015610fe0573d6000803e3d6000fd5b505050506040513d6020811015610ff657600080fd5b50516001600160a01b038716600090815260126020526040902054909150610a9661102b846110258488611d0b565b90611d64565b610a5485611025868a611d0b565b60166020526000908152604090205460ff1681565b600060026000541415611096576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b60026000556110a53380611861565b9050600160005590565b600e6020526000908152604090205481565b6001546001600160a01b0316331461110e576040805162461bcd60e51b815260206004820152601560248201526000805160206123c5833981519152604482015290519081900360640190fd5b600c805460ff1916911515919091179055565b6009546001600160a01b031681565b6001600160a01b03166000908152600d602052604090205490565b60106020526000908152604090205481565b60126020526000908152604090205481565b600061117961158b565b611185575060006111d1565b600061119084610ec7565b9050806111a15760009150506111d1565b60006111ac8561099a565b9050806111be576000925050506111d1565b6111cc816110258685611d0b565b925050505b92915050565b6001600160a01b0381166000908152600f6020908152604080832054600d9092528220546111d191611766565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109925780601f1061096757610100808354040283529160200191610992565b6001546001600160a01b031633146112ac576040805162461bcd60e51b815260206004820152601560248201526000805160206123c5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60156020526000908152604090205481565b600c5460ff1681565b600f6020526000908152604090205481565b6002600054141561134a576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b60026000556113593382611914565b506001600055565b60136020526000908152604090205481565b6001546001600160a01b031633146113c0576040805162461bcd60e51b815260206004820152601560248201526000805160206123c5833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60026000541415611428576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b6002600055611435611807565b6001600160a01b0390911660009081526013602052604081209190915560019055565b6001600160a01b0381166000908152600d6020908152604080832054600f909252822054610e498282611766565b6007546001600160a01b0316151590565b600260005414156114dd576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b60026000556114ea611807565b6001600160a01b0390911660009081526014602052604081209190915560019055565b600092915050565b6002600054141561155b576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b6002600055611568611807565b6001600160a01b0390911660009081526012602052604081209190915560019055565b6009546001600160a01b0316151590565b6008546001600160a01b031681565b600260005414156115f1576040805162461bcd60e51b815260206004820152601f60248201526000805160206123a5833981519152604482015290519081900360640190fd5b60026000556115fe611807565b61160782610ec7565b6001600160a01b0380831660009081526012602090815260408083209490945585831680835284832083905560138252848320546009548651633792def360e01b815260048101939093529551909593949390931692633792def392602480840193919291829003018186803b15801561168057600080fd5b505afa158015611694573d6000803e3d6000fd5b505050506040513d60208110156116aa57600080fd5b505190506116b88282611766565b6001600160a01b0393841660008181526013602081815260408084209590955597909616808252601488528382209490945594865281852085905560159095528084208054958552908420949094558252509081905560019055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261090a908490611da3565b6000828201838110156117be576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b9392505050565b60006117be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e54565b3360009081526016602052604090205460ff1661185f576040805162461bcd60e51b81526020600482015260116024820152702b32b9ba32b91d103337b93134b23232b760791b604482015290519081900360640190fd5b565b600061186c83611eeb565b600061187784610e00565b6001600160a01b03851660009081526010602052604090205490915061189d9082611766565b6001600160a01b038086166000908152601060205260409020919091556008546118c991168483611714565b604080516001600160a01b03861681526020810183905281517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4929181900390910190a19392505050565b60008111611963576040805162461bcd60e51b815260206004820152601760248201527615995cdd195c8e881a5b9d985b1a590817d85b5bdd5b9d604a1b604482015290519081900360640190fd5b61196c82611eeb565b600654611984906001600160a01b0316833084611fc9565b61198e8282612029565b611996611486565b15611a0d576001600160a01b0382166000908152600e6020908152604080832054600d9092528220549091906119cd90859061116f565b905081811115611a0a5760006119e382846117c5565b6007549091506119fe906001600160a01b0316863084611fc9565b611a0885826120eb565b505b50505b600c5460ff1615611a6e576000611a238361099a565b905080611a2f846111d7565b1115611a6c5760405162461bcd60e51b815260040180806020018281038252602481526020018061244b6024913960400191505060405180910390fd5b505b604080516001600160a01b03841681526020810183905281517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c929181900390910190a15050565b6001600160a01b038216611afb5760405162461bcd60e51b81526004018080602001828103825260228152602001806124086022913960400191505060405180910390fd5b611b38816040518060600160405280602381526020016123e5602391396001600160a01b0385166000908152600e60205260409020549190611e54565b6001600160a01b0383166000908152600e6020526040902055600b54611b5e90826117c5565b600b556040805182815290516000916001600160a01b038516916000805160206124d98339815191529181900360200190a35050565b6001600160a01b038216611bd95760405162461bcd60e51b81526004018080602001828103825260228152602001806124086022913960400191505060405180910390fd5b611c16816040518060600160405280602381526020016123e5602391396001600160a01b0385166000908152600d60205260409020549190611e54565b6001600160a01b0383166000908152600d6020526040902055600a54611c3c90826117c5565b600a556040805182815290516000916001600160a01b0385169160008051602061246f8339815191529181900360200190a35050565b6001600160a01b0381166000908152601160205260408120548190611c989042906117c5565b6001600160a01b0384166000908152600d602052604090205490915080611cc457600092505050610a9e565b6000611ccf85611458565b90506000611cec6005546110258685611d0b90919063ffffffff16565b905082811015611d01579350610a9e92505050565b5090949350505050565b600082611d1a575060006111d1565b82820282848281611d2757fe5b04146117be5760405162461bcd60e51b815260040180806020018281038252602181526020018061242a6021913960400191505060405180910390fd5b60006117be83836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b8152506121ad565b6060611df8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122129092919063ffffffff16565b80519091501561090a57808060200190516020811015611e1757600080fd5b505161090a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806124af602a913960400191505060405180910390fd5b60008184841115611ee35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ea8578181015183820152602001611e90565b50505050905090810190601f168015611ed55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000611ef682611c72565b6001600160a01b0383166000908152601160205260409020429055905080611f1e5750611fc6565b611f288282611b94565b6001600160a01b0382166000908152600f6020526040902054611f4b9082611766565b6001600160a01b038084166000908152600f6020526040808220939093556006548351632770a7eb60e21b8152306004820152602481018690529351921692639dc29fac926044808301939282900301818387803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b50505050505b50565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052612023908590611da3565b50505050565b6001600160a01b038216612072576040805162461bcd60e51b8152602060048201819052602482015260008051602061248f833981519152604482015290519081900360640190fd5b600a5461207f9082611766565b600a556001600160a01b0382166000908152600d60205260409020546120a59082611766565b6001600160a01b0383166000818152600d6020908152604080832094909455835185815293519293919260008051602061246f8339815191529281900390910190a35050565b6001600160a01b038216612134576040805162461bcd60e51b8152602060048201819052602482015260008051602061248f833981519152604482015290519081900360640190fd5b600b546121419082611766565b600b556001600160a01b0382166000908152600e60205260409020546121679082611766565b6001600160a01b0383166000818152600e602090815260408083209490945583518581529351929391926000805160206124d98339815191529281900390910190a35050565b600081836121fc5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ea8578181015183820152602001611e90565b50600083858161220857fe5b0495945050505050565b6060610e4984846000858561222685612338565b612277576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106122b65780518252601f199092019160209182019101612297565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612318576040519150601f19603f3d011682016040523d82523d6000602084013e61231d565b606091505b509150915061232d82828661233e565b979650505050505050565b3b151590565b6060831561234d5750816117be565b82511561235d5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611ea8578181015183820152602001611e9056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00476f7665726e61626c653a20666f7262696464656e00000000000000000000005665737465723a206275726e20616d6f756e7420657863656564732062616c616e63655665737465723a206275726e2066726f6d20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775665737465723a206d6178207665737461626c6520616d6f756e74206578636565646564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5665737465723a206d696e7420746f20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564659523c479d006050ebc0d0e48fea36d1b2c5d45b2f31402ac6f8671fc84cc04a2646970667358221220eab90a57896dd6bb5c0741f80d3e7d8f1a46e5ca504314d919c515bb1206f6f064736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000001e133800000000000000000000000005e4a7bf3e07608ac5805c74144f21495180444350000000000000000000000006f7f6e88c36ee4e06c9d2e1c511d91bc789643ce0000000000000000000000003ed4c2d63def617f436eb031bacae16f478f3b00000000000000000000000000f76b35fe83e67ba521626c3ff2c4da274551d2d8000000000000000000000000000000000000000000000000000000000000000c566573746564204450455820000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057644504558000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000001e133800000000000000000000000005e4a7bf3e07608ac5805c74144f21495180444350000000000000000000000006f7f6e88c36ee4e06c9d2e1c511d91bc789643ce0000000000000000000000003ed4c2d63def617f436eb031bacae16f478f3b00000000000000000000000000f76b35fe83e67ba521626c3ff2c4da274551d2d8000000000000000000000000000000000000000000000000000000000000000c566573746564204450455820000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057644504558000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Vested DPEX
Arg [1] : _symbol (string): vDPEX
Arg [2] : _vestingDuration (uint256): 31536000
Arg [3] : _esToken (address): 0x5e4a7bf3e07608ac5805c74144f2149518044435
Arg [4] : _pairToken (address): 0x6f7f6e88c36ee4e06c9d2e1c511d91bc789643ce
Arg [5] : _claimableToken (address): 0x3ed4c2d63def617f436eb031bacae16f478f3b00
Arg [6] : _rewardTracker (address): 0xf76b35fe83e67ba521626c3ff2c4da274551d2d8
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000001e13380
Arg [3] : 0000000000000000000000005e4a7bf3e07608ac5805c74144f2149518044435
Arg [4] : 0000000000000000000000006f7f6e88c36ee4e06c9d2e1c511d91bc789643ce
Arg [5] : 0000000000000000000000003ed4c2d63def617f436eb031bacae16f478f3b00
Arg [6] : 000000000000000000000000f76b35fe83e67ba521626c3ff2c4da274551d2d8
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 5665737465642044504558200000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 7644504558000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
25300:13776:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28292:156;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28292:156:0;;;;;;;;;;;;;;;;;:::i;:::-;;25439:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31261:738;;;;;;;;;;;;;;;;-1:-1:-1;31261:738:0;-1:-1:-1;;;;;31261:738:0;;:::i;:::-;;;;;;;;;;;;;;;;34454:155;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34454:155:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;26044:52;;;;;;;;;;;;;;;;-1:-1:-1;26044:52:0;-1:-1:-1;;;;;26044:52:0;;:::i;8056:18::-;;;:::i;:::-;;;;-1:-1:-1;;;;;8056:18:0;;;;;;;;;;;;;;28017:193;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28017:193:0;;;;;;;;;;:::i;25526:30::-;;;:::i;25742:25::-;;;:::i;25565:22::-;;;:::i;25700:35::-;;;:::i;34676:184::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34676:184:0;;;;;;;;;;;;;;;;;:::i;25817:44::-;;;;;;;;;;;;;;;;-1:-1:-1;25817:44:0;-1:-1:-1;;;;;25817:44:0;;:::i;25491:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27729:159;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27729:159:0;;;;;;;;:::i;26268:71::-;;;;;;;;;;;;;;;;-1:-1:-1;26268:71:0;-1:-1:-1;;;;;26268:71:0;;:::i;28456:907::-;;;:::i;25594:24::-;;;:::i;30977:276::-;;;;;;;;;;;;;;;;-1:-1:-1;30977:276:0;-1:-1:-1;;;;;30977:276:0;;:::i;30798:171::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30798:171:0;;;;;;;;:::i;32007:888::-;;;;;;;;;;;;;;;;-1:-1:-1;32007:888:0;-1:-1:-1;;;;;32007:888:0;;:::i;26412:42::-;;;;;;;;;;;;;;;;-1:-1:-1;26412:42:0;-1:-1:-1;;;;;26412:42:0;;:::i;27896:113::-;;;:::i;25868:47::-;;;;;;;;;;;;;;;;-1:-1:-1;25868:47:0;-1:-1:-1;;;;;25868:47:0;;:::i;27468:141::-;;;;;;;;;;;;;;;;-1:-1:-1;27468:141:0;;;;:::i;25663:28::-;;;:::i;33846:120::-;;;;;;;;;;;;;;;;-1:-1:-1;33846:120:0;-1:-1:-1;;;;;33846:120:0;;:::i;25987:50::-;;;;;;;;;;;;;;;;-1:-1:-1;25987:50:0;-1:-1:-1;;;;;25987:50:0;;:::i;26105:76::-;;;;;;;;;;;;;;;;-1:-1:-1;26105:76:0;-1:-1:-1;;;;;26105:76:0;;:::i;32903:549::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32903:549:0;;;;;;;;:::i;33684:154::-;;;;;;;;;;;;;;;;-1:-1:-1;33684:154:0;-1:-1:-1;;;;;33684:154:0;;:::i;25464:20::-;;;:::i;27339:121::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27339:121:0;;;;;;;;;;:::i;26346:57::-;;;;;;;;;;;;;;;;-1:-1:-1;26346:57:0;-1:-1:-1;;;;;26346:57:0;;:::i;25776:32::-;;;:::i;25922:58::-;;;;;;;;;;;;;;;;-1:-1:-1;25922:58:0;-1:-1:-1;;;;;25922:58:0;;:::i;27617:104::-;;;;;;;;;;;;;;;;-1:-1:-1;27617:104:0;;:::i;26188:73::-;;;;;;;;;;;;;;;;-1:-1:-1;26188:73:0;-1:-1:-1;;;;;26188:73:0;;:::i;8256:76::-;;;;;;;;;;;;;;;;-1:-1:-1;8256:76:0;-1:-1:-1;;;;;8256:76:0;;:::i;30380:203::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30380:203:0;;;;;;;;:::i;34868:255::-;;;;;;;;;;;;;;;;-1:-1:-1;34868:255:0;-1:-1:-1;;;;;34868:255:0;;:::i;33576:100::-;;;:::i;30591:199::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30591:199:0;;;;;;;;:::i;34250:137::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34250:137:0;;;;;;;;;;:::i;30163:209::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30163:209:0;;;;;;;;:::i;33460:108::-;;;:::i;25625:29::-;;;:::i;29371:784::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29371:784:0;;;;;;;;;;:::i;28292:156::-;8199:3;;-1:-1:-1;;;;;8199:3:0;8185:10;:17;8177:51;;;;;-1:-1:-1;;;8177:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8177:51:0;;;;;;;;;;;;;;;28394:46:::1;-1:-1:-1::0;;;;;28394:27:0;::::1;28422:8:::0;28432:7;28394:27:::1;:46::i;:::-;28292:156:::0;;;:::o;25439:18::-;;;;;;;;;;;;;;-1:-1:-1;;25439:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31261:738::-;31339:7;31364:18;:16;:18::i;:::-;31359:38;;-1:-1:-1;31393:1:0;31386:8;;31359:38;-1:-1:-1;;;;;31447:38:0;;;31409:35;31447:38;;;:28;:38;;;;;;;;;31518:12;:22;;;;;;31593:13;;31578:57;;-1:-1:-1;;;31578:57:0;;;;;;;;;;;31447:38;;31518:22;;31593:13;;;31578:47;;:57;;;;;;;;;;;31593:13;31578:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31578:57:0;;-1:-1:-1;31646:25:0;31674:66;31728:11;31674:49;31578:57;31695:27;31674:20;:49::i;:::-;:53;;:66::i;:::-;-1:-1:-1;;;;;31789:36:0;;31753:33;31789:36;;;:26;:36;;;;;;31646:94;;-1:-1:-1;31842:45:0;;;31838:86;;;31911:1;31904:8;;;;;;;;;31838:86;31943:48;:17;31965:25;31943:21;:48::i;:::-;31936:55;;;;;;;31261:738;;;;:::o;34454:155::-;34566:35;;;-1:-1:-1;;;34566:35:0;;;;;;;;;;;;-1:-1:-1;;;34566:35:0;;;;;;34549:4;;34566:35;;;;;;;26044:52;;;;;;;;;;;;;:::o;8056:18::-;;;-1:-1:-1;;;;;8056:18:0;;:::o;28017:193::-;28119:7;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;28139::::1;:16;:18::i;:::-;28175:27;28182:8;28192:9;28175:6;:27::i;:::-;12546:1:::0;13508:7;:22;28168:34;28017:193;-1:-1:-1;;;28017:193:0:o;25526:30::-;;;;:::o;25742:25::-;;;;:::o;25565:22::-;;;-1:-1:-1;;;;;25565:22:0;;:::o;25700:35::-;;;;:::o;25817:44::-;;;;;;;;;;;;;:::o;25491:26::-;;;;;;:::o;27729:159::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;27824::::1;:16;:18::i;:::-;27853:27;27862:8;27872:7;27853:8;:27::i;:::-;-1:-1:-1::0;;12546:1:0;13508:7;:22;27729:159::o;26268:71::-;;;;;;;;;;;;;:::o;28456:907::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;28527:10:::1;::::0;28586:26:::1;28527:10:::0;;28586:6:::1;:26::i;:::-;-1:-1:-1::0;;;;;;28649:31:0;::::1;28625:21;28649:31:::0;;;:22:::1;:31;::::0;;;;;;;;28709:8:::1;:17:::0;;;;;;28649:31;;28759:26:::1;28709:17:::0;28649:31;28759:11:::1;:26::i;:::-;28737:48;;28818:1;28804:11;:15;28796:57;;;::::0;;-1:-1:-1;;;28796:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;28870:14;:12;:14::i;:::-;28866:201;;;-1:-1:-1::0;;;;;28922:20:0;::::1;28901:18;28922:20:::0;;;:11:::1;:20;::::0;;;;;28957:30:::1;28934:7:::0;28922:20;28957:9:::1;:30::i;:::-;29009:9;::::0;29002:53:::1;::::0;-1:-1:-1;;;;;29009:9:0::1;29033::::0;29044:10;29002:30:::1;:53::i;:::-;28866:201;;29086:7;::::0;29079:48:::1;::::0;-1:-1:-1;;;;;29086:7:0::1;29108:9:::0;29119:7;29079:28:::1;:48::i;:::-;29138:23;29144:7;29153;29138:5;:23::i;:::-;-1:-1:-1::0;;;;;29181:31:0;::::1;;::::0;;;:22:::1;:31;::::0;;;;;;;29174:38;;;29230:14:::1;:23:::0;;;;;29223:30;;;29271:16:::1;:25:::0;;;;;29264:32;;;;29314:41;;;;;;::::1;::::0;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;12546:1:0;13508:7;:22;-1:-1:-1;;;28456:907:0:o;25594:24::-;;;-1:-1:-1;;;;;25594:24:0;;:::o;30977:276::-;-1:-1:-1;;;;;31109:24:0;;31035:7;31109:24;;;:14;:24;;;;;;;;;31072:22;:32;;;;;;31035:7;;31072:62;;:32;:36;:62::i;:::-;31055:79;;31145:21;31169:33;31193:8;31169:23;:33::i;:::-;31145:57;-1:-1:-1;31220:25:0;:6;31145:57;31220:10;:25::i;:::-;31213:32;30977:276;-1:-1:-1;;;;30977:276:0:o;30798:171::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;30900::::1;:16;:18::i;:::-;-1:-1:-1::0;;;;;30929:22:0;;::::1;;::::0;;;:12:::1;:22;::::0;;;;:32;;;;12546:1;13508:22;;30798:171::o;32007:888::-;32157:13;;32142:57;;;-1:-1:-1;;;32142:57:0;;-1:-1:-1;;;;;32142:57:0;;;;;;;;;32095:7;;;;32157:13;;32142:47;;:57;;;;;;;;;;;;;;32157:13;32142:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32142:57:0;-1:-1:-1;;;;;32248:38:0;;32210:35;32248:38;;;:28;32142:57;32248:38;;;;;32142:57;;-1:-1:-1;32329:49:0;32142:57;32248:38;32329:20;:49::i;:::-;32297:81;-1:-1:-1;32393:26:0;32389:45;;32430:1;32423:8;;;;;;;32389:45;32491:13;;32476:60;;;-1:-1:-1;;;32476:60:0;;-1:-1:-1;;;;;32476:60:0;;;;;;;;;32446:27;;32491:13;;;;;32476:50;;:60;;;;;;;;;;;;;;;32491:13;32476:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32476:60:0;-1:-1:-1;;;;;32588:41:0;;32547:38;32588:41;;;:31;32476:60;32588:41;;;;;32476:60;;-1:-1:-1;32649:238:0;32782:90;32850:21;32782:63;32588:41;32817:27;32782:34;:63::i;:::-;:67;;:90::i;:::-;32649:96;32723:21;32649:55;:19;32687:16;32649:37;:55::i;26412:42::-;;;;;;;;;;;;;;;:::o;27896:113::-;27944:7;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;27971:30:::1;27978:10;::::0;27971:6:::1;:30::i;:::-;27964:37;;12546:1:::0;13508:7;:22;27896:113;:::o;25868:47::-;;;;;;;;;;;;;:::o;27468:141::-;8199:3;;-1:-1:-1;;;;;8199:3:0;8185:10;:17;8177:51;;;;;-1:-1:-1;;;8177:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8177:51:0;;;;;;;;;;;;;;;27557:20:::1;:44:::0;;-1:-1:-1;;27557:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27468:141::o;25663:28::-;;;-1:-1:-1;;;;;25663:28:0;;:::o;33846:120::-;-1:-1:-1;;;;;33940:18:0;33913:7;33940:18;;;:8;:18;;;;;;;33846:120::o;25987:50::-;;;;;;;;;;;;;:::o;26105:76::-;;;;;;;;;;;;;:::o;32903:549::-;32984:7;33009:18;:16;:18::i;:::-;33004:38;;-1:-1:-1;33038:1:0;33031:8;;33004:38;33054:35;33092:40;33123:8;33092:30;:40::i;:::-;33054:78;-1:-1:-1;33147:32:0;33143:73;;33203:1;33196:8;;;;;33143:73;33228:25;33256:30;33277:8;33256:20;:30::i;:::-;33228:58;-1:-1:-1;33301:22:0;33297:63;;33347:1;33340:8;;;;;;33297:63;33379:65;33426:17;33379:42;:9;33393:27;33379:13;:42::i;:65::-;33372:72;;;;32903:549;;;;;:::o;33684:154::-;-1:-1:-1;;;;;33797:32:0;;33747:7;33797:32;;;:22;:32;;;;;;;;;33774:8;:18;;;;;;:56;;:22;:56::i;25464:20::-;;;;;;;;;;;;;;;-1:-1:-1;;25464:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27339:121;8199:3;;-1:-1:-1;;;;;8199:3:0;8185:10;:17;8177:51;;;;;-1:-1:-1;;;8177:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8177:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27421:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:31;;-1:-1:-1;;27421:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27339:121::o;26346:57::-;;;;;;;;;;;;;:::o;25776:32::-;;;;;;:::o;25922:58::-;;;;;;;;;;;;;:::o;27617:104::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;27684:29:::1;27693:10;27705:7:::0;27684:8:::1;:29::i;:::-;-1:-1:-1::0;12546:1:0;13508:7;:22;27617:104::o;26188:73::-;;;;;;;;;;;;;:::o;8256:76::-;8199:3;;-1:-1:-1;;;;;8199:3:0;8185:10;:17;8177:51;;;;;-1:-1:-1;;;8177:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8177:51:0;;;;;;;;;;;;;;;8314:3:::1;:10:::0;;-1:-1:-1;;;;;;8314:10:0::1;-1:-1:-1::0;;;;;8314:10:0;;;::::1;::::0;;;::::1;::::0;;8256:76::o;30380:203::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;30498::::1;:16;:18::i;:::-;-1:-1:-1::0;;;;;30527:38:0;;::::1;;::::0;;;:28:::1;:38;::::0;;;;:48;;;;12546:1;13508:22;;30380:203::o;34868:255::-;-1:-1:-1;;;;;34970:18:0;;34932:7;34970:18;;;:8;:18;;;;;;;;;35031:22;:32;;;;;;35081:34;34970:18;35031:32;35081:11;:34::i;33576:100::-;33645:9;;-1:-1:-1;;;;;33645:9:0;:23;;33576:100;:::o;30591:199::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;30707::::1;:16;:18::i;:::-;-1:-1:-1::0;;;;;30736:36:0;;::::1;;::::0;;;:26:::1;:36;::::0;;;;:46;;;;12546:1;13508:22;;30591:199::o;34250:137::-;34351:7;34250:137;;;;:::o;30163:209::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;30284::::1;:16;:18::i;:::-;-1:-1:-1::0;;;;;30313:41:0;;::::1;;::::0;;;:31:::1;:41;::::0;;;;:51;;;;12546:1;13508:22;;30163:209::o;33460:108::-;33533:13;;-1:-1:-1;;;;;33533:13:0;:27;;33460:108;:::o;25625:29::-;;;-1:-1:-1;;;;;25625:29:0;;:::o;29371:784::-;12590:1;13196:7;;:19;;13188:63;;;;;-1:-1:-1;;;13188:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13188:63:0;;;;;;;;;;;;;;;12590:1;13329:7;:18;29478::::1;:16;:18::i;:::-;29554:39;29585:7;29554:30;:39::i;:::-;-1:-1:-1::0;;;;;29509:42:0;;::::1;;::::0;;;:31:::1;:42;::::0;;;;;;;:84;;;;29604:40;;::::1;::::0;;;;;;:44;;;29699:28:::1;:37:::0;;;;;;29789:13:::1;::::0;29774:56;;-1:-1:-1;;;29774:56:0;;::::1;::::0;::::1;::::0;;;;;;29699:37;;29509:42;;29789:13;;;::::1;::::0;29774:47:::1;::::0;:56;;;;;29509:42;;29774:56;;;;;;29789:13;29774:56;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;29774:56:0;;-1:-1:-1;29885:49:0::1;:27:::0;29774:56;29885:31:::1;:49::i;:::-;-1:-1:-1::0;;;;;29843:39:0;;::::1;;::::0;;;:28:::1;:39;::::0;;;;;;;:91;;;;29945:35;;;::::1;::::0;;;:26:::1;:35:::0;;;;;:54;;;;30010:37;;;;;;:41;;;30090:12:::1;:21:::0;;;;;;;;30064:23;;;;;;:47;;;;30122:21;;-1:-1:-1;30122:25:0;;;;-1:-1:-1;13508:22:0;;29371:784::o;22198:177::-;22308:58;;;-1:-1:-1;;;;;22308:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22308:58:0;-1:-1:-1;;;22308:58:0;;;22281:86;;22301:5;;22281:19;:86::i;17152:181::-;17210:7;17242:5;;;17266:6;;;;17258:46;;;;;-1:-1:-1;;;17258:46:0;;;;;;;;;;;;-1:-1:-1;;;17258:46:0;;;;;;;;;;;;;;;17324:1;17152:181;-1:-1:-1;;;17152:181:0:o;17616:136::-;17674:7;17701:43;17705:1;17708;17701:43;;;;;;;;;;;;;;;;;:3;:43::i;38962:111::-;39032:10;39022:21;;;;:9;:21;;;;;;;;39014:51;;;;;-1:-1:-1;;;39014:51:0;;;;;;;;;;;;-1:-1:-1;;;39014:51:0;;;;;;;;;;;;;;;38962:111::o;38583:371::-;38653:7;38673:24;38688:8;38673:14;:24::i;:::-;38708:14;38725:19;38735:8;38725:9;:19::i;:::-;-1:-1:-1;;;;;38782:24:0;;;;;;:14;:24;;;;;;38708:36;;-1:-1:-1;38782:36:0;;38708;38782:28;:36::i;:::-;-1:-1:-1;;;;;38755:24:0;;;;;;;:14;:24;;;;;:63;;;;38836:14;;38829:54;;38836:14;38865:9;38876:6;38829:35;:54::i;:::-;38899:23;;;-1:-1:-1;;;;;38899:23:0;;;;;;;;;;;;;;;;;;;;;;;38940:6;38583:371;-1:-1:-1;;;38583:371:0:o;36529:1009::-;36619:1;36609:7;:11;36601:47;;;;;-1:-1:-1;;;36601:47:0;;;;;;;;;;;;-1:-1:-1;;;36601:47:0;;;;;;;;;;;;;;;36661:24;36676:8;36661:14;:24::i;:::-;36705:7;;36698:66;;-1:-1:-1;;;;;36705:7:0;36731:8;36749:4;36756:7;36698:32;:66::i;:::-;36777:24;36783:8;36793:7;36777:5;:24::i;:::-;36818:14;:12;:14::i;:::-;36814:457;;;-1:-1:-1;;;;;36870:21:0;;36849:18;36870:21;;;:11;:21;;;;;;;;;36955:8;:18;;;;;;36870:21;;36849:18;36931:43;;36882:8;;36931:13;:43::i;:::-;36906:68;;37010:10;36993:14;:27;36989:271;;;37041:22;37066:30;:14;37085:10;37066:18;:30::i;:::-;37122:9;;37041:55;;-1:-1:-1;37115:75:0;;-1:-1:-1;;;;;37122:9:0;37150:8;37168:4;37041:55;37115:34;:75::i;:::-;37209:35;37219:8;37229:14;37209:9;:35::i;:::-;36989:271;;36814:457;;;37287:20;;;;37283:204;;;37324:17;37344:30;37365:8;37344:20;:30::i;:::-;37324:50;;37425:9;37397:24;37412:8;37397:14;:24::i;:::-;:37;;37389:86;;;;-1:-1:-1;;;37389:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37283:204;;37504:26;;;-1:-1:-1;;;;;37504:26:0;;;;;;;;;;;;;;;;;;;;;;;36529:1009;;:::o;36153:368::-;-1:-1:-1;;;;;36234:22:0;;36226:69;;;;-1:-1:-1;;;36226:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36332:73;36358:7;36332:73;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36332:21:0;;;;;;:11;:21;;;;;;;:73;:25;:73::i;:::-;-1:-1:-1;;;;;36308:21:0;;;;;;:11;:21;;;;;:97;36429:10;;:23;;36444:7;36429:14;:23::i;:::-;36416:10;:36;36470:43;;;;;;;;36501:1;;-1:-1:-1;;;;;36470:43:0;;;-1:-1:-1;;;;;;;;;;;36470:43:0;;;;;;;;36153:368;;:::o;35789:356::-;-1:-1:-1;;;;;35866:22:0;;35858:69;;;;-1:-1:-1;;;35858:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35961:70;35984:7;35961:70;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35961:18:0;;;;;;:8;:18;;;;;;;:70;:22;:70::i;:::-;-1:-1:-1;;;;;35940:18:0;;;;;;:8;:18;;;;;:91;36056:11;;:24;;36072:7;36056:15;:24::i;:::-;36042:11;:38;36098:39;;;;;;;;36125:1;;-1:-1:-1;;;;;36098:39:0;;;-1:-1:-1;;;;;;;;;;;36098:39:0;;;;;;;;35789:356;;:::o;38054:521::-;-1:-1:-1;;;;;38186:26:0;;38127:7;38186:26;;;:16;:26;;;;;;38127:7;;38166:47;;:15;;:19;:47::i;:::-;-1:-1:-1;;;;;38244:18:0;;38226:15;38244:18;;;:8;:18;;;;;;38147:66;;-1:-1:-1;38277:12:0;38273:31;;38300:1;38293:8;;;;;;38273:31;38316:20;38339:25;38355:8;38339:15;:25::i;:::-;38316:48;;38375:23;38401:47;38432:15;;38401:26;38418:8;38401:12;:16;;:26;;;;:::i;:47::-;38375:73;;38483:7;38465:15;:25;38461:80;;;38514:15;-1:-1:-1;38507:22:0;;-1:-1:-1;;;38507:22:0;38461:80;-1:-1:-1;38560:7:0;;38054:521;-1:-1:-1;;;;38054:521:0:o;18506:471::-;18564:7;18809:6;18805:47;;-1:-1:-1;18839:1:0;18832:8;;18805:47;18876:5;;;18880:1;18876;:5;:1;18900:5;;;;;:10;18892:56;;;;-1:-1:-1;;;18892:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19453:132;19511:7;19538:39;19542:1;19545;19538:39;;;;;;;;;;;;;-1:-1:-1;;;19538:39:0;;;:3;:39::i;24503:761::-;24927:23;24953:69;24981:4;24953:69;;;;;;;;;;;;;;;;;24961:5;-1:-1:-1;;;;;24953:27:0;;;:69;;;;;:::i;:::-;25037:17;;24927:95;;-1:-1:-1;25037:21:0;25033:224;;25179:10;25168:30;;;;;;;;;;;;;;;-1:-1:-1;25168:30:0;25160:85;;;;-1:-1:-1;;;25160:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18055:192;18141:7;18177:12;18169:6;;;;18161:29;;;;-1:-1:-1;;;18161:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18213:5:0;;;18055:192::o;37546:500::-;37607:14;37624:33;37648:8;37624:23;:33::i;:::-;-1:-1:-1;;;;;37670:26:0;;;;;;:16;:26;;;;;37699:15;37670:44;;37607:50;-1:-1:-1;37731:11:0;37727:50;;37759:7;;;37727:50;37866:23;37872:8;37882:6;37866:5;:23::i;:::-;-1:-1:-1;;;;;37935:32:0;;;;;;:22;:32;;;;;;:44;;37972:6;37935:36;:44::i;:::-;-1:-1:-1;;;;;37900:32:0;;;;;;;:22;:32;;;;;;:79;;;;38002:7;;37992:46;;-1:-1:-1;;;37992:46:0;;38024:4;37992:46;;;;;;;;;;;;38002:7;;;37992:23;;:46;;;;;37900:32;37992:46;;;;;37900:32;38002:7;37992:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37546:500;;;:::o;22383:205::-;22511:68;;;-1:-1:-1;;;;;22511:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22511:68:0;-1:-1:-1;;;22511:68:0;;;22484:96;;22504:5;;22484:19;:96::i;:::-;22383:205;;;;:::o;35131:315::-;-1:-1:-1;;;;;35208:22:0;;35200:67;;;;;-1:-1:-1;;;35200:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35200:67:0;;;;;;;;;;;;;;;35294:11;;:24;;35310:7;35294:15;:24::i;:::-;35280:11;:38;-1:-1:-1;;;;;35350:18:0;;;;;;:8;:18;;;;;;:31;;35373:7;35350:22;:31::i;:::-;-1:-1:-1;;;;;35329:18:0;;;;;;:8;:18;;;;;;;;:52;;;;35399:39;;;;;;;35329:18;;;;-1:-1:-1;;;;;;;;;;;35399:39:0;;;;;;;;;35131:315;;:::o;35454:327::-;-1:-1:-1;;;;;35535:22:0;;35527:67;;;;;-1:-1:-1;;;35527:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35527:67:0;;;;;;;;;;;;;;;35620:10;;:23;;35635:7;35620:14;:23::i;:::-;35607:10;:36;-1:-1:-1;;;;;35678:21:0;;;;;;:11;:21;;;;;;:34;;35704:7;35678:25;:34::i;:::-;-1:-1:-1;;;;;35654:21:0;;;;;;:11;:21;;;;;;;;:58;;;;35730:43;;;;;;;35654:21;;;;-1:-1:-1;;;;;;;;;;;35730:43:0;;;;;;;;;35454:327;;:::o;20081:278::-;20167:7;20202:12;20195:5;20187:28;;;;-1:-1:-1;;;20187:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20226:9;20242:1;20238;:5;;;;;;;20081:278;-1:-1:-1;;;;;20081:278:0:o;3661:195::-;3764:12;3796:52;3818:6;3826:4;3832:1;3835:12;3764;4965:18;4976:6;4965:10;:18::i;:::-;4957:60;;;;;-1:-1:-1;;;4957:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5091:12;5105:23;5132:6;-1:-1:-1;;;;;5132:11:0;5152:5;5160:4;5132:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5132:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5090:75;;;;5183:52;5201:7;5210:10;5222:12;5183:17;:52::i;:::-;5176:59;4713:530;-1:-1:-1;;;;;;;4713:530:0:o;743:422::-;1110:20;1149:8;;;743:422::o;7253:742::-;7368:12;7397:7;7393:595;;;-1:-1:-1;7428:10:0;7421:17;;7393:595;7542:17;;:21;7538:439;;7805:10;7799:17;7866:15;7853:10;7849:2;7845:19;7838:44;7753:148;7941:20;;-1:-1:-1;;;7941:20:0;;;;;;;;;;;;;;;;;7948:12;;7941:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://eab90a57896dd6bb5c0741f80d3e7d8f1a46e5ca504314d919c515bb1206f6f0
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.