Contract Overview
Balance:
0 MOVR
MOVR Value:
$0.00
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
StrategyEthMovrLp
Compiler Version
v0.6.7+commit.b8d736ae
Contract Source Code (Solidity)
/** *Submitted for verification at moonriver.moonscan.io on 2022-03-10 */ /** *Submitted for verification at moonriver.moonscan.io on 2022-03-10 */ /** *Submitted for verification at moonriver.moonscan.io on 2021-11-22 */ // Sources flattened with hardhat v2.6.8 https://hardhat.org // File src/lib/safe-math.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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. */ 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; } } // File src/lib/context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File src/lib/erc20.sol // File: contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; // File: contracts/token/ERC20/IERC20.sol /** * @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); } // File: contracts/utils/Address.sol /** * @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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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); } } } } // File: contracts/token/ERC20/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @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"); } } } // File src/interfaces/jar.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; interface IJar is IERC20 { function token() external view returns (address); function reward() external view returns (address); function claimInsurance() external; // NOTE: Only yDelegatedVault implements this function getRatio() external view returns (uint256); function depositAll() external; function balance() external view returns (uint256); function deposit(uint256) external; function withdrawAll() external; function withdraw(uint256) external; function earn() external; function decimals() external view returns (uint8); } // File src/interfaces/staking-rewards.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; interface IStakingRewards { function balanceOf(address account) external view returns (uint256); function earned(address account) external view returns (uint256); function exit() external; function getReward() external; function getRewardForDuration() external view returns (uint256); function lastTimeRewardApplicable() external view returns (uint256); function lastUpdateTime() external view returns (uint256); function notifyRewardAmount(uint256 reward) external; function periodFinish() external view returns (uint256); function rewardPerToken() external view returns (uint256); function rewardPerTokenStored() external view returns (uint256); function rewardRate() external view returns (uint256); function rewards(address) external view returns (uint256); function rewardsDistribution() external view returns (address); function rewardsDuration() external view returns (uint256); function rewardsToken() external view returns (address); function stake(uint256 amount) external; function deposit(uint256 amount) external; function stakeWithPermit( uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; function stakingToken() external view returns (address); function totalSupply() external view returns (uint256); function userRewardPerTokenPaid(address) external view returns (uint256); function withdraw(uint256 amount) external; } interface IStakingRewardsFactory { function deploy(address stakingToken, uint256 rewardAmount) external; function isOwner() external view returns (bool); function notifyRewardAmount(address stakingToken) external; function notifyRewardAmounts() external; function owner() external view returns (address); function renounceOwnership() external; function rewardsToken() external view returns (address); function stakingRewardsGenesis() external view returns (uint256); function stakingRewardsInfoByStakingToken(address) external view returns (address stakingRewards, uint256 rewardAmount); function stakingTokens(uint256) external view returns (address); function transferOwnership(address newOwner) external; } // File src/interfaces/masterchef.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.7; interface IMasterchef { function BONUS_MULTIPLIER() external view returns (uint256); function add( uint256 _allocPoint, address _lpToken, bool _withUpdate ) external; function bonusEndBlock() external view returns (uint256); function deposit(uint256 _pid, uint256 _amount) external; function dev(address _devaddr) external; function devFundDivRate() external view returns (uint256); function devaddr() external view returns (address); function emergencyWithdraw(uint256 _pid) external; function getMultiplier(uint256 _from, uint256 _to) external view returns (uint256); function massUpdatePools() external; function owner() external view returns (address); function pendingPickle(uint256 _pid, address _user) external view returns (uint256); function pendingReward(uint256 _pid, address _user) external view returns (uint256); function pending(uint256 _pid, address _user) external view returns (uint256); function pickle() external view returns (address); function picklePerBlock() external view returns (uint256); function poolInfo(uint256) external view returns ( address lpToken, uint256 allocPoint, uint256 lastRewardBlock, uint256 accPicklePerShare ); function poolLength() external view returns (uint256); function renounceOwnership() external; function set( uint256 _pid, uint256 _allocPoint, bool _withUpdate ) external; function setBonusEndBlock(uint256 _bonusEndBlock) external; function setDevFundDivRate(uint256 _devFundDivRate) external; function setPicklePerBlock(uint256 _picklePerBlock) external; function startBlock() external view returns (uint256); function totalAllocPoint() external view returns (uint256); function transferOwnership(address newOwner) external; function updatePool(uint256 _pid) external; function userInfo(uint256, address) external view returns (uint256 amount, uint256 rewardDebt); function withdraw(uint256 _pid, uint256 _amount) external; } // File src/interfaces/uniswapv2.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; interface UniswapRouterV2 { function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function createPair(address tokenA, address tokenB) external returns (address pair); } // File src/interfaces/controller.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IController { function jars(address) external view returns (address); function rewards() external view returns (address); function devfund() external view returns (address); function treasury() external view returns (address); function balanceOf(address) external view returns (uint256); function withdraw(address, uint256) external; function withdrawReward(address, uint256) external; function earn(address, uint256) external; function strategies(address) external view returns (address); } // File src/strategies/moonriver/strategy-base.sol pragma solidity ^0.6.7; // Strategy Contract Basics abstract contract StrategyBase { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; // Perfomance fees - start with 10% uint256 public performanceTreasuryFee = 1000; uint256 public constant performanceTreasuryMax = 10000; uint256 public performanceDevFee = 0; uint256 public constant performanceDevMax = 10000; // Withdrawal fee 0% // - 0% to treasury // - 0% to dev fund uint256 public withdrawalTreasuryFee = 0; uint256 public constant withdrawalTreasuryMax = 100000; uint256 public withdrawalDevFundFee = 0; uint256 public constant withdrawalDevFundMax = 100000; // Tokens address public want; address public constant movr = 0x98878B06940aE243284CA214f92Bb71a2b032B8A; // User accounts address public governance; address public controller; address public strategist; address public timelock; // Dex - SolarRouter address public sushiRouter = 0xAA30eF758139ae4a7f798112902Bf6d65612045f; mapping(address => bool) public harvesters; constructor( address _want, address _governance, address _strategist, address _controller, address _timelock ) public { require(_want != address(0)); require(_governance != address(0)); require(_strategist != address(0)); require(_controller != address(0)); require(_timelock != address(0)); want = _want; governance = _governance; strategist = _strategist; controller = _controller; timelock = _timelock; } // **** Modifiers **** // modifier onlyBenevolent { require( harvesters[msg.sender] || msg.sender == governance || msg.sender == strategist ); _; } // **** Views **** // function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } function balanceOfPool() public virtual view returns (uint256); function balanceOf() public view returns (uint256) { return balanceOfWant().add(balanceOfPool()); } function getName() external virtual pure returns (string memory); // **** Setters **** // function whitelistHarvesters(address[] calldata _harvesters) external { require(msg.sender == governance || msg.sender == strategist || harvesters[msg.sender], "not authorized"); for (uint i = 0; i < _harvesters.length; i ++) { harvesters[_harvesters[i]] = true; } } function revokeHarvesters(address[] calldata _harvesters) external { require(msg.sender == governance || msg.sender == strategist, "not authorized"); for (uint i = 0; i < _harvesters.length; i ++) { harvesters[_harvesters[i]] = false; } } function setWithdrawalDevFundFee(uint256 _withdrawalDevFundFee) external { require(msg.sender == timelock, "!timelock"); withdrawalDevFundFee = _withdrawalDevFundFee; } function setWithdrawalTreasuryFee(uint256 _withdrawalTreasuryFee) external { require(msg.sender == timelock, "!timelock"); withdrawalTreasuryFee = _withdrawalTreasuryFee; } function setPerformanceDevFee(uint256 _performanceDevFee) external { require(msg.sender == timelock, "!timelock"); performanceDevFee = _performanceDevFee; } function setPerformanceTreasuryFee(uint256 _performanceTreasuryFee) external { require(msg.sender == timelock, "!timelock"); performanceTreasuryFee = _performanceTreasuryFee; } function setStrategist(address _strategist) external { require(msg.sender == governance, "!governance"); strategist = _strategist; } function setGovernance(address _governance) external { require(msg.sender == governance, "!governance"); governance = _governance; } function setTimelock(address _timelock) external { require(msg.sender == timelock, "!timelock"); timelock = _timelock; } function setController(address _controller) external { require(msg.sender == timelock, "!timelock"); controller = _controller; } // **** State mutations **** // function deposit() public virtual; // Controller only function for creating additional rewards from dust function withdraw(IERC20 _asset) external returns (uint256 balance) { require(msg.sender == controller, "!controller"); require(want != address(_asset), "want"); balance = _asset.balanceOf(address(this)); _asset.safeTransfer(controller, balance); } // Withdraw partial funds, normally used with a jar withdrawal function withdraw(uint256 _amount) external { require(msg.sender == controller, "!controller"); uint256 _balance = IERC20(want).balanceOf(address(this)); if (_balance < _amount) { _amount = _withdrawSome(_amount.sub(_balance)); _amount = _amount.add(_balance); } uint256 _feeDev = _amount.mul(withdrawalDevFundFee).div( withdrawalDevFundMax ); IERC20(want).safeTransfer(IController(controller).devfund(), _feeDev); uint256 _feeTreasury = _amount.mul(withdrawalTreasuryFee).div( withdrawalTreasuryMax ); IERC20(want).safeTransfer( IController(controller).treasury(), _feeTreasury ); address _jar = IController(controller).jars(address(want)); require(_jar != address(0), "!jar"); // additional protection so we don't burn the funds IERC20(want).safeTransfer(_jar, _amount.sub(_feeDev).sub(_feeTreasury)); } // Withdraw funds, used to swap between strategies function withdrawForSwap(uint256 _amount) external returns (uint256 balance) { require(msg.sender == controller, "!controller"); _withdrawSome(_amount); balance = IERC20(want).balanceOf(address(this)); address _jar = IController(controller).jars(address(want)); require(_jar != address(0), "!jar"); IERC20(want).safeTransfer(_jar, balance); } // Withdraw all funds, normally used when migrating strategies function withdrawAll() external returns (uint256 balance) { require(msg.sender == controller, "!controller"); _withdrawAll(); balance = IERC20(want).balanceOf(address(this)); address _jar = IController(controller).jars(address(want)); require(_jar != address(0), "!jar"); // additional protection so we don't burn the funds IERC20(want).safeTransfer(_jar, balance); } function _withdrawAll() internal { _withdrawSome(balanceOfPool()); } function _withdrawSome(uint256 _amount) internal virtual returns (uint256); function harvest() public virtual; // **** Emergency functions **** function execute(address _target, bytes memory _data) public payable returns (bytes memory response) { require(msg.sender == timelock, "!timelock"); require(_target != address(0), "!target"); // call contract in current context assembly { let succeeded := delegatecall( sub(gas(), 5000), _target, add(_data, 0x20), mload(_data), 0, 0 ) let size := returndatasize() response := mload(0x40) mstore( 0x40, add(response, and(add(add(size, 0x20), 0x1f), not(0x1f))) ) mstore(response, size) returndatacopy(add(response, 0x20), 0, size) switch iszero(succeeded) case 1 { // throw if delegatecall failed revert(add(response, 0x20), size) } } } // **** Internal functions **** function _swapSushiswap( address _from, address _to, uint256 _amount ) internal { require(_to != address(0)); address[] memory path; if (_from == movr || _to == movr) { path = new address[](2); path[0] = _from; path[1] = _to; } else { path = new address[](3); path[0] = _from; path[1] = movr; path[2] = _to; } IERC20(_from).safeApprove(sushiRouter, 0); IERC20(_from).safeApprove(sushiRouter, _amount); UniswapRouterV2(sushiRouter).swapExactTokensForTokens( _amount, 0, path, address(this), now.add(60) ); } function _swapSushiswapWithPath( address[] memory path, uint256 _amount ) internal { require(path[1] != address(0)); IERC20(path[0]).safeApprove(sushiRouter, 0); IERC20(path[0]).safeApprove(sushiRouter, _amount); UniswapRouterV2(sushiRouter).swapExactTokensForTokens( _amount, 1, path, address(this), block.timestamp ); } function _distributePerformanceFeesAndDeposit() internal { uint256 _want = IERC20(want).balanceOf(address(this)); if (_want > 0) { // Treasury fees IERC20(want).safeTransfer( IController(controller).treasury(), _want.mul(performanceTreasuryFee).div(performanceTreasuryMax) ); // Performance fee IERC20(want).safeTransfer( IController(controller).devfund(), _want.mul(performanceDevFee).div(performanceDevMax) ); deposit(); } } fallback() external payable {} receive() external payable {} } // File src/interfaces/solar-chef.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.7; // interface for Solarchef contract interface ISolarChef { function deposit(uint256 _pid, uint256 _amount) external; function pendingSolar(uint256 _pid, address _user) external view returns (uint256); function userInfo(uint256, address) external view returns ( uint256 amount, uint256 rewardDebt, uint256 rewardLockedUp, uint256 nextHarvestUntil ); function withdraw(uint256 _pid, uint256 _amount) external; } interface WETH { function deposit() external payable; } // File src/strategies/moonriver/strategy-solar-farm-base.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.7; abstract contract StrategySolarFarmBase is StrategyBase { // Token addresses address public constant solar = 0x6bD193Ee6D2104F14F94E2cA6efefae561A4334B; address public constant solarChef = 0x0329867a8c457e9F75e25b0685011291CD30904F; address public token0; address public token1; uint256 public poolId; mapping(address => address[]) public uniswapRoutes; constructor( address _token0, address _token1, uint256 _poolId, address _lp, address _governance, address _strategist, address _controller, address _timelock ) public StrategyBase(_lp, _governance, _strategist, _controller, _timelock) { poolId = _poolId; token0 = _token0; token1 = _token1; } function balanceOfPool() public view override returns (uint256) { (uint256 amount, , , ) = ISolarChef(solarChef).userInfo( poolId, address(this) ); return amount; } function getHarvestable() external view returns (uint256) { return ISolarChef(solarChef).pendingSolar(poolId, address(this)); } // **** Setters **** function deposit() public override { uint256 _want = IERC20(want).balanceOf(address(this)); if (_want > 0) { IERC20(want).safeApprove(solarChef, 0); IERC20(want).safeApprove(solarChef, _want); ISolarChef(solarChef).deposit(poolId, _want); } } function _withdrawSome(uint256 _amount) internal override returns (uint256) { ISolarChef(solarChef).withdraw(poolId, _amount); return _amount; } // **** State Mutations **** function harvest() public override onlyBenevolent { // Collects SOLAR tokens ISolarChef(solarChef).deposit(poolId, 0); uint256 _solar = IERC20(solar).balanceOf(address(this)); if (_solar > 0) { if (uniswapRoutes[movr].length > 1) { _swapSushiswapWithPath(uniswapRoutes[movr], _solar); } } uint256 _movr = address(this).balance; WETH(movr).deposit{value: _movr}(); _movr = IERC20(movr).balanceOf(address(this)); if(_movr > 0){ uint256 toToken0 = _movr.div(2); uint256 toToken1 = _movr.sub(toToken0); if (uniswapRoutes[token0].length > 1 && token0 != movr) { _swapSushiswapWithPath(uniswapRoutes[token0], toToken0); } if (uniswapRoutes[token1].length > 1 && token1 != movr) { _swapSushiswapWithPath(uniswapRoutes[token1], toToken1); } } // Adds in liquidity for token0/token1 uint256 _token0 = IERC20(token0).balanceOf(address(this)); uint256 _token1 = IERC20(token1).balanceOf(address(this)); if (_token0 > 0 && _token1 > 0) { IERC20(token0).safeApprove(sushiRouter, 0); IERC20(token0).safeApprove(sushiRouter, _token0); IERC20(token1).safeApprove(sushiRouter, 0); IERC20(token1).safeApprove(sushiRouter, _token1); UniswapRouterV2(sushiRouter).addLiquidity( token0, token1, _token0, _token1, 0, 0, address(this), now + 60 ); // Donates DUST IERC20(token0).transfer( IController(controller).treasury(), IERC20(token0).balanceOf(address(this)) ); IERC20(token1).safeTransfer( IController(controller).treasury(), IERC20(token1).balanceOf(address(this)) ); } _distributePerformanceFeesAndDeposit(); } } // File src/strategies/moonriver/solar/strategy-movr-usdc-lp.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.7; contract StrategyEthMovrLp is StrategySolarFarmBase { uint256 public eth_movr_poolId = 12; // Token addresses address public eth_movr_lp = 0x0d171b55fC8d3BDDF17E376FdB2d90485f900888; address public eth = 0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C; constructor( address _governance, address _strategist, address _controller, address _timelock ) public StrategySolarFarmBase( eth, movr, eth_movr_poolId, eth_movr_lp, _governance, _strategist, _controller, _timelock ) { uniswapRoutes[movr] = [solar, movr]; uniswapRoutes[eth] = [movr, eth]; } // **** Views **** function getName() external pure override returns (string memory) { return "StrategyEthMovrLp"; } }
[{"inputs":[{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_controller","type":"address"},{"internalType":"address","name":"_timelock","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eth_movr_lp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eth_movr_poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"bytes","name":"response","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getHarvestable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"harvesters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"movr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceDevMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"performanceTreasuryMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_harvesters","type":"address[]"}],"name":"revokeHarvesters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_performanceDevFee","type":"uint256"}],"name":"setPerformanceDevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_performanceTreasuryFee","type":"uint256"}],"name":"setPerformanceTreasuryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_timelock","type":"address"}],"name":"setTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawalDevFundFee","type":"uint256"}],"name":"setWithdrawalDevFundFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawalTreasuryFee","type":"uint256"}],"name":"setWithdrawalTreasuryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"solar","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"solarChef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sushiRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"uniswapRoutes","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_harvesters","type":"address[]"}],"name":"whitelistHarvesters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_asset","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawForSwap","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalDevFundFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalDevFundMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawalTreasuryMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526103e860005560006001556000600255600060035573aa30ef758139ae4a7f798112902bf6d65612045f600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c600f55730d171b55fc8d3bddf17e376fdb2d90485f900888601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073639a647fbe20b6c8ac19e48e2de44ea792c62c5c601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012a57600080fd5b506040516200601838038062006018833981810160405260808110156200015057600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167398878b06940ae243284ca214f92bb71a2b032b8a600f54601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878787878484848484600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200022157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200025c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200029757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002d257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200030d57600080fd5b84600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505085600d8190555087600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505050506040518060400160405280736bd193ee6d2104f14f94e2ca6efefae561a4334b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600e60007398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020906002620005e092919062000700565b5060405180604001604052807398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600e6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020906002620006f592919062000700565b5050505050620007d5565b8280548282559060005260206000209081019282156200077c579160200282015b828111156200077b5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000721565b5b5090506200078b91906200078f565b5090565b620007d291905b80821115620007ce57600081816101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555060010162000796565b5090565b90565b61583380620007e56000396000f3fe60806040526004361061028b5760003560e01c8063823785941161015a578063c1a3d44c116100c1578063d33219b41161007a578063d33219b414610ee7578063e4277a6e14610f3e578063e6fa6d6d14610f95578063f77c479114610fec578063f9e146f814611043578063fe1f8f7a1461109a57610292565b8063c1a3d44c14610d73578063c6223e2614610d9e578063c65e324214610ded578063c7b9d53014610e28578063d0e30db014610e79578063d21220a714610e9057610292565b8063908a10f511610113578063908a10f514610b6857806392eefe9b14610bbf578063ab033ea914610c10578063ab73e43314610c61578063b1f55bd414610c9c578063bdacb30314610d2257610292565b806382378594146109ec578063853828b614610a275780638797658314610a5257806388993f2214610abb5780638c7c9e0c14610ae65780638ccdbb7014610b3d57610292565b80632e1a7d4d116101fe57806351cff8d9116101b757806351cff8d91461085857806351f3d0b8146108bd57806359739ec4146108e85780635aa6e675146109135780636d13582c1461096a578063722713f7146109c157610292565b80632e1a7d4d1461075a5780633e0dc34e146107955780634641257d146107c0578063479119be146107d75780634fbfc75e146108025780634fe809cc1461082d57610292565b806317d7de7c1161025057806317d7de7c146104625780631cff79cd146104f25780631f1fcd51146106465780631fe4a6861461069d578063249fb9b4146106f457806326e886c61461072f57610292565b8062b70eb7146102945780630547104d1461032f5780630dfe16811461035a5780630e364fb6146103b1578063115880861461043757610292565b3661029257005b005b3480156102a057600080fd5b506102ed600480360360408110156102b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561033b57600080fd5b50610344611110565b6040518082815260200191505060405180910390f35b34801561036657600080fd5b5061036f6111ed565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103bd57600080fd5b50610435600480360360208110156103d457600080fd5b81019080803590602001906401000000008111156103f157600080fd5b82018360208201111561040357600080fd5b8035906020019184602083028401116401000000008311171561042557600080fd5b9091929391929390505050611213565b005b34801561044357600080fd5b5061044c611425565b6040518082815260200191505060405180910390f35b34801561046e57600080fd5b50610477611528565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104b757808201518184015260208101905061049c565b50505050905090810190601f1680156104e45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105cb6004803603604081101561050857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561054557600080fd5b82018360208201111561055757600080fd5b8035906020019184600183028401116401000000008311171561057957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611565565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561060b5780820151818401526020810190506105f0565b50505050905090810190601f1680156106385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561065257600080fd5b5061065b61171d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106a957600080fd5b506106b2611743565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561070057600080fd5b5061072d6004803603602081101561071757600080fd5b8101908080359060200190929190505050611769565b005b34801561073b57600080fd5b50610744611836565b6040518082815260200191505060405180910390f35b34801561076657600080fd5b506107936004803603602081101561077d57600080fd5b810190808035906020019092919050505061183c565b005b3480156107a157600080fd5b506107aa611e6d565b6040518082815260200191505060405180910390f35b3480156107cc57600080fd5b506107d5611e73565b005b3480156107e357600080fd5b506107ec6130c8565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b506108176130cf565b6040518082815260200191505060405180910390f35b34801561083957600080fd5b506108426130d5565b6040518082815260200191505060405180910390f35b34801561086457600080fd5b506108a76004803603602081101561087b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130db565b6040518082815260200191505060405180910390f35b3480156108c957600080fd5b506108d2613370565b6040518082815260200191505060405180910390f35b3480156108f457600080fd5b506108fd613376565b6040518082815260200191505060405180910390f35b34801561091f57600080fd5b5061092861337c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561097657600080fd5b5061097f6133a2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109cd57600080fd5b506109d66133c8565b6040518082815260200191505060405180910390f35b3480156109f857600080fd5b50610a2560048036036020811015610a0f57600080fd5b81019080803590602001909291905050506133f0565b005b348015610a3357600080fd5b50610a3c6134bd565b6040518082815260200191505060405180910390f35b348015610a5e57600080fd5b50610aa160048036036020811015610a7557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061385a565b604051808215151515815260200191505060405180910390f35b348015610ac757600080fd5b50610ad061387a565b6040518082815260200191505060405180910390f35b348015610af257600080fd5b50610afb613880565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4957600080fd5b50610b526138a6565b6040518082815260200191505060405180910390f35b348015610b7457600080fd5b50610b7d6138ac565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bcb57600080fd5b50610c0e60048036036020811015610be257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506138c4565b005b348015610c1c57600080fd5b50610c5f60048036036020811015610c3357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506139cb565b005b348015610c6d57600080fd5b50610c9a60048036036020811015610c8457600080fd5b8101908080359060200190929190505050613ad2565b005b348015610ca857600080fd5b50610d2060048036036020811015610cbf57600080fd5b8101908080359060200190640100000000811115610cdc57600080fd5b820183602082011115610cee57600080fd5b80359060200191846020830284011164010000000083111715610d1057600080fd5b9091929391929390505050613b9f565b005b348015610d2e57600080fd5b50610d7160048036036020811015610d4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613d5d565b005b348015610d7f57600080fd5b50610d88613e64565b6040518082815260200191505060405180910390f35b348015610daa57600080fd5b50610dd760048036036020811015610dc157600080fd5b8101908080359060200190929190505050613f45565b6040518082815260200191505060405180910390f35b348015610df957600080fd5b50610e2660048036036020811015610e1057600080fd5b81019080803590602001909291905050506142e6565b005b348015610e3457600080fd5b50610e7760048036036020811015610e4b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506143b3565b005b348015610e8557600080fd5b50610e8e6144ba565b005b348015610e9c57600080fd5b50610ea56146f1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ef357600080fd5b50610efc614717565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610f4a57600080fd5b50610f5361473d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610fa157600080fd5b50610faa614755565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ff857600080fd5b5061100161476d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561104f57600080fd5b50611058614793565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156110a657600080fd5b506110af6147b9565b6040518082815260200191505060405180910390f35b600e60205281600052604060002081815481106110de57fe5b906000526020600020016000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000730329867a8c457e9f75e25b0685011291cd30904f73ffffffffffffffffffffffffffffffffffffffff16636f22d2c2600d54306040518363ffffffff1660e01b8152600401808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156111ad57600080fd5b505afa1580156111c1573d6000803e3d6000fd5b505050506040513d60208110156111d757600080fd5b8101908080519060200190929190505050905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112bc5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806113105750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f6e6f7420617574686f72697a656400000000000000000000000000000000000081525060200191505060405180910390fd5b60008090505b82829050811015611420576001600a60008585858181106113a557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050611388565b505050565b600080730329867a8c457e9f75e25b0685011291cd30904f73ffffffffffffffffffffffffffffffffffffffff166393f1a40b600d54306040518363ffffffff1660e01b8152600401808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060806040518083038186803b1580156114c357600080fd5b505afa1580156114d7573d6000803e3d6000fd5b505050506040513d60808110156114ed57600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919050505050505090508091505090565b60606040518060400160405280601181526020017f53747261746567794574684d6f76724c70000000000000000000000000000000815250905090565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f2174696d656c6f636b000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f217461726765740000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600080835160208501866113885a03f43d6040519250601f19601f6020830101168301604052808352806000602085013e81156001811461170d57611714565b8160208501fd5b50505092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f2174696d656c6f636b000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8060008190555050565b61271081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21636f6e74726f6c6c657200000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156119a057600080fd5b505afa1580156119b4573d6000803e3d6000fd5b505050506040513d60208110156119ca57600080fd5b8101908080519060200190929190505050905081811015611a1857611a006119fb82846147c090919063ffffffff16565b61480a565b9150611a15818361489d90919063ffffffff16565b91505b6000611a44620186a0611a366003548661492590919063ffffffff16565b6149ab90919063ffffffff16565b9050611b35600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638d8f1e676040518163ffffffff1660e01b815260040160206040518083038186803b158015611ab157600080fd5b505afa158015611ac5573d6000803e3d6000fd5b505050506040513d6020811015611adb57600080fd5b810190808051906020019092919050505082600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b6000611b61620186a0611b536002548761492590919063ffffffff16565b6149ab90919063ffffffff16565b9050611c52600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b158015611bce57600080fd5b505afa158015611be2573d6000803e3d6000fd5b505050506040513d6020811015611bf857600080fd5b810190808051906020019092919050505082600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca6a48c2600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1557600080fd5b505afa158015611d29573d6000803e3d6000fd5b505050506040513d6020811015611d3f57600080fd5b81019080805190602001909291905050509050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611df5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f216a61720000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b611e6681611e1e84611e10878a6147c090919063ffffffff16565b6147c090919063ffffffff16565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b5050505050565b600d5481565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f185750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80611f705750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611f7957600080fd5b730329867a8c457e9f75e25b0685011291cd30904f73ffffffffffffffffffffffffffffffffffffffff1663e2bbb158600d5460006040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015611feb57600080fd5b505af1158015611fff573d6000803e3d6000fd5b505050506000736bd193ee6d2104f14f94e2ca6efefae561a4334b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561209657600080fd5b505afa1580156120aa573d6000803e3d6000fd5b505050506040513d60208110156120c057600080fd5b81019080805190602001909291905050509050600081111561221e576001600e60007398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050111561221d5761221c600e60007398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561221157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116121c7575b505050505082614aad565b5b5b60004790507398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561227f57600080fd5b505af1158015612293573d6000803e3d6000fd5b50505050507398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561232957600080fd5b505afa15801561233d573d6000803e3d6000fd5b505050506040513d602081101561235357600080fd5b8101908080519060200190929190505050905060008111156127375760006123856002836149ab90919063ffffffff16565b9050600061239c82846147c090919063ffffffff16565b90506001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011801561247457507398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561256957612568600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561255d57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311612513575b505050505083614aad565b5b6001600e6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011801561263f57507398878b06940ae243284ca214f92bb71a2b032b8a73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561273457612733600e6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561272857602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116126de575b505050505082614aad565b5b50505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156127d857600080fd5b505afa1580156127ec573d6000803e3d6000fd5b505050506040513d602081101561280257600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156128b657600080fd5b505afa1580156128ca573d6000803e3d6000fd5b505050506040513d60208110156128e057600080fd5b810190808051906020019092919050505090506000821180156129035750600081115b156130ba57612978600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b6129e7600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b612a57600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b612ac6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858560008030603c42016040518963ffffffff1660e01b8152600401808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200198505050505050505050606060405180830381600087803b158015612c3f57600080fd5b505af1158015612c53573d6000803e3d6000fd5b505050506040513d6060811015612c6957600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b158015612d3757600080fd5b505afa158015612d4b573d6000803e3d6000fd5b505050506040513d6020811015612d6157600080fd5b8101908080519060200190929190505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612e1157600080fd5b505afa158015612e25573d6000803e3d6000fd5b505050506040513d6020811015612e3b57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612eb557600080fd5b505af1158015612ec9573d6000803e3d6000fd5b505050506040513d6020811015612edf57600080fd5b8101908080519060200190929190505050506130b9600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b158015612f5c57600080fd5b505afa158015612f70573d6000803e3d6000fd5b505050506040513d6020811015612f8657600080fd5b8101908080519060200190929190505050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561303657600080fd5b505afa15801561304a573d6000803e3d6000fd5b505050506040513d602081101561306057600080fd5b8101908080519060200190929190505050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b5b6130c2614fa2565b50505050565b620186a081565b600f5481565b61271081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146131a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21636f6e74726f6c6c657200000000000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613264576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f77616e740000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132e157600080fd5b505afa1580156132f5573d6000803e3d6000fd5b505050506040513d602081101561330b57600080fd5b8101908080519060200190929190505050905061336b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b919050565b60035481565b60005481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006133eb6133d5611425565b6133dd613e64565b61489d90919063ffffffff16565b905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146134b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f2174696d656c6f636b000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8060028190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21636f6e74726f6c6c657200000000000000000000000000000000000000000081525060200191505060405180910390fd5b61358a6152c3565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561362957600080fd5b505afa15801561363d573d6000803e3d6000fd5b505050506040513d602081101561365357600080fd5b810190808051906020019092919050505090506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca6a48c2600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561372957600080fd5b505afa15801561373d573d6000803e3d6000fd5b505050506040513d602081101561375357600080fd5b81019080805190602001909291905050509050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613809576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f216a61720000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6138568183600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b5090565b600a6020528060005260406000206000915054906101000a900460ff1681565b60015481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b730329867a8c457e9f75e25b0685011291cd30904f81565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613987576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f2174696d656c6f636b000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613a8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613b95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f2174696d656c6f636b000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8060038190555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480613c485750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b613cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f6e6f7420617574686f72697a656400000000000000000000000000000000000081525060200191505060405180910390fd5b60008090505b82829050811015613d58576000600a6000858585818110613cdd57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050613cc0565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613e20576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f2174696d656c6f636b000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f0557600080fd5b505afa158015613f19573d6000803e3d6000fd5b505050506040513d6020811015613f2f57600080fd5b8101908080519060200190929190505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461400a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21636f6e74726f6c6c657200000000000000000000000000000000000000000081525060200191505060405180910390fd5b6140138261480a565b50600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156140b357600080fd5b505afa1580156140c7573d6000803e3d6000fd5b505050506040513d60208110156140dd57600080fd5b810190808051906020019092919050505090506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca6a48c2600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156141b357600080fd5b505afa1580156141c7573d6000803e3d6000fd5b505050506040513d60208110156141dd57600080fd5b81019080805190602001909291905050509050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415614293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f216a61720000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6142e08183600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b50919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146143a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f2174696d656c6f636b000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b8060018190555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614614476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561455b57600080fd5b505afa15801561456f573d6000803e3d6000fd5b505050506040513d602081101561458557600080fd5b8101908080519060200190929190505050905060008111156146ee57614603730329867a8c457e9f75e25b0685011291cd30904f6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b614664730329867a8c457e9f75e25b0685011291cd30904f82600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b730329867a8c457e9f75e25b0685011291cd30904f73ffffffffffffffffffffffffffffffffffffffff1663e2bbb158600d54836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156146d557600080fd5b505af11580156146e9573d6000803e3d6000fd5b505050505b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7398878b06940ae243284ca214f92bb71a2b032b8a81565b736bd193ee6d2104f14f94e2ca6efefae561a4334b81565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b620186a081565b600061480283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506152d6565b905092915050565b6000730329867a8c457e9f75e25b0685011291cd30904f73ffffffffffffffffffffffffffffffffffffffff1663441a3e70600d54846040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561487d57600080fd5b505af1158015614891573d6000803e3d6000fd5b50505050819050919050565b60008082840190508381101561491b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561493857600090506149a5565b600082840290508284828161494957fe5b04146149a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061577d6021913960400191505060405180910390fd5b809150505b92915050565b60006149ed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250615396565b905092915050565b614aa88363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061545c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff1682600181518110614ad257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415614afb57600080fd5b614b5d600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600084600081518110614b3057fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b614bbe600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168284600081518110614b9157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16614d9b9092919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed17398260018530426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614c98578082015181840152602081019050614c7d565b505050509050019650505050505050600060405180830381600087803b158015614cc157600080fd5b505af1158015614cd5573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052506020811015614cff57600080fd5b8101908080516040519392919084640100000000821115614d1f57600080fd5b83820191506020820185811115614d3557600080fd5b8251866020820283011164010000000082111715614d5257600080fd5b8083526020830192505050908051906020019060200280838360005b83811015614d89578082015181840152602081019050614d6e565b50505050905001604052505050505050565b6000811480614e95575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015614e5857600080fd5b505afa158015614e6c573d6000803e3d6000fd5b505050506040513d6020811015614e8257600080fd5b8101908080519060200190929190505050145b614eea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806157c86036913960400191505060405180910390fd5b614f9d8363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061545c565b505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561504357600080fd5b505afa158015615057573d6000803e3d6000fd5b505050506040513d602081101561506d57600080fd5b8101908080519060200190929190505050905060008111156152c0576151a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b1580156150f457600080fd5b505afa158015615108573d6000803e3d6000fd5b505050506040513d602081101561511e57600080fd5b810190808051906020019092919050505061515861271061514a6000548661492590919063ffffffff16565b6149ab90919063ffffffff16565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b6152b7600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638d8f1e676040518163ffffffff1660e01b815260040160206040518083038186803b15801561520b57600080fd5b505afa15801561521f573d6000803e3d6000fd5b505050506040513d602081101561523557600080fd5b810190808051906020019092919050505061526f6127106152616001548661492590919063ffffffff16565b6149ab90919063ffffffff16565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166149f59092919063ffffffff16565b6152bf6144ba565b5b50565b6152d36152ce611425565b61480a565b50565b6000838311158290615383576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561534857808201518184015260208101905061532d565b50505050905090810190601f1680156153755780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290615442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156154075780820151818401526020810190506153ec565b50505050905090810190601f1680156154345780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161544e57fe5b049050809150509392505050565b60606154be826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661554b9092919063ffffffff16565b9050600081511115615546578080602001905160208110156154df57600080fd5b8101908080519060200190929190505050615545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061579e602a913960400191505060405180910390fd5b5b505050565b606061555a8484600085615563565b90509392505050565b606061556e85615769565b6155e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310615630578051825260208201915060208101905060208303925061560d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615692576040519150601f19603f3d011682016040523d82523d6000602084013e615697565b606091505b509150915081156156ac578092505050615761565b6000815111156156bf5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561572657808201518184015260208101905061570b565b50505050905090810190601f1680156157535780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a26469706673582212202c5074fdc8b36ba04533416290b8417d4aa6177761c625b82e8e2535f64e022064736f6c63430006070033000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c000000000000000000000000c3f393fb40f8cc499c1fe7fa5781495dc6fac9e9000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c000000000000000000000000c3f393fb40f8cc499c1fe7fa5781495dc6fac9e9000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c
-----Decoded View---------------
Arg [0] : _governance (address): 0xacfe4511ce883c14c4ea40563f176c3c09b4c47c
Arg [1] : _strategist (address): 0xacfe4511ce883c14c4ea40563f176c3c09b4c47c
Arg [2] : _controller (address): 0xc3f393fb40f8cc499c1fe7fa5781495dc6fac9e9
Arg [3] : _timelock (address): 0xacfe4511ce883c14c4ea40563f176c3c09b4c47c
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c
Arg [1] : 000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c
Arg [2] : 000000000000000000000000c3f393fb40f8cc499c1fe7fa5781495dc6fac9e9
Arg [3] : 000000000000000000000000acfe4511ce883c14c4ea40563f176c3c09b4c47c
Deployed ByteCode Sourcemap
57555:917:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53792:50;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53792:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;53792:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;54513:141;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54513:141:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53706:21;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53706:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44618:340;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44618:340:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44618:340:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;44618:340:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44618:340:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44618:340:0;;;;;;;;;;;;:::i;:::-;;54283:222;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54283:222:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;58358:111;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58358:111:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;58358:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49521:1053;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;49521:1053:0;;;;;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;49521:1053:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;49521:1053:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49521:1053:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;49521:1053:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49521:1053:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42948:19;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42948:19:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43143:25;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43143:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45862:213;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45862:213:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45862:213:0;;;;;;;;;;;;;;;;;:::i;:::-;;42475:54;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42475:54:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47238:1022;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47238:1022:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47238:1022:0;;;;;;;;;;;;;;;;;:::i;:::-;;53764:21;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53764:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55254:2164;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55254:2164:0;;;:::i;:::-;;42871:53;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42871:53:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57614:35;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57614:35:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42581:49;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42581:49:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46873:289;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46873:289:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46873:289:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42825:39;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42825:39:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42424:44;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42424:44:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43079:25;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43079:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43233:71;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43233:71:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44393:113;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44393:113:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45472:195;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45472:195:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45472:195:0;;;;;;;;;;;;;;;;;:::i;:::-;;48828:430;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48828:430:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43313:42;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43313:42:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;43313:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42538:36;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42538:36:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57760:63;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57760:63:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42715:40;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42715:40:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53610:87;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53610:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46560:151;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46560:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46560:151:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;46246:155;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46246:155:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46246:155:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;45273:191;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45273:191:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45273:191:0;;;;;;;;;;;;;;;;;:::i;:::-;;44966:299;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44966:299:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44966:299:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;44966:299:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44966:299:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44966:299:0;;;;;;;;;;;;:::i;:::-;;46409:143;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46409:143:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46409:143:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;44196:118;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44196:118:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48324:428;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48324:428:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48324:428:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45675:179;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45675:179:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45675:179:0;;;;;;;;;;;;;;;;;:::i;:::-;;46083:155;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46083:155:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46083:155:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;54690:313;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54690:313:0;;;:::i;:::-;;53734:21;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53734:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43175:23;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43175:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42974:74;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42974:74:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;53529;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53529:74:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43111:25;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43111:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;57682:71;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57682:71:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42762:54;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42762:54:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53792:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54513:141::-;54562:7;53655:42;54589:34;;;54624:6;;54640:4;54589:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54589:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54589:57:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;54589:57:0;;;;;;;;;;;;;;;;54582:64;;54513:141;:::o;53706:21::-;;;;;;;;;;;;;:::o;44618:340::-;44721:10;;;;;;;;;;;44707:24;;:10;:24;;;:66;;;;44763:10;;;;;;;;;;;44749:24;;:10;:24;;;44707:66;:92;;;;44777:10;:22;44788:10;44777:22;;;;;;;;;;;;;;;;;;;;;;;;;44707:92;44699:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44849:6;44858:1;44849:10;;44844:107;44865:11;;:18;;44861:1;:22;44844:107;;;44935:4;44906:10;:26;44917:11;;44929:1;44917:14;;;;;;;;;;;;;;;44906:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;44885:4;;;;;;;44844:107;;;;44618:340;;:::o;54283:222::-;54338:7;54359:14;53655:42;54383:30;;;54428:6;;54457:4;54383:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54383:90:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54383:90:0;;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;54383:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54358:115;;;;;54491:6;54484:13;;;54283:222;:::o;58358:111::-;58409:13;58435:26;;;;;;;;;;;;;;;;;;;58358:111;:::o;49521:1053::-;49626:21;49687:8;;;;;;;;;;;49673:22;;:10;:22;;;49665:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49747:1;49728:21;;:7;:21;;;;49720:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50038:1;50018;49993:5;49987:12;49963:4;49956:5;49952:16;49926:7;49902:4;49895:5;49891:16;49860:194;50080:16;50130:4;50124:11;50112:23;;50247:4;50243:9;50236:4;50229;50223;50219:15;50215:26;50211:42;50201:8;50197:57;50174:4;50149:120;50300:4;50290:8;50283:22;50358:4;50355:1;50348:4;50338:8;50334:19;50319:44;50393:9;50386:17;50426:1;50421:135;;;;50379:177;;50421:135;50532:4;50525;50515:8;50511:19;50504:33;50379:177;;49828:739;;;;;;:::o;42948:19::-;;;;;;;;;;;;;:::o;43143:25::-;;;;;;;;;;;;;:::o;45862:213::-;45986:8;;;;;;;;;;;45972:22;;:10;:22;;;45964:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46044:23;46019:22;:48;;;;45862:213;:::o;42475:54::-;42524:5;42475:54;:::o;47238:1022::-;47315:10;;;;;;;;;;;47301:24;;:10;:24;;;47293:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47352:16;47378:4;;;;;;;;;;;47371:22;;;47402:4;47371:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47371:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47371:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47371:37:0;;;;;;;;;;;;;;;;47352:56;;47434:7;47423:8;:18;47419:143;;;47468:36;47482:21;47494:8;47482:7;:11;;:21;;;;:::i;:::-;47468:13;:36::i;:::-;47458:46;;47529:21;47541:8;47529:7;:11;;:21;;;;:::i;:::-;47519:31;;47419:143;47574:15;47592:83;42918:6;47592:33;47604:20;;47592:7;:11;;:33;;;;:::i;:::-;:37;;:83;;;;:::i;:::-;47574:101;;47686:69;47724:10;;;;;;;;;;;47712:31;;;:33;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47712:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47712:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47712:33:0;;;;;;;;;;;;;;;;47747:7;47693:4;;;;;;;;;;;47686:25;;;;:69;;;;;:::i;:::-;47768:20;47791:85;42810:6;47791:34;47803:21;;47791:7;:11;;:34;;;;:::i;:::-;:38;;:85;;;;:::i;:::-;47768:108;;47887:112;47939:10;;;;;;;;;;;47927:32;;;:34;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47927:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47927:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47927:34:0;;;;;;;;;;;;;;;;47976:12;47894:4;;;;;;;;;;;47887:25;;;;:112;;;;;:::i;:::-;48012:12;48039:10;;;;;;;;;;;48027:28;;;48064:4;;;;;;;;;;;48027:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48027:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48027:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48027:43:0;;;;;;;;;;;;;;;;48012:58;;48105:1;48089:18;;:4;:18;;;;48081:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48181:71;48207:4;48213:38;48238:12;48213:20;48225:7;48213;:11;;:20;;;;:::i;:::-;:24;;:38;;;;:::i;:::-;48188:4;;;;;;;;;;;48181:25;;;;:71;;;;;:::i;:::-;47238:1022;;;;;:::o;53764:21::-;;;;:::o;55254:2164::-;44016:10;:22;44027:10;44016:22;;;;;;;;;;;;;;;;;;;;;;;;;:67;;;;44073:10;;;;;;;;;;;44059:24;;:10;:24;;;44016:67;:112;;;;44118:10;;;;;;;;;;;44104:24;;:10;:24;;;44016:112;43994:145;;12:1:-1;9;2:12;43994:145:0;53655:42:::1;55349:29;;;55379:6;;55387:1;55349:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;55349:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;55349:40:0;;;;55402:14;53561:42;55419:23;;;55451:4;55419:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;55419:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;55419:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;55419:38:0;;;;;;;;;;;;;;;;55402:55;;55483:1;55474:6;:10;55470:164;;;55534:1;55505:13;:19;43006:42;55505:19;;;;;;;;;;;;;;;:26;;;;:30;55501:122;;;55556:51;55579:13;:19;43006:42;55579:19;;;;;;;;;;;;;;;55556:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55600:6;55556:22;:51::i;:::-;55501:122;55470:164;55644:13;55660:21;55644:37;;43006:42;55692:18;;;55718:5;55692:34;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;55692:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;55692:34:0;;;;;43006:42;55745:22;;;55776:4;55745:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;55745:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;55745:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;55745:37:0;;;;;;;;;;;;;;;;55737:45;;55806:1;55798:5;:9;55795:446;;;55823:16;55842:12;55852:1;55842:5;:9;;:12;;;;:::i;:::-;55823:31;;55869:16;55888:19;55898:8;55888:5;:9;;:19;;;;:::i;:::-;55869:38;;55959:1;55928:13;:21;55942:6;;;;;;;;;;;55928:21;;;;;;;;;;;;;;;:28;;;;:32;:50;;;;;43006:42;55964:14;;:6;;;;;;;;;;;:14;;;;55928:50;55924:146;;;55999:55;56022:13;:21;56036:6;;;;;;;;;;;56022:21;;;;;;;;;;;;;;;55999:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56045:8;55999:22;:55::i;:::-;55924:146;56119:1;56088:13;:21;56102:6;;;;;;;;;;;56088:21;;;;;;;;;;;;;;;:28;;;;:32;:50;;;;;43006:42;56124:14;;:6;;;;;;;;;;;:14;;;;56088:50;56084:146;;;56159:55;56182:13;:21;56196:6;;;;;;;;;;;56182:21;;;;;;;;;;;;;;;56159:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56205:8;56159:22;:55::i;:::-;56084:146;55795:446;;;56301:15;56326:6;;;;;;;;;;;56319:24;;;56352:4;56319:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;56319:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;56319:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;56319:39:0;;;;;;;;;;;;;;;;56301:57;;56369:15;56394:6;;;;;;;;;;;56387:24;;;56420:4;56387:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;56387:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;56387:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;56387:39:0;;;;;;;;;;;;;;;;56369:57;;56453:1;56443:7;:11;:26;;;;;56468:1;56458:7;:11;56443:26;56439:921;;;56486:42;56513:11;;;;;;;;;;;56526:1;56493:6;;;;;;;;;;;56486:26;;;;:42;;;;;:::i;:::-;56543:48;56570:11;;;;;;;;;;;56583:7;56550:6;;;;;;;;;;;56543:26;;;;:48;;;;;:::i;:::-;56606:42;56633:11;;;;;;;;;;;56646:1;56613:6;;;;;;;;;;;56606:26;;;;:42;;;;;:::i;:::-;56663:48;56690:11;;;;;;;;;;;56703:7;56670:6;;;;;;;;;;;56663:26;;;;:48;;;;;:::i;:::-;56744:11;;;;;;;;;;;56728:41;;;56788:6;;;;;;;;;;;56813;;;;;;;;;;;56838:7;56864;56890:1;56910::::0;56938:4:::1;56968:2;56962:3;:8;56728:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;56728:257:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;56728:257:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;56728:257:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57038:6;;;;;;;;;;;57031:23;;;57085:10;;;;;;;;;;;57073:32;;;:34;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;57073:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57073:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;57073:34:0;;;;;;;;;;;;;;;;57133:6;;;;;;;;;;;57126:24;;;57159:4;57126:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;57126:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57126:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;57126:39:0;;;;;;;;;;;;;;;;57031:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;57031:149:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57031:149:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;57031:149:0;;;;;;;;;;;;;;;;;57195:153;57253:10;;;;;;;;;;;57241:32;;;:34;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;57241:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57241:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;57241:34:0;;;;;;;;;;;;;;;;57301:6;;;;;;;;;;;57294:24;;;57327:4;57294:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;57294:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57294:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;57294:39:0;;;;;;;;;;;;;;;;57202:6;;;;;;;;;;;57195:27;;;;:153;;;;;:::i;:::-;56439:921;57372:38;:36;:38::i;:::-;44150:1;;;;55254:2164::o:0;42871:53::-;42918:6;42871:53;:::o;57614:35::-;;;;:::o;42581:49::-;42625:5;42581:49;:::o;46873:289::-;46924:15;46974:10;;;;;;;;;;;46960:24;;:10;:24;;;46952:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47035:6;47019:23;;:4;;;;;;;;;;;:23;;;;47011:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47072:6;:16;;;47097:4;47072:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47072:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47072:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47072:31:0;;;;;;;;;;;;;;;;47062:41;;47114:40;47134:10;;;;;;;;;;;47146:7;47114:6;:19;;;;:40;;;;;:::i;:::-;46873:289;;;:::o;42825:39::-;;;;:::o;42424:44::-;;;;:::o;43079:25::-;;;;;;;;;;;;;:::o;43233:71::-;;;;;;;;;;;;;:::o;44393:113::-;44435:7;44462:36;44482:15;:13;:15::i;:::-;44462;:13;:15::i;:::-;:19;;:36;;;;:::i;:::-;44455:43;;44393:113;:::o;45472:195::-;45580:8;;;;;;;;;;;45566:22;;:10;:22;;;45558:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45637:22;45613:21;:46;;;;45472:195;:::o;48828:430::-;48869:15;48919:10;;;;;;;;;;;48905:24;;:10;:24;;;48897:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48956:14;:12;:14::i;:::-;49000:4;;;;;;;;;;;48993:22;;;49024:4;48993:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48993:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48993:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48993:37:0;;;;;;;;;;;;;;;;48983:47;;49043:12;49070:10;;;;;;;;;;;49058:28;;;49095:4;;;;;;;;;;;49058:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49058:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49058:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;49058:43:0;;;;;;;;;;;;;;;;49043:58;;49136:1;49120:18;;:4;:18;;;;49112:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49210:40;49236:4;49242:7;49217:4;;;;;;;;;;;49210:25;;;;:40;;;;;:::i;:::-;48828:430;;:::o;43313:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;42538:36::-;;;;:::o;57760:63::-;;;;;;;;;;;;;:::o;42715:40::-;;;;:::o;53610:87::-;53655:42;53610:87;:::o;46560:151::-;46646:8;;;;;;;;;;;46632:22;;:10;:22;;;46624:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46692:11;46679:10;;:24;;;;;;;;;;;;;;;;;;46560:151;:::o;46246:155::-;46332:10;;;;;;;;;;;46318:24;;:10;:24;;;46310:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46382:11;46369:10;;:24;;;;;;;;;;;;;;;;;;46246:155;:::o;45273:191::-;45379:8;;;;;;;;;;;45365:22;;:10;:22;;;45357:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45435:21;45412:20;:44;;;;45273:191;:::o;44966:299::-;45066:10;;;;;;;;;;;45052:24;;:10;:24;;;:66;;;;45108:10;;;;;;;;;;;45094:24;;:10;:24;;;45052:66;45044:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45155:6;45164:1;45155:10;;45150:108;45171:11;;:18;;45167:1;:22;45150:108;;;45241:5;45212:10;:26;45223:11;;45235:1;45223:14;;;;;;;;;;;;;;;45212:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;45191:4;;;;;;;45150:108;;;;44966:299;;:::o;46409:143::-;46491:8;;;;;;;;;;;46477:22;;:10;:22;;;46469:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46535:9;46524:8;;:20;;;;;;;;;;;;;;;;;;46409:143;:::o;44196:118::-;44242:7;44276:4;;;;;;;;;;;44269:22;;;44300:4;44269:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44269:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44269:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44269:37:0;;;;;;;;;;;;;;;;44262:44;;44196:118;:::o;48324:428::-;48402:15;48457:10;;;;;;;;;;;48443:24;;:10;:24;;;48435:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48494:22;48508:7;48494:13;:22::i;:::-;;48546:4;;;;;;;;;;;48539:22;;;48570:4;48539:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48539:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48539:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48539:37:0;;;;;;;;;;;;;;;;48529:47;;48589:12;48616:10;;;;;;;;;;;48604:28;;;48641:4;;;;;;;;;;;48604:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48604:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48604:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48604:43:0;;;;;;;;;;;;;;;;48589:58;;48682:1;48666:18;;:4;:18;;;;48658:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48704:40;48730:4;48736:7;48711:4;;;;;;;;;;;48704:25;;;;:40;;;;;:::i;:::-;48324:428;;;;:::o;45675:179::-;45775:8;;;;;;;;;;;45761:22;;:10;:22;;;45753:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45828:18;45808:17;:38;;;;45675:179;:::o;46083:155::-;46169:10;;;;;;;;;;;46155:24;;:10;:24;;;46147:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46219:11;46206:10;;:24;;;;;;;;;;;;;;;;;;46083:155;:::o;54690:313::-;54736:13;54759:4;;;;;;;;;;;54752:22;;;54783:4;54752:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54752:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54752:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;54752:37:0;;;;;;;;;;;;;;;;54736:53;;54812:1;54804:5;:9;54800:196;;;54830:38;53655:42;54866:1;54837:4;;;;;;;;;;;54830:24;;;;:38;;;;;:::i;:::-;54883:42;53655;54919:5;54890:4;;;;;;;;;;;54883:24;;;;:42;;;;;:::i;:::-;53655;54940:29;;;54970:6;;54978:5;54940:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54940:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54940:44:0;;;;54800:196;54690:313;:::o;53734:21::-;;;;;;;;;;;;;:::o;43175:23::-;;;;;;;;;;;;;:::o;42974:74::-;43006:42;42974:74;:::o;53529:::-;53561:42;53529:74;:::o;43111:25::-;;;;;;;;;;;;;:::o;57682:71::-;;;;;;;;;;;;;:::o;42762:54::-;42810:6;42762:54;:::o;1623:136::-;1681:7;1708:43;1712:1;1715;1708:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1701:50;;1623:136;;;;:::o;55011:199::-;55105:7;53655:42;55130:30;;;55161:6;;55169:7;55130:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55130:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55130:47:0;;;;55195:7;55188:14;;55011:199;;;:::o;1159:181::-;1217:7;1237:9;1253:1;1249;:5;1237:17;;1278:1;1273;:6;;1265:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1331:1;1324:8;;;1159:181;;;;:::o;2513:471::-;2571:7;2821:1;2816;:6;2812:47;;;2846:1;2839:8;;;;2812:47;2871:9;2887:1;2883;:5;2871:17;;2916:1;2911;2907;:5;;;;;;:10;2899:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2975:1;2968:8;;;2513:471;;;;;:::o;3460:132::-;3518:7;3545:39;3549:1;3552;3545:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3538:46;;3460:132;;;;:::o;27019:177::-;27102:86;27122:5;27152:23;;;27177:2;27181:5;27129:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;27129:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;27129:58:0;27102:19;:86::i;:::-;27019:177;;;:::o;51421:461::-;51565:1;51546:21;;:4;51551:1;51546:7;;;;;;;;;;;;;;:21;;;;51538:30;;12:1:-1;9;2:12;51538:30:0;51581:43;51609:11;;;;;;;;;;;51622:1;51588:4;51593:1;51588:7;;;;;;;;;;;;;;51581:27;;;;:43;;;;;:::i;:::-;51635:49;51663:11;;;;;;;;;;;51676:7;51642:4;51647:1;51642:7;;;;;;;;;;;;;;51635:27;;;;:49;;;;;:::i;:::-;51711:11;;;;;;;;;;;51695:53;;;51763:7;51785:1;51801:4;51828;51848:15;51695:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;51695:179:0;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51695:179:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51695:179:0;;;;;;39:16:-1;36:1;17:17;2:54;51695:179:0;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;15:2;10:3;7:11;4:2;;;31:1;28;21:12;4:2;51695:179:0;;;;;;;;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;71:11;66:3;62:21;55:28;;123:4;118:3;114:14;159:9;141:16;138:31;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;385:12;380:3;373:25;421:4;416:3;412:14;405:21;;0:433;;51695:179:0;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;51695:179:0;;;;;;;;;;;;51421:461;;:::o;27678:622::-;28057:1;28048:5;:10;28047:62;;;;28107:1;28064:5;:15;;;28088:4;28095:7;28064:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28064:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28064:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28064:39:0;;;;;;;;;;;;;;;;:44;28047:62;28039:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28202:90;28222:5;28252:22;;;28276:7;28285:5;28229:62;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;28229:62:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;28229:62:0;28202:19;:90::i;:::-;27678:622;;;:::o;51890:623::-;51958:13;51981:4;;;;;;;;;;;51974:22;;;52005:4;51974:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51974:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51974:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;51974:37:0;;;;;;;;;;;;;;;;51958:53;;52036:1;52028:5;:9;52024:482;;;52084:173;52140:10;;;;;;;;;;;52128:32;;;:34;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52128:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52128:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;52128:34:0;;;;;;;;;;;;;;;;52181:61;42524:5;52181:33;52191:22;;52181:5;:9;;:33;;;;:::i;:::-;:37;;:61;;;;:::i;:::-;52091:4;;;;;;;;;;;52084:25;;;;:173;;;;;:::i;:::-;52306:162;52362:10;;;;;;;;;;;52350:31;;;:33;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52350:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52350:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;52350:33:0;;;;;;;;;;;;;;;;52402:51;42625:5;52402:28;52412:17;;52402:5;:9;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;52313:4;;;;;;;;;;;52306:25;;;;:162;;;;;:::i;:::-;52485:9;:7;:9::i;:::-;52024:482;51890:623;:::o;49266:82::-;49310:30;49324:15;:13;:15::i;:::-;49310:13;:30::i;:::-;;49266:82::o;2062:192::-;2148:7;2181:1;2176;:6;;2184:12;2168:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2168:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2208:9;2224:1;2220;:5;2208:17;;2245:1;2238:8;;;2062:192;;;;;:::o;4088:278::-;4174:7;4206:1;4202;:5;4209:12;4194:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4194:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4233:9;4249:1;4245;:5;;;;;;4233:17;;4357:1;4350:8;;;4088:278;;;;;:::o;29324:761::-;29748:23;29774:69;29802:4;29774:69;;;;;;;;;;;;;;;;;29782:5;29774:27;;;;:69;;;;;:::i;:::-;29748:95;;29878:1;29858:10;:17;:21;29854:224;;;30000:10;29989:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29989:30:0;;;;;;;;;;;;;;;;29981:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29854:224;29324:761;;;:::o;13145:196::-;13248:12;13280:53;13303:6;13311:4;13317:1;13320:12;13280:22;:53::i;:::-;13273:60;;13145:196;;;;;:::o;14522:979::-;14652:12;14685:18;14696:6;14685:10;:18::i;:::-;14677:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14811:12;14825:23;14852:6;:11;;14872:8;14883:4;14852:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14852:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;14810:78:0;;;;14903:7;14899:595;;;14934:10;14927:17;;;;;;14899:595;15068:1;15048:10;:17;:21;15044:439;;;15311:10;15305:17;15372:15;15359:10;15355:2;15351:19;15344:44;15259:148;15454:12;15447:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15447:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14522:979;;;;;;;:::o;10227:422::-;10287:4;10495:12;10606:7;10594:20;10586:28;;10640:1;10633:4;:8;10626:15;;;10227:422;;;:::o
Swarm Source
ipfs://2c5074fdc8b36ba04533416290b8417d4aa6177761c625b82e8e2535f64e0220
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.