Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xa9665d7981435964c1b9b552d90c2c50d57ad00f03a9540f3c8539ed85167857 | Set Harvest On D... | 16417938 | 6 days 19 hrs ago | 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9 | IN | 0xd60ad8993db54fdb99e847bd8c870633057f84f4 | 0 AVAX | 0.001329458 | |
0xd0a1de9d0f7e145b5ec97e959116d6d31928c4a4b291418990e8bf2916e3a283 | Set Vault | 16417922 | 6 days 19 hrs ago | 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9 | IN | 0xd60ad8993db54fdb99e847bd8c870633057f84f4 | 0 AVAX | 0.000755222 | |
0x66421aea314cb21e9165183091f860152eb8bea8c6bc1bd7c0edf18874b22483 | 0x60806040 | 16417820 | 6 days 19 hrs ago | 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9 | IN | Create: StrategyCommonChefLP | 0 AVAX | 0.0892936 |
[ Download CSV Export ]
Contract Name:
StrategyCommonChefLP
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-06-23 */ /** *Submitted for verification at snowtrace.io on 2021-11-08 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.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: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @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: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @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; 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 virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 virtual { _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 { } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for 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: contracts/BIFI/interfaces/common/IUniswapRouterETH.sol pragma solidity ^0.6.0; interface IUniswapRouterETH { function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); } // File: contracts/BIFI/interfaces/common/IUniswapV2Pair.sol pragma solidity ^0.6.0; interface IUniswapV2Pair { function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function burn(address to) external returns (uint amount0, uint amount1); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); } // File: contracts/BIFI/interfaces/common/IMasterChef.sol pragma solidity ^0.6.0; interface IMasterChef { function deposit(uint256 _pid, uint256 _amount) external; function withdraw(uint256 _pid, uint256 _amount) external; function enterStaking(uint256 _amount) external; function leaveStaking(uint256 _amount) external; function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function emergencyWithdraw(uint256 _pid) external; } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/utils/Pausable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: contracts/BIFI/strategies/Common/StratManager.sol pragma solidity ^0.6.12; contract StratManager is Ownable, Pausable { /** * @dev Beefy Contracts: * {keeper} - Address to manage a few lower risk features of the strat * {strategist} - Address of the strategy author/deployer where strategist fee will go. * {vault} - Address of the vault that controls the strategy's funds. * {unirouter} - Address of exchange to execute swaps. */ address public keeper; address public strategist; address public unirouter; address public vault; address public beefyFeeRecipient; /** * @dev Initializes the base strategy. * @param _keeper address to use as alternative owner. * @param _strategist address where strategist fees go. * @param _unirouter router to use for swaps * @param _vault address of parent vault. * @param _beefyFeeRecipient address where to send Beefy's fees. */ constructor( address _keeper, address _strategist, address _unirouter, address _vault, address _beefyFeeRecipient ) public { keeper = _keeper; strategist = _strategist; unirouter = _unirouter; vault = _vault; beefyFeeRecipient = _beefyFeeRecipient; } // checks that caller is either owner or keeper. modifier onlyManager() { require(msg.sender == owner() || msg.sender == keeper, "!manager"); _; } // verifies that the caller is not a contract. modifier onlyEOA() { require(msg.sender == tx.origin, "!EOA"); _; } /** * @dev Updates address of the strat keeper. * @param _keeper new keeper address. */ function setKeeper(address _keeper) external onlyManager { keeper = _keeper; } /** * @dev Updates address where strategist fee earnings will go. * @param _strategist new strategist address. */ function setStrategist(address _strategist) external { require(msg.sender == strategist, "!strategist"); strategist = _strategist; } /** * @dev Updates router that will be used for swaps. * @param _unirouter new unirouter address. */ function setUnirouter(address _unirouter) external onlyOwner { unirouter = _unirouter; } /** * @dev Updates parent vault. * @param _vault new vault address. */ function setVault(address _vault) external onlyOwner { vault = _vault; } /** * @dev Updates beefy fee recipient. * @param _beefyFeeRecipient new beefy fee recipient address. */ function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner { beefyFeeRecipient = _beefyFeeRecipient; } /** * @dev Function to synchronize balances before new user deposit. * Can be overridden in the strategy. */ function beforeDeposit() external virtual {} } // File: contracts/BIFI/strategies/Common/FeeManager.sol pragma solidity ^0.6.12; abstract contract FeeManager is StratManager { uint constant public STRATEGIST_FEE = 112; uint constant public MAX_FEE = 1000; uint constant public MAX_CALL_FEE = 111; uint constant public WITHDRAWAL_FEE_CAP = 50; uint constant public WITHDRAWAL_MAX = 10000; uint public withdrawalFee = 10; uint public callFee = 111; uint public beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; function setCallFee(uint256 _fee) public onlyManager { require(_fee <= MAX_CALL_FEE, "!cap"); callFee = _fee; beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; } function setWithdrawalFee(uint256 _fee) public onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; } } // File: contracts/BIFI/strategies/Common/StrategyCommonChefLP.sol pragma solidity ^0.6.0; contract StrategyCommonChefLP is StratManager, FeeManager { using SafeERC20 for IERC20; using SafeMath for uint256; // Tokens used address public native; address public output; address public want; address public lpToken0; address public lpToken1; // Third party contracts address public chef; uint256 public poolId; bool public harvestOnDeposit; uint256 public lastHarvest; // Routes address[] public outputToNativeRoute; address[] public outputToLp0Route; address[] public outputToLp1Route; /** * @dev Event that is fired each time someone harvests the strat. */ event StratHarvest(address indexed harvester); constructor( address _want, uint256 _poolId, address _chef, address _vault, address _unirouter, address _keeper, address _strategist, address _beefyFeeRecipient, address[] memory _outputToNativeRoute, address[] memory _outputToLp0Route, address[] memory _outputToLp1Route ) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public { want = _want; poolId = _poolId; chef = _chef; output = _outputToNativeRoute[0]; native = _outputToNativeRoute[_outputToNativeRoute.length - 1]; outputToNativeRoute = _outputToNativeRoute; // setup lp routing lpToken0 = IUniswapV2Pair(want).token0(); require(_outputToLp0Route[0] == output, "outputToLp0Route[0] != output"); require(_outputToLp0Route[_outputToLp0Route.length - 1] == lpToken0, "outputToLp0Route[last] != lpToken0"); outputToLp0Route = _outputToLp0Route; lpToken1 = IUniswapV2Pair(want).token1(); require(_outputToLp1Route[0] == output, "outputToLp1Route[0] != output"); require(_outputToLp1Route[_outputToLp1Route.length - 1] == lpToken1, "outputToLp1Route[last] != lpToken1"); outputToLp1Route = _outputToLp1Route; _giveAllowances(); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal > 0) { IMasterChef(chef).deposit(poolId, wantBal); } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal < _amount) { IMasterChef(chef).withdraw(poolId, _amount.sub(wantBal)); wantBal = IERC20(want).balanceOf(address(this)); } if (wantBal > _amount) { wantBal = _amount; } if (tx.origin == owner() || paused()) { IERC20(want).safeTransfer(vault, wantBal); } else { uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX); IERC20(want).safeTransfer(vault, wantBal.sub(withdrawalFeeAmount)); } } function beforeDeposit() external override { if (harvestOnDeposit) { require(msg.sender == vault, "!vault"); _harvest(); } } function harvest() external virtual whenNotPaused onlyEOA { _harvest(); } function managerHarvest() external onlyManager { _harvest(); } // compounds earnings and charges performance fee function _harvest() internal { IMasterChef(chef).deposit(poolId, 0); uint256 outputBal = IERC20(output).balanceOf(address(this)); if (outputBal > 0) { chargeFees(); addLiquidity(); deposit(); lastHarvest = block.timestamp; emit StratHarvest(msg.sender); } } // performance fees function chargeFees() internal { uint256 toNative = IERC20(output).balanceOf(address(this)).mul(45).div(1000); IUniswapRouterETH(unirouter).swapExactTokensForTokens(toNative, 0, outputToNativeRoute, address(this), now); uint256 nativeBal = IERC20(native).balanceOf(address(this)); uint256 callFeeAmount = nativeBal.mul(callFee).div(MAX_FEE); IERC20(native).safeTransfer(tx.origin, callFeeAmount); uint256 beefyFeeAmount = nativeBal.mul(beefyFee).div(MAX_FEE); IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount); uint256 strategistFee = nativeBal.mul(STRATEGIST_FEE).div(MAX_FEE); IERC20(native).safeTransfer(strategist, strategistFee); } // Adds liquidity to AMM and gets more LP tokens. function addLiquidity() internal { uint256 outputHalf = IERC20(output).balanceOf(address(this)).div(2); if (lpToken0 != output) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp0Route, address(this), now); } if (lpToken1 != output) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp1Route, address(this), now); } uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this)); uint256 lp1Bal = IERC20(lpToken1).balanceOf(address(this)); IUniswapRouterETH(unirouter).addLiquidity(lpToken0, lpToken1, lp0Bal, lp1Bal, 1, 1, address(this), now); } // calculate the total underlaying 'want' held by the strat. function balanceOf() public view returns (uint256) { return balanceOfWant().add(balanceOfPool()); } // it calculates how much 'want' this contract holds. function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } // it calculates how much 'want' the strategy has working in the farm. function balanceOfPool() public view returns (uint256) { (uint256 _amount,) = IMasterChef(chef).userInfo(poolId, address(this)); return _amount; } function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager { harvestOnDeposit = _harvestOnDeposit; if (harvestOnDeposit) { setWithdrawalFee(0); } else { setWithdrawalFee(10); } } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); IMasterChef(chef).emergencyWithdraw(poolId); uint256 wantBal = IERC20(want).balanceOf(address(this)); IERC20(want).transfer(vault, wantBal); } // pauses deposits and withdraws all funds from third party systems. function panic() public onlyManager { pause(); IMasterChef(chef).emergencyWithdraw(poolId); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).safeApprove(chef, uint256(-1)); IERC20(output).safeApprove(unirouter, uint256(-1)); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, uint256(-1)); IERC20(lpToken1).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, uint256(-1)); } function _removeAllowances() internal { IERC20(want).safeApprove(chef, 0); IERC20(output).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, 0); } function outputToNative() external view returns (address[] memory) { return outputToNativeRoute; } function outputToLp0() external view returns (address[] memory) { return outputToLp0Route; } function outputToLp1() external view returns (address[] memory) { return outputToLp1Route; } }
[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_chef","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_beefyFeeRecipient","type":"address"},{"internalType":"address[]","name":"_outputToNativeRoute","type":"address[]"},{"internalType":"address[]","name":"_outputToLp0Route","type":"address[]"},{"internalType":"address[]","name":"_outputToLp1Route","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"beefyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToLp0","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp0Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToLp1","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp1Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","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":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600a600655606f6007556103096008553480156200002157600080fd5b506040516200398e3803806200398e83398181016040526101608110156200004857600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b0180519751999b989a96999598949793969295919491939282019284640100000000821115620000a157600080fd5b908301906020820185811115620000b757600080fd5b8251866020820283011164010000000082111715620000d557600080fd5b82525081516020918201928201910280838360005b8381101562000104578181015183820152602001620000ea565b50505050905001604052602001805160405193929190846401000000008211156200012e57600080fd5b9083019060208201858111156200014457600080fd5b82518660208202830111640100000000821117156200016257600080fd5b82525081516020918201928201910280838360005b838110156200019157818101518382015260200162000177565b5050505090500160405260200180516040519392919084640100000000821115620001bb57600080fd5b908301906020820185811115620001d157600080fd5b8251866020820283011164010000000082111715620001ef57600080fd5b82525081516020918201928201910280838360005b838110156200021e57818101518382015260200162000204565b505050509050016040525050508585888a87600062000242620006ee60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19168155600180546001600160a01b03199081166001600160a01b0398891617909155600280548216968816969096179095556003805486169487169490941790935560048054851692861692909217909155600580548416918516919091179055600b805483168f8516179055600f8d9055600e8054909216928c1692909217905583518491906200032457fe5b6020026020010151600a60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550826001845103815181106200036357fe5b602090810291909101810151600980546001600160a01b0319166001600160a01b039092169190911790558351620003a2916012919086019062000c13565b50600b60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015620003f257600080fd5b505afa15801562000407573d6000803e3d6000fd5b505050506040513d60208110156200041e57600080fd5b5051600c80546001600160a01b0319166001600160a01b03928316179055600a54835191169083906000906200045057fe5b60200260200101516001600160a01b031614620004b4576040805162461bcd60e51b815260206004820152601d60248201527f6f7574707574546f4c7030526f7574655b305d20213d206f7574707574000000604482015290519081900360640190fd5b600c5482516001600160a01b039091169083906000198101908110620004d657fe5b60200260200101516001600160a01b031614620005255760405162461bcd60e51b81526004018080602001828103825260228152602001806200390c6022913960400191505060405180910390fd5b81516200053a90601390602085019062000c13565b50600b60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156200058a57600080fd5b505afa1580156200059f573d6000803e3d6000fd5b505050506040513d6020811015620005b657600080fd5b5051600d80546001600160a01b0319166001600160a01b03928316179055600a5482519116908290600090620005e857fe5b60200260200101516001600160a01b0316146200064c576040805162461bcd60e51b815260206004820152601d60248201527f6f7574707574546f4c7031526f7574655b305d20213d206f7574707574000000604482015290519081900360640190fd5b600d5481516001600160a01b0390911690829060001981019081106200066e57fe5b60200260200101516001600160a01b031614620006bd5760405162461bcd60e51b8152600401808060200182810382526022815260200180620038c46022913960400191505060405180910390fd5b8051620006d290601490602084019062000c13565b50620006dd620006f2565b505050505050505050505062000c9e565b3390565b600e54600b546200071f916001600160a01b03918216911660001962000800602090811b620018f117901c565b600354600a546200074c916001600160a01b03918216911660001962000800602090811b620018f117901c565b600354600c5462000778916001600160a01b039182169116600062000800602090811b620018f117901c565b600354600c54620007a5916001600160a01b03918216911660001962000800602090811b620018f117901c565b600354600d54620007d1916001600160a01b039182169116600062000800602090811b620018f117901c565b600354600d54620007fe916001600160a01b03918216911660001962000800602090811b620018f117901c565b565b8015806200088a575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200085a57600080fd5b505afa1580156200086f573d6000803e3d6000fd5b505050506040513d60208110156200088657600080fd5b5051155b620008c75760405162461bcd60e51b8152600401808060200182810382526036815260200180620039586036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b179091526200091f9185916200092416565b505050565b606062000980826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316620009e060201b62001a04179092919060201c565b8051909150156200091f57808060200190516020811015620009a157600080fd5b50516200091f5760405162461bcd60e51b815260040180806020018281038252602a8152602001806200392e602a913960400191505060405180910390fd5b6060620009f18484600085620009fb565b90505b9392505050565b60608247101562000a3e5760405162461bcd60e51b8152600401808060200182810382526026815260200180620038e66026913960400191505060405180910390fd5b62000a498562000b63565b62000a9b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831062000adc5780518252601f19909201916020918201910162000abb565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000b40576040519150601f19603f3d011682016040523d82523d6000602084013e62000b45565b606091505b50909250905062000b5882828662000b69565b979650505050505050565b3b151590565b6060831562000b7a575081620009f4565b82511562000b8b5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000bd757818101518382015260200162000bbd565b50505050905090810190601f16801562000c055780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b82805482825590600052602060002090810192821562000c6b579160200282015b8281111562000c6b57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000c34565b5062000c7992915062000c7d565b5090565b5b8082111562000c795780546001600160a01b031916815560010162000c7e565b612c168062000cae6000396000f3fe608060405234801561001057600080fd5b506004361061030c5760003560e01c80638456cb591161019d578063c1a3d44c116100e9578063dfbdc437116100a2578063f2fde38b1161007c578063f2fde38b1461063b578063fb61778714610661578063fbfa77cf14610669578063fd63a887146106715761030c565b8063dfbdc43714610623578063f1a392da1461062b578063f20eaeb8146106335761030c565b8063c1a3d44c146105b7578063c7b9d530146105bf578063d0e30db0146105e5578063d3102589146105ed578063d801d946146105f5578063d92f3d73146105fd5761030c565b806390321e1a11610156578063ac1e502511610130578063ac1e50251461056d578063aced16611461058a578063bc063e1a14610592578063be12a9781461059a5761030c565b806390321e1a14610537578063989ef4e31461053f578063a68833e5146105475761030c565b80638456cb5914610507578063877562b61461050f5780638912cb8b146105175780638bc7e8c41461051f5780638da5cb5b146105275780638e1454591461052f5761030c565b80633e0dc34e1161025c5780635c975abb11610215578063715018a6116101ef578063715018a6146104c9578063722713f7146104d1578063748747e6146104d95780637d38ca65146104ff5761030c565b80635c975abb1461047f5780635ee167c01461049b5780636817031b146104a35761030c565b80633e0dc34e1461044f5780633f4ba83a146104575780634641257d1461045f5780634700d3051461046757806354518b1a1461046f578063573fef0a146104775761030c565b80631fc8bc5d116102c957806326465826116102a357806326465826146103f05780632ad5a53f1461040d5780632e1a7d4d1461041557806336c6cf21146104325761030c565b80631fc8bc5d146103d85780631fe4a686146103e0578063257ae0de146103e85761030c565b80630587f785146103115780630e8fbb5a14610369578063115880861461038a57806311b0b42d146103a457806313e120b1146103c85780631f1fcd51146103d0575b600080fd5b61031961068e565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561035557818101518382015260200161033d565b505050509050019250505060405180910390f35b6103886004803603602081101561037f57600080fd5b503515156106f0565b005b610392610791565b60408051918252519081900360200190f35b6103ac610818565b604080516001600160a01b039092168252519081900360200190f35b610319610827565b6103ac610887565b6103ac610896565b6103ac6108a5565b6103ac6108b4565b6103886004803603602081101561040657600080fd5b50356108c3565b61039261097d565b6103886004803603602081101561042b57600080fd5b5035610982565b6103ac6004803603602081101561044857600080fd5b5035610bf1565b610392610c18565b610388610c1e565b610388610ca5565b610388610d37565b610392610e16565b610388610e1c565b610487610e6f565b604080519115158252519081900360200190f35b6103ac610e7f565b610388600480360360208110156104b957600080fd5b50356001600160a01b0316610e8e565b610388610f12565b610392610fbe565b610388600480360360208110156104ef57600080fd5b50356001600160a01b0316610fde565b61039261106d565b610388611072565b6103ac6110ef565b6104876110fe565b610392611107565b6103ac61110d565b6103ac61111c565b61039261112b565b610319611131565b6103886004803603602081101561055d57600080fd5b50356001600160a01b0316611191565b6103886004803603602081101561058357600080fd5b5035611215565b6103ac6112c6565b6103926112d5565b6103ac600480360360208110156105b057600080fd5b50356112db565b6103926112e8565b610388600480360360208110156105d557600080fd5b50356001600160a01b0316611364565b6103886113d3565b610392611511565b610388611517565b6103886004803603602081101561061357600080fd5b50356001600160a01b0316611584565b610392611608565b61039261160d565b6103ac611613565b6103886004803603602081101561065157600080fd5b50356001600160a01b0316611622565b610388611724565b6103ac6118d5565b6103ac6004803603602081101561068757600080fd5b50356118e4565b606060148054806020026020016040519081016040528092919081815260200182805480156106e657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116106c8575b5050505050905090565b6106f861110d565b6001600160a01b0316336001600160a01b0316148061072157506001546001600160a01b031633145b61075d576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6010805460ff1916821515179081905560ff16156107845761077f6000611215565b61078e565b61078e600a611215565b50565b600e54600f54604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b1580156107e657600080fd5b505afa1580156107fa573d6000803e3d6000fd5b505050506040513d604081101561081057600080fd5b505191505090565b6009546001600160a01b031681565b606060128054806020026020016040519081016040528092919081815260200182805480156106e6576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116106c8575050505050905090565b600b546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b6108cb61110d565b6001600160a01b0316336001600160a01b031614806108f457506001546001600160a01b031633145b610930576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f81111561096f576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b031633146109ca576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610a1557600080fd5b505afa158015610a29573d6000803e3d6000fd5b505050506040513d6020811015610a3f57600080fd5b5051905081811015610b3c57600e54600f546001600160a01b039091169063441a3e7090610a6d8585611a1d565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610aaa57600080fd5b505af1158015610abe573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610b0d57600080fd5b505afa158015610b21573d6000803e3d6000fd5b505050506040513d6020811015610b3757600080fd5b505190505b81811115610b475750805b610b4f61110d565b6001600160a01b0316326001600160a01b03161480610b715750610b71610e6f565b15610b9857600454600b54610b93916001600160a01b03918216911683611a7f565b610bed565b6000610bbb612710610bb560065485611ad190919063ffffffff16565b90611b2a565b600454909150610beb906001600160a01b0316610bd88484611a1d565b600b546001600160a01b03169190611a7f565b505b5050565b60138181548110610bfe57fe5b6000918252602090912001546001600160a01b0316905081565b600f5481565b610c2661110d565b6001600160a01b0316336001600160a01b03161480610c4f57506001546001600160a01b031633145b610c8b576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610c93611b91565b610c9b611c34565b610ca36113d3565b565b610cad610e6f565b15610cf2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b333214610d2f576040805162461bcd60e51b8152602060048083019190915260248201526321454f4160e01b604482015290519081900360640190fd5b610ca3611cec565b610d3f61110d565b6001600160a01b0316336001600160a01b03161480610d6857506001546001600160a01b031633145b610da4576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610dac611072565b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015610dfc57600080fd5b505af1158015610e10573d6000803e3d6000fd5b50505050565b61271081565b60105460ff1615610ca3576004546001600160a01b03163314610d2f576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600054600160a01b900460ff1690565b600c546001600160a01b031681565b610e96611e25565b6001600160a01b0316610ea761110d565b6001600160a01b031614610ef0576040805162461bcd60e51b81526020600482018190526024820152600080516020612b61833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b610f1a611e25565b6001600160a01b0316610f2b61110d565b6001600160a01b031614610f74576040805162461bcd60e51b81526020600482018190526024820152600080516020612b61833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610fd9610fcb610791565b610fd36112e8565b90611e29565b905090565b610fe661110d565b6001600160a01b0316336001600160a01b0316148061100f57506001546001600160a01b031633145b61104b576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b61107a61110d565b6001600160a01b0316336001600160a01b031614806110a357506001546001600160a01b031633145b6110df576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6110e7611e83565b610ca3611f0c565b600d546001600160a01b031681565b60105460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b606060138054806020026020016040519081016040528092919081815260200182805480156106e6576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116106c8575050505050905090565b611199611e25565b6001600160a01b03166111aa61110d565b6001600160a01b0316146111f3576040805162461bcd60e51b81526020600482018190526024820152600080516020612b61833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b61121d61110d565b6001600160a01b0316336001600160a01b0316148061124657506001546001600160a01b031633145b611282576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b60328111156112c1576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b60128181548110610bfe57fe5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561133357600080fd5b505afa158015611347573d6000803e3d6000fd5b505050506040513d602081101561135d57600080fd5b5051905090565b6002546001600160a01b031633146113b1576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6113db610e6f565b15611420576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561146b57600080fd5b505afa15801561147f573d6000803e3d6000fd5b505050506040513d602081101561149557600080fd5b50519050801561078e57600e54600f5460408051631c57762b60e31b8152600481019290925260248201849052516001600160a01b039092169163e2bbb1589160448082019260009290919082900301818387803b1580156114f657600080fd5b505af115801561150a573d6000803e3d6000fd5b5050505050565b60085481565b61151f61110d565b6001600160a01b0316336001600160a01b0316148061154857506001546001600160a01b031633145b610d2f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61158c611e25565b6001600160a01b031661159d61110d565b6001600160a01b0316146115e6576040805162461bcd60e51b81526020600482018190526024820152600080516020612b61833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b60115481565b600a546001600160a01b031681565b61162a611e25565b6001600160a01b031661163b61110d565b6001600160a01b031614611684576040805162461bcd60e51b81526020600482018190526024820152600080516020612b61833981519152604482015290519081900360640190fd5b6001600160a01b0381166116c95760405162461bcd60e51b8152600401808060200182810382526026815260200180612af46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b0316331461176c576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b1580156117bc57600080fd5b505af11580156117d0573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561182157600080fd5b505afa158015611835573d6000803e3d6000fd5b505050506040513d602081101561184b57600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b1580156118ab57600080fd5b505af11580156118bf573d6000803e3d6000fd5b505050506040513d6020811015610beb57600080fd5b6004546001600160a01b031681565b60148181548110610bfe57fe5b801580611977575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561194957600080fd5b505afa15801561195d573d6000803e3d6000fd5b505050506040513d602081101561197357600080fd5b5051155b6119b25760405162461bcd60e51b8152600401808060200182810382526036815260200180612bab6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610beb908490611f84565b6060611a138484600085612035565b90505b9392505050565b600082821115611a74576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610beb908490611f84565b600082611ae057506000611a79565b82820282848281611aed57fe5b0414611a165760405162461bcd60e51b8152600401808060200182810382526021815260200180612b406021913960400191505060405180910390fd5b6000808211611b80576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611b8957fe5b049392505050565b611b99610e6f565b611be1576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c17611e25565b604080516001600160a01b039092168252519081900360200190a1565b600e54600b54611c53916001600160a01b0391821691166000196118f1565b600354600a54611c72916001600160a01b0391821691166000196118f1565b600354600c54611c90916001600160a01b03918216911660006118f1565b600354600c54611caf916001600160a01b0391821691166000196118f1565b600354600d54611ccd916001600160a01b03918216911660006118f1565b600354600d54610ca3916001600160a01b0391821691166000196118f1565b600e54600f5460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b158015611d4257600080fd5b505af1158015611d56573d6000803e3d6000fd5b5050600a54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611da757600080fd5b505afa158015611dbb573d6000803e3d6000fd5b505050506040513d6020811015611dd157600080fd5b50519050801561078e57611de3612191565b611deb6124d9565b611df36113d3565b4260115560405133907f577a37fdb49a88d66684922c6f913df5239b4f214b2b97c53ef8e3bbb2034cb590600090a250565b3390565b600082820183811015611a16576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b611e8b610e6f565b15611ed0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c17611e25565b600e54600b54611f2a916001600160a01b03918216911660006118f1565b600354600a54611f48916001600160a01b03918216911660006118f1565b600354600c54611f66916001600160a01b03918216911660006118f1565b600354600d54610ca3916001600160a01b03918216911660006118f1565b6060611fd9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611a049092919063ffffffff16565b805190915015610beb57808060200190516020811015611ff857600080fd5b5051610beb5760405162461bcd60e51b815260040180806020018281038252602a815260200180612b81602a913960400191505060405180910390fd5b6060824710156120765760405162461bcd60e51b8152600401808060200182810382526026815260200180612b1a6026913960400191505060405180910390fd5b61207f85612a49565b6120d0576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061210f5780518252601f1990920191602091820191016120f0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612171576040519150601f19603f3d011682016040523d82523d6000602084013e612176565b606091505b5091509150612186828286612a4f565b979650505050505050565b600a54604080516370a0823160e01b81523060048201529051600092612220926103e892610bb592602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156121ee57600080fd5b505afa158015612202573d6000803e3d6000fd5b505050506040513d602081101561221857600080fd5b505190611ad1565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601230426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156122cc57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116122ae575b50509650505050505050600060405180830381600087803b1580156122f057600080fd5b505af1158015612304573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561232d57600080fd5b810190808051604051939291908464010000000082111561234d57600080fd5b90830190602082018581111561236257600080fd5b825186602082028301116401000000008211171561237f57600080fd5b82525081516020918201928201910280838360005b838110156123ac578181015183820152602001612394565b505050509190910160408181526009546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b15801561240757600080fd5b505afa15801561241b573d6000803e3d6000fd5b505050506040513d602081101561243157600080fd5b505160075490915060009061244f906103e890610bb5908590611ad1565b600954909150612469906001600160a01b03163283611a7f565b60006124866103e8610bb560085486611ad190919063ffffffff16565b6005546009549192506124a6916001600160a01b03908116911683611a7f565b60006124b96103e8610bb5866070611ad1565b60025460095491925061150a916001600160a01b03908116911683611a7f565b600a54604080516370a0823160e01b81523060048201529051600092612560926002926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561252e57600080fd5b505afa158015612542573d6000803e3d6000fd5b505050506040513d602081101561255857600080fd5b505190611b2a565b600a54600c549192506001600160a01b03918216911614612704576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526013805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c4909101908690801561261557602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116125f7575b50509650505050505050600060405180830381600087803b15801561263957600080fd5b505af115801561264d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561267657600080fd5b810190808051604051939291908464010000000082111561269657600080fd5b9083019060208201858111156126ab57600080fd5b82518660208202830111640100000000821117156126c857600080fd5b82525081516020918201928201910280838360005b838110156126f55781810151838201526020016126dd565b50505050905001604052505050505b600a54600d546001600160a01b039081169116146128a5576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c490910190869080156127b657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612798575b50509650505050505050600060405180830381600087803b1580156127da57600080fd5b505af11580156127ee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561281757600080fd5b810190808051604051939291908464010000000082111561283757600080fd5b90830190602082018581111561284c57600080fd5b825186602082028301116401000000008211171561286957600080fd5b82525081516020918201928201910280838360005b8381101561289657818101518382015260200161287e565b50505050905001604052505050505b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156128f057600080fd5b505afa158015612904573d6000803e3d6000fd5b505050506040513d602081101561291a57600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561296d57600080fd5b505afa158015612981573d6000803e3d6000fd5b505050506040513d602081101561299757600080fd5b5051600354600c54600d546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b158015612a1f57600080fd5b505af1158015612a33573d6000803e3d6000fd5b505050506040513d606081101561150a57600080fd5b3b151590565b60608315612a5e575081611a16565b825115612a6e5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ab8578181015183820152602001612aa0565b50505050905090810190601f168015612ae55780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a26469706673582212206724db744b5c8ae00a896d619cae52088d8f0d3451473e9271efc270f10394f264736f6c634300060c00336f7574707574546f4c7031526f7574655b6c6173745d20213d206c70546f6b656e31416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6f7574707574546f4c7030526f7574655b6c6173745d20213d206c70546f6b656e305361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000000022f6fb1f5cef88210b3b25329cd19a5a10e5ecd70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521cea929c0c6935778d59fe22fedbd8f2779f030000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c900000000000000000000000060ae616a2155ee3d9a68541ba4544862310933d40000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70000000000000000000000000000000000000000000000000000000000000000300000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d7000000000000000000000000054e90234257f58075c3da580ab4f02e30a5a2d62000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000022f6fb1f5cef88210b3b25329cd19a5a10e5ecd70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521cea929c0c6935778d59fe22fedbd8f2779f030000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c900000000000000000000000060ae616a2155ee3d9a68541ba4544862310933d40000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70000000000000000000000000000000000000000000000000000000000000000300000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d7000000000000000000000000054e90234257f58075c3da580ab4f02e30a5a2d62000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
-----Decoded View---------------
Arg [0] : _want (address): 0x22f6fb1f5cef88210b3b25329cd19a5a10e5ecd7
Arg [1] : _poolId (uint256): 0
Arg [2] : _chef (address): 0x521cea929c0c6935778d59fe22fedbd8f2779f03
Arg [3] : _vault (address): 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [4] : _unirouter (address): 0x60ae616a2155ee3d9a68541ba4544862310933d4
Arg [5] : _keeper (address): 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [6] : _strategist (address): 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [7] : _beefyFeeRecipient (address): 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [8] : _outputToNativeRoute (address[]): 0x98716351b2660f8ebbe4bafb34a07f9c4aa35e14,0xd586e7f844cea2f87f50152665bcbc2c279d8d70
Arg [9] : _outputToLp0Route (address[]): 0x98716351b2660f8ebbe4bafb34a07f9c4aa35e14,0xd586e7f844cea2f87f50152665bcbc2c279d8d70,0x54e90234257f58075c3da580ab4f02e30a5a2d62
Arg [10] : _outputToLp1Route (address[]): 0x98716351b2660f8ebbe4bafb34a07f9c4aa35e14,0xd586e7f844cea2f87f50152665bcbc2c279d8d70
-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 00000000000000000000000022f6fb1f5cef88210b3b25329cd19a5a10e5ecd7
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 000000000000000000000000521cea929c0c6935778d59fe22fedbd8f2779f03
Arg [3] : 0000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [4] : 00000000000000000000000060ae616a2155ee3d9a68541ba4544862310933d4
Arg [5] : 0000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [6] : 0000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [7] : 0000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 00000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14
Arg [13] : 000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 00000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14
Arg [16] : 000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
Arg [17] : 00000000000000000000000054e90234257f58075c3da580ab4f02e30a5a2d62
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [19] : 00000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14
Arg [20] : 000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
Deployed ByteCode Sourcemap
45655:8135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53681:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51728:262;;;;;;;;;;;;;;;;-1:-1:-1;51728:262:0;;;;:::i;:::-;;51551:169;;;:::i;:::-;;;;;;;;;;;;;;;;45808:21;;;:::i;:::-;;;;-1:-1:-1;;;;;45808:21:0;;;;;;;;;;;;;;53447:112;;;:::i;45864:19::-;;;:::i;45982:::-;;;:::i;42093:25::-;;;:::i;42125:24::-;;;:::i;45171:200::-;;;;;;;;;;;;;;;;-1:-1:-1;45171:200:0;;:::i;44883:39::-;;;:::i;48021:736::-;;;;;;;;;;;;;;;;-1:-1:-1;48021:736:0;;:::i;46166:33::-;;;;;;;;;;;;;;;;-1:-1:-1;46166:33:0;;:::i;46008:21::-;;;:::i;52660:121::-;;;:::i;48946:87::-;;;:::i;52433:116::-;;;:::i;44982:43::-;;;:::i;48765:173::-;;;:::i;40381:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;45890:23;;;:::i;44103:86::-;;;;;;;;;;;;;;;;-1:-1:-1;44103:86:0;-1:-1:-1;;;;;44103:86:0;;:::i;38740:148::-;;;:::i;51169:113::-;;;:::i;43375:92::-;;;;;;;;;;;;;;;;-1:-1:-1;43375:92:0;-1:-1:-1;;;;;43375:92:0;;:::i;44793:41::-;;;:::i;52557:95::-;;;:::i;45920:23::-;;;:::i;46038:28::-;;;:::i;45034:30::-;;;:::i;38089:87::-;;;:::i;42183:32::-;;;:::i;45073:25::-;;;:::i;53567:106::-;;;:::i;44324:134::-;;;;;;;;;;;;;;;;-1:-1:-1;44324:134:0;-1:-1:-1;;;;;44324:134:0;;:::i;45379:154::-;;;;;;;;;;;;;;;;-1:-1:-1;45379:154:0;;:::i;42065:21::-;;;:::i;44841:35::-;;;:::i;46123:36::-;;;;;;;;;;;;;;;;-1:-1:-1;46123:36:0;;:::i;51349:118::-;;;:::i;43612:155::-;;;;;;;;;;;;;;;;-1:-1:-1;43612:155:0;-1:-1:-1;;;;;43612:155:0;;:::i;47801:212::-;;;:::i;45105:57::-;;;:::i;49041:76::-;;;:::i;43899:102::-;;;;;;;;;;;;;;;;-1:-1:-1;43899:102:0;-1:-1:-1;;;;;43899:102:0;;:::i;44931:44::-;;;:::i;46073:26::-;;;:::i;45836:21::-;;;:::i;39043:244::-;;;;;;;;;;;;;;;;-1:-1:-1;39043:244:0;-1:-1:-1;;;;;39043:244:0;;:::i;52090:261::-;;;:::i;42156:20::-;;;:::i;46206:33::-;;;;;;;;;;;;;;;;-1:-1:-1;46206:33:0;;:::i;53681:106::-;53727:16;53763;53756:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53756:23:0;;;;;;;;;;;;;;;;;;;;;;;53681:106;:::o;51728:262::-;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;;51813:16:::1;:36:::0;;-1:-1:-1;;51813:36:0::1;::::0;::::1;;;::::0;;;;::::1;51866:16;51862:121;;;51899:19;51916:1;51899:16;:19::i;:::-;51862:121;;;51951:20;51968:2;51951:16;:20::i;:::-;51728:262:::0;:::o;51551:169::-;51650:4;;51665:6;;51638:49;;;-1:-1:-1;;;51638:49:0;;;;;;;;;51681:4;51638:49;;;;;;51597:7;;;;-1:-1:-1;;;;;51650:4:0;;;;51638:26;;:49;;;;;;;;;;51650:4;51638:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51638:49:0;;-1:-1:-1;;51551:169:0;:::o;45808:21::-;;;-1:-1:-1;;;;;45808:21:0;;:::o;53447:112::-;53496:16;53532:19;53525:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53525:26:0;;;;;;;;;;;;;;;;;;;;;;53447:112;:::o;45864:19::-;;;-1:-1:-1;;;;;45864:19:0;;:::o;45982:::-;;;-1:-1:-1;;;;;45982:19:0;;:::o;42093:25::-;;;-1:-1:-1;;;;;42093:25:0;;:::o;42125:24::-;;;-1:-1:-1;;;;;42125:24:0;;:::o;45171:200::-;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;;44919:3:::1;45243:4;:20;;45235:37;;;::::0;;-1:-1:-1;;;45235:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45235:37:0;;;;;;;;;;;;;::::1;;45293:7;:14:::0;;;45329:24;:34:::1;45318:8;:45:::0;45171:200::o;44883:39::-;44919:3;44883:39;:::o;48021:736::-;48098:5;;-1:-1:-1;;;;;48098:5:0;48084:10;:19;48076:38;;;;;-1:-1:-1;;;48076:38:0;;;;;;;;;;;;-1:-1:-1;;;48076:38:0;;;;;;;;;;;;;;;48152:4;;48145:37;;;-1:-1:-1;;;48145:37:0;;48176:4;48145:37;;;;;;48127:15;;-1:-1:-1;;;;;48152:4:0;;48145:22;;:37;;;;;;;;;;;;;;48152:4;48145:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48145:37:0;;-1:-1:-1;48199:17:0;;;48195:168;;;48245:4;;48260:6;;-1:-1:-1;;;;;48245:4:0;;;;48233:26;;48268:20;:7;48280;48268:11;:20::i;:::-;48233:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48321:4:0;;48314:37;;;-1:-1:-1;;;48314:37:0;;48345:4;48314:37;;;;;;-1:-1:-1;;;;;48321:4:0;;;;-1:-1:-1;48314:22:0;;-1:-1:-1;48314:37:0;;;;;;;;;;;;;;;48321:4;48314:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48314:37:0;;-1:-1:-1;48195:168:0;48389:7;48379;:17;48375:67;;;-1:-1:-1;48423:7:0;48375:67;48471:7;:5;:7::i;:::-;-1:-1:-1;;;;;48458:20:0;:9;-1:-1:-1;;;;;48458:20:0;;:32;;;;48482:8;:6;:8::i;:::-;48454:296;;;48533:5;;48514:4;;48507:41;;-1:-1:-1;;;;;48514:4:0;;;;48533:5;48540:7;48507:25;:41::i;:::-;48454:296;;;48581:27;48611:46;45020:5;48611:26;48623:13;;48611:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;48698:5;;48581:76;;-1:-1:-1;48672:66:0;;-1:-1:-1;;;;;48698:5:0;48705:32;:7;48581:76;48705:11;:32::i;:::-;48679:4;;-1:-1:-1;;;;;48679:4:0;;48672:66;:25;:66::i;:::-;48454:296;;48021:736;;:::o;46166:33::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46166:33:0;;-1:-1:-1;46166:33:0;:::o;46008:21::-;;;;:::o;52660:121::-;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;;52711:10:::1;:8;:10::i;:::-;52734:17;:15;:17::i;:::-;52764:9;:7;:9::i;:::-;52660:121::o:0;48946:87::-;40707:8;:6;:8::i;:::-;40706:9;40698:38;;;;;-1:-1:-1;;;40698:38:0;;;;;;;;;;;;-1:-1:-1;;;40698:38:0;;;;;;;;;;;;;;;43204:10:::1;43218:9;43204:23;43196:40;;;::::0;;-1:-1:-1;;;43196:40:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;43196:40:0;;;;;;;;;;;;;::::1;;49015:10:::2;:8;:10::i;52433:116::-:0;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;;52480:7:::1;:5;:7::i;:::-;52510:4;::::0;52534:6:::1;::::0;52498:43:::1;::::0;;-1:-1:-1;;;52498:43:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52510:4:0;;::::1;::::0;52498:35:::1;::::0;:43;;;;;52510:4:::1;::::0;52498:43;;;;;;;;52510:4;;52498:43;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52433:116::o:0;44982:43::-;45020:5;44982:43;:::o;48765:173::-;48823:16;;;;48819:112;;;48878:5;;-1:-1:-1;;;;;48878:5:0;48864:10;:19;48856:38;;;;;-1:-1:-1;;;48856:38:0;;;;;;;;;;;;-1:-1:-1;;;48856:38:0;;;;;;;;;;;;;;40381:86;40428:4;40452:7;-1:-1:-1;;;40452:7:0;;;;;40381:86::o;45890:23::-;;;-1:-1:-1;;;;;45890:23:0;;:::o;44103:86::-;38320:12;:10;:12::i;:::-;-1:-1:-1;;;;;38309:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38309:23:0;;38301:68;;;;;-1:-1:-1;;;38301:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38301:68:0;;;;;;;;;;;;;;;44167:5:::1;:14:::0;;-1:-1:-1;;;;;;44167:14:0::1;-1:-1:-1::0;;;;;44167:14:0;;;::::1;::::0;;;::::1;::::0;;44103:86::o;38740:148::-;38320:12;:10;:12::i;:::-;-1:-1:-1;;;;;38309:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38309:23:0;;38301:68;;;;;-1:-1:-1;;;38301:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38301:68:0;;;;;;;;;;;;;;;38847:1:::1;38831:6:::0;;38810:40:::1;::::0;-1:-1:-1;;;;;38831:6:0;;::::1;::::0;38810:40:::1;::::0;38847:1;;38810:40:::1;38878:1;38861:19:::0;;-1:-1:-1;;;;;;38861:19:0::1;::::0;;38740:148::o;51169:113::-;51211:7;51238:36;51258:15;:13;:15::i;:::-;51238;:13;:15::i;:::-;:19;;:36::i;:::-;51231:43;;51169:113;:::o;43375:92::-;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;;43443:6:::1;:16:::0;;-1:-1:-1;;;;;;43443:16:0::1;-1:-1:-1::0;;;;;43443:16:0;;;::::1;::::0;;;::::1;::::0;;43375:92::o;44793:41::-;44831:3;44793:41;:::o;52557:95::-;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;;52604:8:::1;:6;:8::i;:::-;52625:19;:17;:19::i;45920:23::-:0;;;-1:-1:-1;;;;;45920:23:0;;:::o;46038:28::-;;;;;;:::o;45034:30::-;;;;:::o;38089:87::-;38135:7;38162:6;-1:-1:-1;;;;;38162:6:0;38089:87;:::o;42183:32::-;;;-1:-1:-1;;;;;42183:32:0;;:::o;45073:25::-;;;;:::o;53567:106::-;53613:16;53649;53642:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53642:23:0;;;;;;;;;;;;;;;;;;;;;;53567:106;:::o;44324:134::-;38320:12;:10;:12::i;:::-;-1:-1:-1;;;;;38309:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38309:23:0;;38301:68;;;;;-1:-1:-1;;;38301:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38301:68:0;;;;;;;;;;;;;;;44412:17:::1;:38:::0;;-1:-1:-1;;;;;;44412:38:0::1;-1:-1:-1::0;;;;;44412:38:0;;;::::1;::::0;;;::::1;::::0;;44324:134::o;45379:154::-;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;;44973:2:::1;45457:4;:26;;45449:43;;;::::0;;-1:-1:-1;;;45449:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45449:43:0;;;;;;;;;;;;;::::1;;45505:13;:20:::0;45379:154::o;42065:21::-;;;-1:-1:-1;;;;;42065:21:0;;:::o;44841:35::-;44872:4;44841:35;:::o;46123:36::-;;;;;;;;;;51349:118;51429:4;;51422:37;;;-1:-1:-1;;;51422:37:0;;51453:4;51422:37;;;;;;51395:7;;-1:-1:-1;;;;;51429:4:0;;51422:22;;:37;;;;;;;;;;;;;;51429:4;51422:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51422:37:0;;-1:-1:-1;51349:118:0;:::o;43612:155::-;43698:10;;-1:-1:-1;;;;;43698:10:0;43684;:24;43676:48;;;;;-1:-1:-1;;;43676:48:0;;;;;;;;;;;;-1:-1:-1;;;43676:48:0;;;;;;;;;;;;;;;43735:10;:24;;-1:-1:-1;;;;;;43735:24:0;-1:-1:-1;;;;;43735:24:0;;;;;;;;;;43612:155::o;47801:212::-;40707:8;:6;:8::i;:::-;40706:9;40698:38;;;;;-1:-1:-1;;;40698:38:0;;;;;;;;;;;;-1:-1:-1;;;40698:38:0;;;;;;;;;;;;;;;47877:4:::1;::::0;47870:37:::1;::::0;;-1:-1:-1;;;47870:37:0;;47901:4:::1;47870:37;::::0;::::1;::::0;;;47852:15:::1;::::0;-1:-1:-1;;;;;47877:4:0::1;::::0;47870:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;47877:4;47870:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;47870:37:0;;-1:-1:-1;47924:11:0;;47920:86:::1;;47964:4;::::0;47978:6:::1;::::0;47952:42:::1;::::0;;-1:-1:-1;;;47952:42:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;47964:4:0;;::::1;::::0;47952:25:::1;::::0;:42;;;;;47964:4:::1;::::0;47952:42;;;;;;;;47964:4;;47952:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40747:1;47801:212::o:0;45105:57::-;;;;:::o;49041:76::-;43042:7;:5;:7::i;:::-;-1:-1:-1;;;;;43028:21:0;:10;-1:-1:-1;;;;;43028:21:0;;:45;;;-1:-1:-1;43067:6:0;;-1:-1:-1;;;;;43067:6:0;43053:10;:20;43028:45;43020:66;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;-1:-1:-1;;;43020:66:0;;;;;;;;;;;;;;43899:102;38320:12;:10;:12::i;:::-;-1:-1:-1;;;;;38309:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38309:23:0;;38301:68;;;;;-1:-1:-1;;;38301:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38301:68:0;;;;;;;;;;;;;;;43971:9:::1;:22:::0;;-1:-1:-1;;;;;;43971:22:0::1;-1:-1:-1::0;;;;;43971:22:0;;;::::1;::::0;;;::::1;::::0;;43899:102::o;44931:44::-;44973:2;44931:44;:::o;46073:26::-;;;;:::o;45836:21::-;;;-1:-1:-1;;;;;45836:21:0;;:::o;39043:244::-;38320:12;:10;:12::i;:::-;-1:-1:-1;;;;;38309:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38309:23:0;;38301:68;;;;;-1:-1:-1;;;38301:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38301:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39132:22:0;::::1;39124:73;;;;-1:-1:-1::0;;;39124:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39234:6;::::0;;39213:38:::1;::::0;-1:-1:-1;;;;;39213:38:0;;::::1;::::0;39234:6;::::1;::::0;39213:38:::1;::::0;::::1;39262:6;:17:::0;;-1:-1:-1;;;;;;39262:17:0::1;-1:-1:-1::0;;;;;39262:17:0;;;::::1;::::0;;;::::1;::::0;;39043:244::o;52090:261::-;52155:5;;-1:-1:-1;;;;;52155:5:0;52141:10;:19;52133:38;;;;;-1:-1:-1;;;52133:38:0;;;;;;;;;;;;-1:-1:-1;;;52133:38:0;;;;;;;;;;;;;;;52196:4;;52220:6;;52184:43;;;-1:-1:-1;;;52184:43:0;;;;;;;;;;-1:-1:-1;;;;;52196:4:0;;;;52184:35;;:43;;;;;52196:4;;52184:43;;;;;;;;52196:4;;52184:43;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52265:4:0;;52258:37;;;-1:-1:-1;;;52258:37:0;;52289:4;52258:37;;;;;;52240:15;;-1:-1:-1;;;;;;52265:4:0;;;;-1:-1:-1;52258:22:0;;:37;;;;;;;;;;;;;;52265:4;52258:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52258:37:0;52313:4;;52328:5;;;52306:37;;;-1:-1:-1;;;52306:37:0;;-1:-1:-1;;;;;52328:5:0;;;52306:37;;;;;;;;;;;;;;52258;;-1:-1:-1;52313:4:0;;;;52306:21;;:37;;;;;52258;;52306;;;;;;;;52313:4;;52306:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42156:20;;;-1:-1:-1;;;;;42156:20:0;;:::o;46206:33::-;;;;;;;;;;31756:622;32126:10;;;32125:62;;-1:-1:-1;32142:39:0;;;-1:-1:-1;;;32142:39:0;;32166:4;32142:39;;;;-1:-1:-1;;;;;32142:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32142:39:0;:44;32125:62;32117:152;;;;-1:-1:-1;;;32117:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32307:62;;;-1:-1:-1;;;;;32307:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32307:62:0;-1:-1:-1;;;32307:62:0;;;32280:90;;32300:5;;32280:19;:90::i;26092:195::-;26195:12;26227:52;26249:6;26257:4;26263:1;26266:12;26227:21;:52::i;:::-;26220:59;;26092:195;;;;;;:::o;7158:158::-;7216:7;7249:1;7244;:6;;7236:49;;;;;-1:-1:-1;;;7236:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7303:5:0;;;7158:158;;;;;:::o;31097:177::-;31207:58;;;-1:-1:-1;;;;;31207:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31207:58:0;-1:-1:-1;;;31207:58:0;;;31180:86;;31200:5;;31180:19;:86::i;7575:220::-;7633:7;7657:6;7653:20;;-1:-1:-1;7672:1:0;7665:8;;7653:20;7696:5;;;7700:1;7696;:5;:1;7720:5;;;;;:10;7712:56;;;;-1:-1:-1;;;7712:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8273:153;8331:7;8363:1;8359;:5;8351:44;;;;;-1:-1:-1;;;8351:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8417:1;8413;:5;;;;;;;8273:153;-1:-1:-1;;;8273:153:0:o;41440:120::-;40984:8;:6;:8::i;:::-;40976:41;;;;;-1:-1:-1;;;40976:41:0;;;;;;;;;;;;-1:-1:-1;;;40976:41:0;;;;;;;;;;;;;;;41509:5:::1;41499:15:::0;;-1:-1:-1;;;;41499:15:0::1;::::0;;41530:22:::1;41539:12;:10;:12::i;:::-;41530:22;::::0;;-1:-1:-1;;;;;41530:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;41440:120::o:0;52789:395::-;52861:4;;52843;;52836:43;;-1:-1:-1;;;;;52843:4:0;;;;52861;-1:-1:-1;;52836:24:0;:43::i;:::-;52917:9;;52897:6;;52890:50;;-1:-1:-1;;;;;52897:6:0;;;;52917:9;-1:-1:-1;;52890:26:0;:50::i;:::-;52982:9;;52960:8;;52953:42;;-1:-1:-1;;;;;52960:8:0;;;;52982:9;;52953:28;:42::i;:::-;53035:9;;53013:8;;53006:52;;-1:-1:-1;;;;;53013:8:0;;;;53035:9;-1:-1:-1;;53006:28:0;:52::i;:::-;53100:9;;53078:8;;53071:42;;-1:-1:-1;;;;;53078:8:0;;;;53100:9;;53071:28;:42::i;:::-;53153:9;;53131:8;;53124:52;;-1:-1:-1;;;;;53131:8:0;;;;53153:9;-1:-1:-1;;53124:28:0;:52::i;49180:365::-;49232:4;;49246:6;;49220:36;;;-1:-1:-1;;;49220:36:0;;;;;;;;;49232:4;49220:36;;;;;;;;-1:-1:-1;;;;;49232:4:0;;;;49220:25;;:36;;;;;49232:4;49220:36;;;;;;49232:4;;49220:36;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49294:6:0;;49287:39;;;-1:-1:-1;;;49287:39:0;;49320:4;49287:39;;;;;;49267:17;;-1:-1:-1;;;;;;49294:6:0;;;;-1:-1:-1;49287:24:0;;:39;;;;;;;;;;;;;;49294:6;49287:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49287:39:0;;-1:-1:-1;49341:13:0;;49337:201;;49371:12;:10;:12::i;:::-;49398:14;:12;:14::i;:::-;49427:9;:7;:9::i;:::-;49467:15;49453:11;:29;49502:24;;49515:10;;49502:24;;;;;49180:365;:::o;738:106::-;826:10;738:106;:::o;6696:179::-;6754:7;6786:5;;;6810:6;;;;6802:46;;;;;-1:-1:-1;;;6802:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;41181:118;40707:8;:6;:8::i;:::-;40706:9;40698:38;;;;;-1:-1:-1;;;40698:38:0;;;;;;;;;;;;-1:-1:-1;;;40698:38:0;;;;;;;;;;;;;;;41241:7:::1;:14:::0;;-1:-1:-1;;;;41241:14:0::1;-1:-1:-1::0;;;41241:14:0::1;::::0;;41271:20:::1;41278:12;:10;:12::i;53192:247::-:0;53266:4;;53248;;53241:33;;-1:-1:-1;;;;;53248:4:0;;;;53266;;53241:24;:33::i;:::-;53312:9;;53292:6;;53285:40;;-1:-1:-1;;;;;53292:6:0;;;;53312:9;;53285:26;:40::i;:::-;53365:9;;53343:8;;53336:42;;-1:-1:-1;;;;;53343:8:0;;;;53365:9;;53336:28;:42::i;:::-;53418:9;;53396:8;;53389:42;;-1:-1:-1;;;;;53396:8:0;;;;53418:9;;53389:28;:42::i;33402:761::-;33826:23;33852:69;33880:4;33852:69;;;;;;;;;;;;;;;;;33860:5;-1:-1:-1;;;;;33852:27:0;;;:69;;;;;:::i;:::-;33936:17;;33826:95;;-1:-1:-1;33936:21:0;33932:224;;34078:10;34067:30;;;;;;;;;;;;;;;-1:-1:-1;34067:30:0;34059:85;;;;-1:-1:-1;;;34059:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27144:530;27271:12;27329:5;27304:21;:30;;27296:81;;;;-1:-1:-1;;;27296:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27396:18;27407:6;27396:10;:18::i;:::-;27388:60;;;;;-1:-1:-1;;;27388:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27522:12;27536:23;27563:6;-1:-1:-1;;;;;27563:11:0;27583:5;27591:4;27563:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27563:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27521:75;;;;27614:52;27632:7;27641:10;27653:12;27614:17;:52::i;:::-;27607:59;27144:530;-1:-1:-1;;;;;;;27144:530:0:o;49578:743::-;49646:6;;49639:39;;;-1:-1:-1;;;49639:39:0;;49672:4;49639:39;;;;;;49620:16;;49639:57;;49691:4;;49639:47;;49683:2;;-1:-1:-1;;;;;49646:6:0;;;;49639:24;;:39;;;;;;;;;;;;;;;49646:6;49639:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49639:39:0;;:43;:47::i;:57::-;49620:76;;49725:9;;;;;;;;;-1:-1:-1;;;;;49725:9:0;-1:-1:-1;;;;;49707:53:0;;49761:8;49771:1;49774:19;49803:4;49810:3;49707:107;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49707:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49707:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49707:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49707:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;49707:107:0;;;;;;;;49854:6;;-1:-1:-1;;;49847:39:0;;49880:4;49847:39;;;;;;49827:17;;-1:-1:-1;;;;;;49854:6:0;;;;-1:-1:-1;49847:24:0;;-1:-1:-1;49847:39:0;;;;;-1:-1:-1;49847:39:0;;-1:-1:-1;49847:39:0;;;;;;;49854:6;49847:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49847:39:0;49937:7;;49847:39;;-1:-1:-1;49899:21:0;;49923:35;;44872:4;;49923:22;;49847:39;;49923:13;:22::i;:35::-;49976:6;;49899:59;;-1:-1:-1;49969:53:0;;-1:-1:-1;;;;;49976:6:0;49997:9;49899:59;49969:27;:53::i;:::-;50035:22;50060:36;44872:4;50060:23;50074:8;;50060:9;:13;;:23;;;;:::i;:36::-;50135:17;;50114:6;;50035:61;;-1:-1:-1;50107:62:0;;-1:-1:-1;;;;;50114:6:0;;;;50135:17;50035:61;50107:27;:62::i;:::-;50182:21;50206:42;44872:4;50206:29;:9;44831:3;50206:13;:29::i;:42::-;50287:10;;50266:6;;50182:66;;-1:-1:-1;50259:54:0;;-1:-1:-1;;;;;50266:6:0;;;;50287:10;50182:66;50259:27;:54::i;50384:711::-;50456:6;;50449:39;;;-1:-1:-1;;;50449:39:0;;50482:4;50449:39;;;;;;50428:18;;50449:46;;50493:1;;-1:-1:-1;;;;;50456:6:0;;;;50449:24;;:39;;;;;;;;;;;;;;;50456:6;50449:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50449:39:0;;:43;:46::i;:::-;50524:6;;50512:8;;50428:67;;-1:-1:-1;;;;;;50512:8:0;;;50524:6;;50512:18;50508:157;;50565:9;;50547:106;;-1:-1:-1;;;50547:106:0;;;;;;;;50565:9;50547:106;;;;;;50642:4;50547:106;;;;;;50649:3;50547:106;;;;;;;;;;;;;50616:16;50547:106;;;;;;;;-1:-1:-1;;;;;50565:9:0;;;;50547:53;;50601:10;;50616:16;;50642:4;50649:3;50547:106;;;;;;50616:16;;50547:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50547:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50547:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50547:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50508:157;50693:6;;50681:8;;-1:-1:-1;;;;;50681:8:0;;;50693:6;;50681:18;50677:157;;50734:9;;50716:106;;-1:-1:-1;;;50716:106:0;;;;;;;;50734:9;50716:106;;;;;;50811:4;50716:106;;;;;;50818:3;50716:106;;;;;;;;;;;;;50785:16;50716:106;;;;;;;;-1:-1:-1;;;;;50734:9:0;;;;50716:53;;50770:10;;50785:16;;50811:4;50818:3;50716:106;;;;;;50785:16;;50716:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50716:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50716:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50716:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50677:157;50870:8;;50863:41;;;-1:-1:-1;;;50863:41:0;;50898:4;50863:41;;;;;;50846:14;;-1:-1:-1;;;;;50870:8:0;;50863:26;;:41;;;;;;;;;;;;;;50870:8;50863:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50863:41:0;50939:8;;50932:41;;;-1:-1:-1;;;50932:41:0;;50967:4;50932:41;;;;;;50863;;-1:-1:-1;50915:14:0;;-1:-1:-1;;;;;50939:8:0;;;;50932:26;;:41;;;;;50863;;50932;;;;;;;;50939:8;50932:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50932:41:0;51002:9;;51026:8;;51036;;50984:103;;;-1:-1:-1;;;50984:103:0;;-1:-1:-1;;;;;51026:8:0;;;50984:103;;;;51036:8;;;50984:103;;;;;;;;;;;;;;;;51002:9;50984:103;;;;;;;;;;51076:4;50984:103;;;;51083:3;50984:103;;;;;50932:41;;-1:-1:-1;51002:9:0;;;50984:41;;:103;;;;;;;;;;;;;;;51002:9;;50984:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23174:422;23541:20;23580:8;;;23174:422::o;29684:742::-;29799:12;29828:7;29824:595;;;-1:-1:-1;29859:10:0;29852:17;;29824:595;29973:17;;:21;29969:439;;30236:10;30230:17;30297:15;30284:10;30280:2;30276:19;30269:44;30184:148;30379:12;30372:20;;-1:-1:-1;;;30372:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://6724db744b5c8ae00a896d619cae52088d8f0d3451473e9271efc270f10394f2
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.