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] | |||
---|---|---|---|---|---|---|---|---|---|
0xda1b6fe7b4aff15a48336d1278d4d5ff241bd6bcca15cc1281765d2353242be9 | Set Pending Rewa... | 16418743 | 6 days 18 hrs ago | 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9 | IN | 0xf8b8f07acd7f579a0a6529f99846202c1a48b690 | 0 AVAX | 0.00121342 | |
0xef7647ec180c64be7f4b23045e8012f9120916687a0089458d848344213a8a6a | Set Harvest On D... | 16418723 | 6 days 18 hrs ago | 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9 | IN | 0xf8b8f07acd7f579a0a6529f99846202c1a48b690 | 0 AVAX | 0.001330628 | |
0x0f72650d086210bb8e82bd504114a0717607ed3a0e9069e3b4221558b2367dc5 | Set Vault | 16418707 | 6 days 18 hrs ago | 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9 | IN | 0xf8b8f07acd7f579a0a6529f99846202c1a48b690 | 0 AVAX | 0.000755794 | |
0x926e70459e66e3b1037b198372d153ec14b4f8bdc77431e4f5ba83ad0cc65d37 | 0x60806040 | 16418632 | 6 days 18 hrs ago | 0x6afcd40d9c481634de71038c6f3c3f82e567a1c9 | IN | Create: StrategyCommonChefLPBsc | 0 AVAX | 0.1135526975 |
[ Download CSV Export ]
Contract Name:
StrategyCommonChefLPBsc
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 FtmScan.com on 2022-04-18 */ // 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 <0.9.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); function getAmountsOut(uint amountIn, address[] calldata path) external view 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"); _; } /** * @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/utils/StringUtils.sol pragma solidity >=0.6.0 <0.8.0; library StringUtils { function concat(string memory a, string memory b) internal pure returns (string memory) { return string(abi.encodePacked(a, b)); } } // 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; string public pendingRewardsFunctionName; // Routes address[] public outputToNativeRoute; address[] public outputToLp0Route; address[] public outputToLp1Route; event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl); event Deposit(uint256 tvl); event Withdraw(uint256 tvl); 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).token1(); require(_outputToLp0Route[0] == output, "outputToLp0Route[0] != output"); require(_outputToLp0Route[_outputToLp0Route.length - 1] == lpToken0, "outputToLp0Route[last] != lpToken0"); outputToLp0Route = _outputToLp0Route; lpToken1 = IUniswapV2Pair(want).token0(); 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); emit Deposit(balanceOf()); } } 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()) { uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX); wantBal = wantBal.sub(withdrawalFeeAmount); } IERC20(want).safeTransfer(vault, wantBal); emit Withdraw(balanceOf()); } function beforeDeposit() external override { if (harvestOnDeposit) { require(msg.sender == vault, "!vault"); _harvest(tx.origin); } } function harvest() external virtual { _harvest(tx.origin); } function harvest(address callFeeRecipient) external virtual { _harvest(callFeeRecipient); } function managerHarvest() external onlyManager { _harvest(tx.origin); } // compounds earnings and charges performance fee function _harvest(address callFeeRecipient) internal whenNotPaused { IMasterChef(chef).deposit(poolId, 0); uint256 outputBal = IERC20(output).balanceOf(address(this)); if (outputBal > 0) { chargeFees(callFeeRecipient); addLiquidity(); uint256 wantHarvested = balanceOfWant(); deposit(); lastHarvest = block.timestamp; emit StratHarvest(msg.sender, wantHarvested, balanceOf()); } } // performance fees function chargeFees(address callFeeRecipient) 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 toBurn = nativeBal.div(2); address[] memory pegPath = new address[](2); pegPath[0] = lpToken0; pegPath[1] = lpToken1; IUniswapRouterETH(unirouter).swapExactTokensForTokens(toBurn, 0, pegPath, address(this), now); uint256 pegTokenBal = IERC20(lpToken1).balanceOf(address(this)); lpToken1.call(abi.encodeWithSignature("burn(uint256)", pegTokenBal)); nativeBal = IERC20(native).balanceOf(address(this)); uint256 callFeeAmount = nativeBal.mul(callFee).div(MAX_FEE); IERC20(native).safeTransfer(callFeeRecipient, 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 setPendingRewardsFunctionName(string calldata _pendingRewardsFunctionName) external onlyManager { pendingRewardsFunctionName = _pendingRewardsFunctionName; } // returns rewards unharvested function rewardsAvailable() public view returns (uint256) { string memory signature = StringUtils.concat(pendingRewardsFunctionName, "(uint256,address)"); bytes memory result = Address.functionStaticCall( chef, abi.encodeWithSignature( signature, poolId, address(this) ) ); return abi.decode(result, (uint256)); } // native reward amount for calling harvest function callReward() public view returns (uint256) { uint256 outputBal = rewardsAvailable(); uint256 nativeOut; if (outputBal > 0) { try IUniswapRouterETH(unirouter).getAmountsOut(outputBal, outputToNativeRoute) returns (uint256[] memory amountOut) { nativeOut = amountOut[amountOut.length -1]; } catch {} } return nativeOut.mul(45).div(1000).mul(callFee).div(MAX_FEE); } 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; } } // File: contracts/BIFI/utils/IGasPrice.sol pragma solidity ^0.6.12; interface IGasPrice { function maxGasPrice() external returns (uint); } // File: contracts/BIFI/utils/GasThrottler.sol pragma solidity ^0.6.12; contract GasThrottler { bool public shouldGasThrottle = true; address public gasprice = address(0xc3e966FC63b419528e7cF587906a5782B90C1836); modifier gasThrottle() { if (shouldGasThrottle && Address.isContract(gasprice)) { require(tx.gasprice <= IGasPrice(gasprice).maxGasPrice(), "gas is too high!"); } _; } } // File: contracts/BIFI/strategies/Common/StrategyCommonChefLPBsc.sol pragma solidity ^0.6.0; contract StrategyCommonChefLPBsc is StrategyCommonChefLP, GasThrottler { 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 ) StrategyCommonChefLP( _want, _poolId, _chef, _vault, _unirouter, _keeper, _strategist, _beefyFeeRecipient, _outputToNativeRoute, _outputToLp0Route, _outputToLp1Route ) public {} function harvest() external override whenNotPaused gasThrottle { _harvest(tx.origin); } function harvest(address callFeeRecipient) external override gasThrottle { _harvest(callFeeRecipient); } }
[{"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":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","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":"callReward","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":"gasprice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","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":"pendingRewardsFunctionName","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"string","name":"_pendingRewardsFunctionName","type":"string"}],"name":"setPendingRewardsFunctionName","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":"shouldGasThrottle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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
6080604052600a600655606f60075561030960085560168054600160ff1990911617610100600160a81b03191674c3e966fc63b419528e7cf587906a5782b90c1836001790553480156200005257600080fd5b506040516200495c3803806200495c83398181016040526101608110156200007957600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b0180519751999b989a96999598949793969295919491939282019284640100000000821115620000d257600080fd5b908301906020820185811115620000e857600080fd5b82518660208202830111640100000000821117156200010657600080fd5b82525081516020918201928201910280838360005b83811015620001355781810151838201526020016200011b565b50505050905001604052602001805160405193929190846401000000008211156200015f57600080fd5b9083019060208201858111156200017557600080fd5b82518660208202830111640100000000821117156200019357600080fd5b82525081516020918201928201910280838360005b83811015620001c2578181015183820152602001620001a8565b5050505090500160405260200180516040519392919084640100000000821115620001ec57600080fd5b9083019060208201858111156200020257600080fd5b82518660208202830111640100000000821117156200022057600080fd5b82525081516020918201928201910280838360005b838110156200024f57818101518382015260200162000235565b505050509050016040525050508a8a8a8a8a8a8a8a8a8a8a8585888a8760006200027e6200073560201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19168155600180546001600160a01b03199081166001600160a01b0398891617909155600280548216968816969096179095556003805486169487169490941790935560048054851692861692909217909155600580548416918516919091179055600b805483168f8516179055600f8d9055600e8054909216928c1692909217905583518491906200036057fe5b6020026020010151600a60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550826001845103815181106200039f57fe5b602090810291909101810151600980546001600160a01b0319166001600160a01b039092169190911790558351620003de916013919086019062000c5a565b50600b60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156200042e57600080fd5b505afa15801562000443573d6000803e3d6000fd5b505050506040513d60208110156200045a57600080fd5b5051600c80546001600160a01b0319166001600160a01b03928316179055600a54835191169083906000906200048c57fe5b60200260200101516001600160a01b031614620004f0576040805162461bcd60e51b815260206004820152601d60248201527f6f7574707574546f4c7030526f7574655b305d20213d206f7574707574000000604482015290519081900360640190fd5b600c5482516001600160a01b0390911690839060001981019081106200051257fe5b60200260200101516001600160a01b031614620005615760405162461bcd60e51b8152600401808060200182810382526022815260200180620048da6022913960400191505060405180910390fd5b81516200057690601490602085019062000c5a565b50600b60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015620005c657600080fd5b505afa158015620005db573d6000803e3d6000fd5b505050506040513d6020811015620005f257600080fd5b5051600d80546001600160a01b0319166001600160a01b03928316179055600a54825191169082906000906200062457fe5b60200260200101516001600160a01b03161462000688576040805162461bcd60e51b815260206004820152601d60248201527f6f7574707574546f4c7031526f7574655b305d20213d206f7574707574000000604482015290519081900360640190fd5b600d5481516001600160a01b039091169082906000198101908110620006aa57fe5b60200260200101516001600160a01b031614620006f95760405162461bcd60e51b8152600401808060200182810382526022815260200180620048926022913960400191505060405180910390fd5b80516200070e90601590602084019062000c5a565b506200071962000739565b5050505050505050505050505050505050505050505062000ce5565b3390565b600e54600b5462000766916001600160a01b03918216911660001962000847602090811b6200214717901c565b600354600a5462000793916001600160a01b03918216911660001962000847602090811b6200214717901c565b600354600c54620007bf916001600160a01b039182169116600062000847602090811b6200214717901c565b600354600c54620007ec916001600160a01b03918216911660001962000847602090811b6200214717901c565b600354600d5462000818916001600160a01b039182169116600062000847602090811b6200214717901c565b600354600d5462000845916001600160a01b03918216911660001962000847602090811b6200214717901c565b565b801580620008d1575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015620008a157600080fd5b505afa158015620008b6573d6000803e3d6000fd5b505050506040513d6020811015620008cd57600080fd5b5051155b6200090e5760405162461bcd60e51b8152600401808060200182810382526036815260200180620049266036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620009669185916200096b16565b505050565b6060620009c7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031662000a2760201b6200225a179092919060201c565b8051909150156200096657808060200190516020811015620009e857600080fd5b5051620009665760405162461bcd60e51b815260040180806020018281038252602a815260200180620048fc602a913960400191505060405180910390fd5b606062000a38848460008562000a42565b90505b9392505050565b60608247101562000a855760405162461bcd60e51b8152600401808060200182810382526026815260200180620048b46026913960400191505060405180910390fd5b62000a908562000baa565b62000ae2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831062000b235780518252601f19909201916020918201910162000b02565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000b87576040519150601f19603f3d011682016040523d82523d6000602084013e62000b8c565b606091505b50909250905062000b9f82828662000bb0565b979650505050505050565b3b151590565b6060831562000bc157508162000a3b565b82511562000bd25782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000c1e57818101518382015260200162000c04565b50505050905090810190601f16801562000c4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b82805482825590600052602060002090810192821562000cb2579160200282015b8281111562000cb257825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000c7b565b5062000cc092915062000cc4565b5090565b5b8082111562000cc05780546001600160a01b031916815560010162000cc5565b613b9d8062000cf56000396000f3fe608060405234801561001057600080fd5b50600436106103995760003560e01c80637d38ca65116101e9578063be12a9781161010f578063dfbdc437116100ad578063f2fde38b1161007c578063f2fde38b146107f9578063fb6177871461081f578063fbfa77cf14610827578063fd63a8871461082f57610399565b8063dfbdc437146107d9578063e7a7250a146107e1578063f1a392da146107e9578063f20eaeb8146107f157610399565b8063d0e30db0116100e9578063d0e30db01461079b578063d3102589146107a3578063d801d946146107ab578063d92f3d73146107b357610399565b8063be12a97814610750578063c1a3d44c1461076d578063c7b9d5301461077557610399565b806390321e1a11610187578063a68833e511610156578063a68833e5146106fd578063ac1e502514610723578063aced166114610740578063bc063e1a1461074857610399565b806390321e1a146106dd57806397fd323d146106e5578063989ef4e3146106ed5780639f8b5da1146106f557610399565b80638912cb8b116101c35780638912cb8b146106bd5780638bc7e8c4146106c55780638da5cb5b146106cd5780638e145459146106d557610399565b80637d38ca65146106a55780638456cb59146106ad578063877562b6146106b557610399565b806336c6cf21116102ce57806359e791381161026c5780636ec232d31161023b5780636ec232d314610667578063715018a61461066f578063722713f714610677578063748747e61461067f57610399565b806359e79138146105af5780635c975abb1461061d5780635ee167c0146106395780636817031b1461064157610399565b80634641257d116102a85780634641257d1461058f5780634700d3051461059757806354518b1a1461059f578063573fef0a146105a757610399565b806336c6cf21146105625780633e0dc34e1461057f5780633f4ba83a1461058757610399565b80631fc8bc5d1161033b578063264658261161031557806326465826146104a3578063277e5cfd146104c05780632ad5a53f1461053d5780632e1a7d4d1461054557610399565b80631fc8bc5d1461048b5780631fe4a68614610493578063257ae0de1461049b57610399565b80631158808611610377578063115880861461043d57806311b0b42d1461045757806313e120b11461047b5780631f1fcd511461048357610399565b80630587f7851461039e5780630e5c011e146103f65780630e8fbb5a1461041e575b600080fd5b6103a661084c565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156103e25781810151838201526020016103ca565b505050509050019250505060405180910390f35b61041c6004803603602081101561040c57600080fd5b50356001600160a01b03166108ae565b005b61041c6004803603602081101561043457600080fd5b503515156109a9565b610445610a47565b60408051918252519081900360200190f35b61045f610ace565b604080516001600160a01b039092168252519081900360200190f35b6103a6610add565b61045f610b3d565b61045f610b4c565b61045f610b5b565b61045f610b6a565b61041c600480360360208110156104b957600080fd5b5035610b79565b6104c8610c33565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105025781810151838201526020016104ea565b50505050905090810190601f16801561052f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610445610cc1565b61041c6004803603602081101561055b57600080fd5b5035610cc6565b61045f6004803603602081101561057857600080fd5b5035610f4c565b610445610f73565b61041c610f79565b61041c611000565b61041c611145565b610445611224565b61041c61122a565b61041c600480360360208110156105c557600080fd5b810190602081018135600160201b8111156105df57600080fd5b8201836020820111156105f157600080fd5b803590602001918460018302840111600160201b8311171561061257600080fd5b50909250905061127d565b6106256112fb565b604080519115158252519081900360200190f35b61045f61130b565b61041c6004803603602081101561065757600080fd5b50356001600160a01b031661131a565b61045f61139e565b61041c6113b2565b61044561145e565b61041c6004803603602081101561069557600080fd5b50356001600160a01b031661147e565b61044561150d565b61041c611512565b61045f61158f565b61062561159e565b6104456115a7565b61045f6115ad565b61045f6115bc565b6104456115cb565b6104456115d1565b6103a661179d565b6106256117fd565b61041c6004803603602081101561071357600080fd5b50356001600160a01b0316611806565b61041c6004803603602081101561073957600080fd5b503561188a565b61045f61193b565b61044561194a565b61045f6004803603602081101561076657600080fd5b5035611950565b61044561195d565b61041c6004803603602081101561078b57600080fd5b50356001600160a01b03166119d9565b61041c611a48565b610445611bc0565b61041c611bc6565b61041c600480360360208110156107c957600080fd5b50356001600160a01b0316611c33565b610445611cb7565b610445611cbc565b610445611e63565b61045f611e69565b61041c6004803603602081101561080f57600080fd5b50356001600160a01b0316611e78565b61041c611f7a565b61045f61212b565b61045f6004803603602081101561084557600080fd5b503561213a565b606060158054806020026020016040519081016040528092919081815260200182805480156108a457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610886575b5050505050905090565b60165460ff1680156108d557506016546108d59061010090046001600160a01b0316612273565b1561099d57601660019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561092a57600080fd5b505af115801561093e573d6000803e3d6000fd5b505050506040513d602081101561095457600080fd5b50513a111561099d576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b6109a681612279565b50565b6109b16115ad565b6001600160a01b0316336001600160a01b031614806109da57506001546001600160a01b031633145b610a16576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6010805460ff1916821515179081905560ff1615610a3d57610a38600061188a565b6109a6565b6109a6600a61188a565b600e54600f54604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b158015610a9c57600080fd5b505afa158015610ab0573d6000803e3d6000fd5b505050506040513d6040811015610ac657600080fd5b505191505090565b6009546001600160a01b031681565b606060138054806020026020016040519081016040528092919081815260200182805480156108a4576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610886575050505050905090565b600b546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b610b816115ad565b6001600160a01b0316336001600160a01b03161480610baa57506001546001600160a01b031633145b610be6576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610c25576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b6012805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610cb95780601f10610c8e57610100808354040283529160200191610cb9565b820191906000526020600020905b815481529060010190602001808311610c9c57829003601f168201915b505050505081565b606f81565b6004546001600160a01b03163314610d0e576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610d5957600080fd5b505afa158015610d6d573d6000803e3d6000fd5b505050506040513d6020811015610d8357600080fd5b5051905081811015610e8057600e54600f546001600160a01b039091169063441a3e7090610db18585612427565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610e5157600080fd5b505afa158015610e65573d6000803e3d6000fd5b505050506040513d6020811015610e7b57600080fd5b505190505b81811115610e8b5750805b610e936115ad565b6001600160a01b0316326001600160a01b031614158015610eb95750610eb76112fb565b155b15610ef1576000610ee1612710610edb6006548561248990919063ffffffff16565b906124e2565b9050610eed8282612427565b9150505b600454600b54610f0e916001600160a01b03918216911683612549565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610f3761145e565b60408051918252519081900360200190a15050565b60148181548110610f5957fe5b6000918252602090912001546001600160a01b0316905081565b600f5481565b610f816115ad565b6001600160a01b0316336001600160a01b03161480610faa57506001546001600160a01b031633145b610fe6576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610fee61259b565b610ff661263e565b610ffe611a48565b565b6110086112fb565b1561104d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b60165460ff16801561107457506016546110749061010090046001600160a01b0316612273565b1561113c57601660019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156110c957600080fd5b505af11580156110dd573d6000803e3d6000fd5b505050506040513d60208110156110f357600080fd5b50513a111561113c576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b610ffe32612279565b61114d6115ad565b6001600160a01b0316336001600160a01b0316148061117657506001546001600160a01b031633145b6111b2576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6111ba611512565b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b15801561120a57600080fd5b505af115801561121e573d6000803e3d6000fd5b50505050565b61271081565b60105460ff1615610ffe576004546001600160a01b0316331461113c576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b6112856115ad565b6001600160a01b0316336001600160a01b031614806112ae57506001546001600160a01b031633145b6112ea576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6112f66012838361399e565b505050565b600054600160a01b900460ff1690565b600c546001600160a01b031681565b6113226126f6565b6001600160a01b03166113336115ad565b6001600160a01b03161461137c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ac4833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60165461010090046001600160a01b031681565b6113ba6126f6565b6001600160a01b03166113cb6115ad565b6001600160a01b031614611414576040805162461bcd60e51b81526020600482018190526024820152600080516020613ac4833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061147961146b610a47565b61147361195d565b906126fa565b905090565b6114866115ad565b6001600160a01b0316336001600160a01b031614806114af57506001546001600160a01b031633145b6114eb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b61151a6115ad565b6001600160a01b0316336001600160a01b0316148061154357506001546001600160a01b031633145b61157f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611587612754565b610ffe6127dd565b600d546001600160a01b031681565b60105460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b6000806115dc611cbc565b90506000811561176a576003546040805163d06ca61f60e01b8152600481018581526024820192835260138054604484018190526001600160a01b039095169463d06ca61f94889492939290916064909101908490801561166657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611648575b5050935050505060006040518083038186803b15801561168557600080fd5b505afa92505050801561174557506040513d6000823e601f3d908101601f1916820160405260208110156116b857600080fd5b8101908080516040519392919084600160201b8211156116d757600080fd5b9083019060208201858111156116ec57600080fd5b82518660208202830111600160201b8211171561170857600080fd5b82525081516020918201928201910280838360005b8381101561173557818101518382015260200161171d565b5050505090500160405250505060015b61174e5761176a565b8060018251038151811061175e57fe5b60200260200101519150505b6117966103e8610edb6007546117906103e8610edb602d8861248990919063ffffffff16565b90612489565b9250505090565b606060148054806020026020016040519081016040528092919081815260200182805480156108a4576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610886575050505050905090565b60165460ff1681565b61180e6126f6565b6001600160a01b031661181f6115ad565b6001600160a01b031614611868576040805162461bcd60e51b81526020600482018190526024820152600080516020613ac4833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6118926115ad565b6001600160a01b0316336001600160a01b031614806118bb57506001546001600160a01b031633145b6118f7576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6032811115611936576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b60138181548110610f5957fe5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156119a857600080fd5b505afa1580156119bc573d6000803e3d6000fd5b505050506040513d60208110156119d257600080fd5b5051905090565b6002546001600160a01b03163314611a26576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b611a506112fb565b15611a95576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611ae057600080fd5b505afa158015611af4573d6000803e3d6000fd5b505050506040513d6020811015611b0a57600080fd5b5051905080156109a657600e54600f5460408051631c57762b60e31b8152600481019290925260248201849052516001600160a01b039092169163e2bbb1589160448082019260009290919082900301818387803b158015611b6b57600080fd5b505af1158015611b7f573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611bac61145e565b60408051918252519081900360200190a150565b60085481565b611bce6115ad565b6001600160a01b0316336001600160a01b03161480611bf757506001546001600160a01b031633145b61113c576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611c3b6126f6565b6001600160a01b0316611c4c6115ad565b6001600160a01b031614611c95576040805162461bcd60e51b81526020600482018190526024820152600080516020613ac4833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b60128054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152600093606093611d7f93830182828015611d4b5780601f10611d2057610100808354040283529160200191611d4b565b820191906000526020600020905b815481529060010190602001808311611d2e57829003601f168201915b5050505050604051806040016040528060118152602001702875696e743235362c616464726573732960781b815250612855565b600e54600f5460408051602481019290925230604480840191909152815180840390910181526064909201908190528351939450606093611e43936001600160a01b031692918691819060208401908083835b60208310611df15780518252601f199092019160209182019101611dd2565b51815160209384036101000a600019018019909216911617905260405191909301819003902091850180516001600160e01b03199093166001600160e01b039093169290921790915250612910915050565b9050808060200190516020811015611e5a57600080fd5b50519250505090565b60115481565b600a546001600160a01b031681565b611e806126f6565b6001600160a01b0316611e916115ad565b6001600160a01b031614611eda576040805162461bcd60e51b81526020600482018190526024820152600080516020613ac4833981519152604482015290519081900360640190fd5b6001600160a01b038116611f1f5760405162461bcd60e51b8152600401808060200182810382526026815260200180613a326026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314611fc2576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b15801561201257600080fd5b505af1158015612026573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b15801561210157600080fd5b505af1158015612115573d6000803e3d6000fd5b505050506040513d60208110156112f657600080fd5b6004546001600160a01b031681565b60158181548110610f5957fe5b8015806121cd575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561219f57600080fd5b505afa1580156121b3573d6000803e3d6000fd5b505050506040513d60208110156121c957600080fd5b5051155b6122085760405162461bcd60e51b8152600401808060200182810382526036815260200180613b326036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526112f6908490612935565b606061226984846000856129e6565b90505b9392505050565b3b151590565b6122816112fb565b156122c6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600e54600f5460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b15801561231c57600080fd5b505af1158015612330573d6000803e3d6000fd5b5050600a54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561238157600080fd5b505afa158015612395573d6000803e3d6000fd5b505050506040513d60208110156123ab57600080fd5b505190508015612423576123be82612b42565b6123c6613284565b60006123d061195d565b90506123da611a48565b42601155337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f924108261240961145e565b6040805192835260208301919091528051918290030190a2505b5050565b60008282111561247e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b60008261249857506000612483565b828202828482816124a557fe5b041461226c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613aa36021913960400191505060405180910390fd5b6000808211612538576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161254157fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526112f6908490612935565b6125a36112fb565b6125eb576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126216126f6565b604080516001600160a01b039092168252519081900360200190a1565b600e54600b5461265d916001600160a01b039182169116600019612147565b600354600a5461267c916001600160a01b039182169116600019612147565b600354600c5461269a916001600160a01b0391821691166000612147565b600354600c546126b9916001600160a01b039182169116600019612147565b600354600d546126d7916001600160a01b0391821691166000612147565b600354600d54610ffe916001600160a01b039182169116600019612147565b3390565b60008282018381101561226c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61275c6112fb565b156127a1576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126216126f6565b600e54600b546127fb916001600160a01b0391821691166000612147565b600354600a54612819916001600160a01b0391821691166000612147565b600354600c54612837916001600160a01b0391821691166000612147565b600354600d54610ffe916001600160a01b0391821691166000612147565b606082826040516020018083805190602001908083835b6020831061288b5780518252601f19909201916020918201910161286c565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106128d35780518252601f1990920191602091820191016128b4565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052905092915050565b606061226c8383604051806060016040528060258152602001613a7e602591396137f7565b606061298a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661225a9092919063ffffffff16565b8051909150156112f6578080602001905160208110156129a957600080fd5b50516112f65760405162461bcd60e51b815260040180806020018281038252602a815260200180613b08602a913960400191505060405180910390fd5b606082471015612a275760405162461bcd60e51b8152600401808060200182810382526026815260200180613a586026913960400191505060405180910390fd5b612a3085612273565b612a81576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612ac05780518252601f199092019160209182019101612aa1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612b22576040519150601f19603f3d011682016040523d82523d6000602084013e612b27565b606091505b5091509150612b378282866138fa565b979650505050505050565b600a54604080516370a0823160e01b81523060048201529051600092612bd1926103e892610edb92602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015612b9f57600080fd5b505afa158015612bb3573d6000803e3d6000fd5b505050506040513d6020811015612bc957600080fd5b505190612489565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601330426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015612c7d57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612c5f575b50509650505050505050600060405180830381600087803b158015612ca157600080fd5b505af1158015612cb5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612cde57600080fd5b8101908080516040519392919084600160201b821115612cfd57600080fd5b908301906020820185811115612d1257600080fd5b82518660208202830111600160201b82111715612d2e57600080fd5b82525081516020918201928201910280838360005b83811015612d5b578181015183820152602001612d43565b505050509190910160408181526009546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612db657600080fd5b505afa158015612dca573d6000803e3d6000fd5b505050506040513d6020811015612de057600080fd5b505190506000612df18260026124e2565b6040805160028082526060808301845293945090916020830190803683375050600c5482519293506001600160a01b031691839150600090612e2f57fe5b6001600160a01b039283166020918202929092010152600d54825191169082906001908110612e5a57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed17398360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612f14578181015183820152602001612efc565b505050509050019650505050505050600060405180830381600087803b158015612f3d57600080fd5b505af1158015612f51573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612f7a57600080fd5b8101908080516040519392919084600160201b821115612f9957600080fd5b908301906020820185811115612fae57600080fd5b82518660208202830111600160201b82111715612fca57600080fd5b82525081516020918201928201910280838360005b83811015612ff7578181015183820152602001612fdf565b50505050919091016040818152600d546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b15801561305257600080fd5b505afa158015613066573d6000803e3d6000fd5b505050506040513d602081101561307c57600080fd5b5051600d5460408051602480820185905282518083039091018152604490910182526020810180516001600160e01b0316630852cd8d60e31b178152915181519495506001600160a01b039093169390929182918083835b602083106130f35780518252601f1990920191602091820191016130d4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613155576040519150601f19603f3d011682016040523d82523d6000602084013e61315a565b606091505b5050600954604080516370a0823160e01b815230600482015290516001600160a01b0390921692506370a08231916024808301926020929190829003018186803b1580156131a757600080fd5b505afa1580156131bb573d6000803e3d6000fd5b505050506040513d60208110156131d157600080fd5b50516007549094506000906131ef906103e890610edb908890612489565b600954909150613209906001600160a01b03168883612549565b60006132266103e8610edb6008548961248990919063ffffffff16565b600554600954919250613246916001600160a01b03908116911683612549565b60006132596103e8610edb896070612489565b600254600954919250613279916001600160a01b03908116911683612549565b505050505050505050565b600a54604080516370a0823160e01b8152306004820152905160009261330b926002926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156132d957600080fd5b505afa1580156132ed573d6000803e3d6000fd5b505050506040513d602081101561330357600080fd5b5051906124e2565b600a54600c549192506001600160a01b039182169116146134ad576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c490910190869080156133c057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116133a2575b50509650505050505050600060405180830381600087803b1580156133e457600080fd5b505af11580156133f8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561342157600080fd5b8101908080516040519392919084600160201b82111561344057600080fd5b90830190602082018581111561345557600080fd5b82518660208202830111600160201b8211171561347157600080fd5b82525081516020918201928201910280838360005b8381101561349e578181015183820152602001613486565b50505050905001604052505050505b600a54600d546001600160a01b0390811691161461364c576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526015805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c4909101908690801561355f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613541575b50509650505050505050600060405180830381600087803b15801561358357600080fd5b505af1158015613597573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156135c057600080fd5b8101908080516040519392919084600160201b8211156135df57600080fd5b9083019060208201858111156135f457600080fd5b82518660208202830111600160201b8211171561361057600080fd5b82525081516020918201928201910280838360005b8381101561363d578181015183820152602001613625565b50505050905001604052505050505b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561369757600080fd5b505afa1580156136ab573d6000803e3d6000fd5b505050506040513d60208110156136c157600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561371457600080fd5b505afa158015613728573d6000803e3d6000fd5b505050506040513d602081101561373e57600080fd5b5051600354600c54600d546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b1580156137c657600080fd5b505af11580156137da573d6000803e3d6000fd5b505050506040513d60608110156137f057600080fd5b5050505050565b606061380284612273565b61383d5760405162461bcd60e51b8152600401808060200182810382526024815260200180613ae46024913960400191505060405180910390fd5b60006060856001600160a01b0316856040518082805190602001908083835b6020831061387b5780518252601f19909201916020918201910161385c565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d80600081146138db576040519150601f19603f3d011682016040523d82523d6000602084013e6138e0565b606091505b50915091506138f08282866138fa565b9695505050505050565b6060831561390957508161226c565b8251156139195782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561396357818101518382015260200161394b565b50505050905090810190601f1680156139905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106139df5782800160ff19823516178555613a0c565b82800160010185558215613a0c579182015b82811115613a0c5782358255916020019190600101906139f1565b50613a18929150613a1c565b5090565b5b80821115613a185760008155600101613a1d56fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122019bb66d977ea54b8803697bbcc27a2f12197b7831b710a1ce517057a80224c1564736f6c634300060c00336f7574707574546f4c7031526f7574655b6c6173745d20213d206c70546f6b656e31416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6f7574707574546f4c7030526f7574655b6c6173745d20213d206c70546f6b656e305361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000000022f6fb1f5cef88210b3b25329cd19a5a10e5ecd70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521cea929c0c6935778d59fe22fedbd8f2779f030000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c900000000000000000000000060ae616a2155ee3d9a68541ba4544862310933d40000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70000000000000000000000000000000000000000000000000000000000000000300000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d7000000000000000000000000054e90234257f58075c3da580ab4f02e30a5a2d62
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000022f6fb1f5cef88210b3b25329cd19a5a10e5ecd70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521cea929c0c6935778d59fe22fedbd8f2779f030000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c900000000000000000000000060ae616a2155ee3d9a68541ba4544862310933d40000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c90000000000000000000000006afcd40d9c481634de71038c6f3c3f82e567a1c9000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70000000000000000000000000000000000000000000000000000000000000000200000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70000000000000000000000000000000000000000000000000000000000000000300000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d7000000000000000000000000054e90234257f58075c3da580ab4f02e30a5a2d62
-----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
Arg [10] : _outputToLp1Route (address[]): 0x98716351b2660f8ebbe4bafb34a07f9c4aa35e14,0xd586e7f844cea2f87f50152665bcbc2c279d8d70,0x54e90234257f58075c3da580ab4f02e30a5a2d62
-----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] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 00000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14
Arg [13] : 000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 00000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14
Arg [16] : 000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [18] : 00000000000000000000000098716351b2660f8ebbe4bafb34a07f9c4aa35e14
Arg [19] : 000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70
Arg [20] : 00000000000000000000000054e90234257f58075c3da580ab4f02e30a5a2d62
Deployed ByteCode Sourcemap
56875:975:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56033:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57729:118;;;;;;;;;;;;;;;;-1:-1:-1;57729:118:0;-1:-1:-1;;;;;57729:118:0;;:::i;:::-;;54080:262;;;;;;;;;;;;;;;;-1:-1:-1;54080:262:0;;;;:::i;52656:169::-;;;:::i;:::-;;;;;;;;;;;;;;;;46048:21;;;:::i;:::-;;;;-1:-1:-1;;;;;46048:21:0;;;;;;;;;;;;;;55799:112;;;:::i;46104:19::-;;;:::i;46222:::-;;;:::i;42217:25::-;;;:::i;42249:24::-;;;:::i;45145:200::-;;;;;;;;;;;;;;;;-1:-1:-1;45145:200:0;;:::i;46346:40::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44857:39;;;:::i;48362:732::-;;;;;;;;;;;;;;;;-1:-1:-1;48362:732:0;;:::i;46453:33::-;;;;;;;;;;;;;;;;-1:-1:-1;46453:33:0;;:::i;46248:21::-;;;:::i;55012:121::-;;;:::i;57621:100::-;;;:::i;54785:116::-;;;:::i;44956:43::-;;;:::i;49102:182::-;;;:::i;52833:180::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52833:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52833:180:0;;;;;;;;;;-1:-1:-1;52833:180:0;;-1:-1:-1;52833:180:0;-1:-1:-1;52833:180:0;:::i;40505:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;46130:23;;;:::i;44077:86::-;;;;;;;;;;;;;;;;-1:-1:-1;44077:86:0;-1:-1:-1;;;;;44077:86:0;;:::i;56464:77::-;;;:::i;38864:148::-;;;:::i;52274:113::-;;;:::i;43349:92::-;;;;;;;;;;;;;;;;-1:-1:-1;43349:92:0;-1:-1:-1;;;;;43349:92:0;;:::i;44767:41::-;;;:::i;54909:95::-;;;:::i;46160:23::-;;;:::i;46278:28::-;;;:::i;45008:30::-;;;:::i;38213:87::-;;;:::i;42307:32::-;;;:::i;45047:25::-;;;:::i;53561:511::-;;;:::i;55919:106::-;;;:::i;56419:36::-;;;:::i;44298:134::-;;;;;;;;;;;;;;;;-1:-1:-1;44298:134:0;-1:-1:-1;;;;;44298:134:0;;:::i;45353:154::-;;;;;;;;;;;;;;;;-1:-1:-1;45353:154:0;;:::i;42189:21::-;;;:::i;44815:35::-;;;:::i;46410:36::-;;;;;;;;;;;;;;;;-1:-1:-1;46410:36:0;;:::i;52454:118::-;;;:::i;43586:155::-;;;;;;;;;;;;;;;;-1:-1:-1;43586:155:0;-1:-1:-1;;;;;43586:155:0;;:::i;48102:252::-;;;:::i;45079:57::-;;;:::i;49487:85::-;;;:::i;43873:102::-;;;;;;;;;;;;;;;;-1:-1:-1;43873:102:0;-1:-1:-1;;;;;43873:102:0;;:::i;44905:44::-;;;:::i;53057:447::-;;;:::i;46313:26::-;;;:::i;46076:21::-;;;:::i;39167:244::-;;;;;;;;;;;;;;;;-1:-1:-1;39167:244:0;-1:-1:-1;;;;;39167:244:0;;:::i;54442:261::-;;;:::i;42280:20::-;;;:::i;46493:33::-;;;;;;;;;;;;;;;;-1:-1:-1;46493:33:0;;:::i;56033:106::-;56079:16;56115;56108:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56108:23:0;;;;;;;;;;;;;;;;;;;;;;;56033:106;:::o;57729:118::-;56588:17;;;;:49;;;;-1:-1:-1;56628:8:0;;56609:28;;56628:8;;;-1:-1:-1;;;;;56628:8:0;56609:18;:28::i;:::-;56584:159;;;56687:8;;;;;;;;;-1:-1:-1;;;;;56687:8:0;-1:-1:-1;;;;;56677:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56677:33:0;56662:11;:48;;56654:77;;;;;-1:-1:-1;;;56654:77:0;;;;;;;;;;;;-1:-1:-1;;;56654:77:0;;;;;;;;;;;;;;;57813:26:::1;57822:16;57813:8;:26::i;:::-;57729:118:::0;:::o;54080:262::-;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;54165:16:::1;:36:::0;;-1:-1:-1;;54165:36:0::1;::::0;::::1;;;::::0;;;;::::1;54218:16;54214:121;;;54251:19;54268:1;54251:16;:19::i;:::-;54214:121;;;54303:20;54320:2;54303:16;:20::i;52656:169::-:0;52755:4;;52770:6;;52743:49;;;-1:-1:-1;;;52743:49:0;;;;;;;;;52786:4;52743:49;;;;;;52702:7;;;;-1:-1:-1;;;;;52755:4:0;;;;52743:26;;:49;;;;;;;;;;52755:4;52743:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52743:49:0;;-1:-1:-1;;52656:169:0;:::o;46048:21::-;;;-1:-1:-1;;;;;46048:21:0;;:::o;55799:112::-;55848:16;55884:19;55877:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55877:26:0;;;;;;;;;;;;;;;;;;;;;;55799:112;:::o;46104:19::-;;;-1:-1:-1;;;;;46104:19:0;;:::o;46222:::-;;;-1:-1:-1;;;;;46222:19:0;;:::o;42217:25::-;;;-1:-1:-1;;;;;42217:25:0;;:::o;42249:24::-;;;-1:-1:-1;;;;;42249:24:0;;:::o;45145:200::-;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;44893:3:::1;45217:4;:20;;45209:37;;;::::0;;-1:-1:-1;;;45209:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45209:37:0;;;;;;;;;;;;;::::1;;45267:7;:14:::0;;;45303:24;:34:::1;45292:8;:45:::0;45145:200::o;46346:40::-;;;;;;;;;;;;;;;-1:-1:-1;;46346:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44857:39::-;44893:3;44857:39;:::o;48362:732::-;48439:5;;-1:-1:-1;;;;;48439:5:0;48425:10;:19;48417:38;;;;;-1:-1:-1;;;48417:38:0;;;;;;;;;;;;-1:-1:-1;;;48417:38:0;;;;;;;;;;;;;;;48493:4;;48486:37;;;-1:-1:-1;;;48486:37:0;;48517:4;48486:37;;;;;;48468:15;;-1:-1:-1;;;;;48493:4:0;;48486:22;;:37;;;;;;;;;;;;;;48493:4;48486:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48486:37:0;;-1:-1:-1;48540:17:0;;;48536:168;;;48586:4;;48601:6;;-1:-1:-1;;;;;48586:4:0;;;;48574:26;;48609:20;:7;48621;48609:11;:20::i;:::-;48574:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48662:4:0;;48655:37;;;-1:-1:-1;;;48655:37:0;;48686:4;48655:37;;;;;;-1:-1:-1;;;;;48662:4:0;;;;-1:-1:-1;48655:22:0;;-1:-1:-1;48655:37:0;;;;;;;;;;;;;;;48662:4;48655:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48655:37:0;;-1:-1:-1;48536:168:0;48730:7;48720;:17;48716:67;;;-1:-1:-1;48764:7:0;48716:67;48812:7;:5;:7::i;:::-;-1:-1:-1;;;;;48799:20:0;:9;-1:-1:-1;;;;;48799:20:0;;;:33;;;;;48824:8;:6;:8::i;:::-;48823:9;48799:33;48795:199;;;48849:27;48879:46;44994:5;48879:26;48891:13;;48879:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;48849:76;-1:-1:-1;48950:32:0;:7;48849:76;48950:11;:32::i;:::-;48940:42;;48795:199;;49032:5;;49013:4;;49006:41;;-1:-1:-1;;;;;49013:4:0;;;;49032:5;49039:7;49006:25;:41::i;:::-;49065:21;49074:11;:9;:11::i;:::-;49065:21;;;;;;;;;;;;;;;48362:732;;:::o;46453:33::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46453:33:0;;-1:-1:-1;46453:33:0;:::o;46248:21::-;;;;:::o;55012:121::-;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;55063:10:::1;:8;:10::i;:::-;55086:17;:15;:17::i;:::-;55116:9;:7;:9::i;:::-;55012:121::o:0;57621:100::-;40831:8;:6;:8::i;:::-;40830:9;40822:38;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;;;;56588:17:::1;::::0;::::1;;:49:::0;::::1;;;-1:-1:-1::0;56628:8:0::1;::::0;56609:28:::1;::::0;56628:8:::1;::::0;::::1;-1:-1:-1::0;;;;;56628:8:0::1;56609:18;:28::i;:::-;56584:159;;;56687:8;;;;;;;;;-1:-1:-1::0;;;;;56687:8:0::1;-1:-1:-1::0;;;;;56677:31:0::1;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;56677:33:0;56662:11:::1;:48;;56654:77;;;::::0;;-1:-1:-1;;;56654:77:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;56654:77:0;;;;;;;;;;;;;::::1;;57695:19:::2;57704:9;57695:8;:19::i;54785:116::-:0;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;54832:7:::1;:5;:7::i;:::-;54862:4;::::0;54886:6:::1;::::0;54850:43:::1;::::0;;-1:-1:-1;;;54850:43:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;54862:4:0;;::::1;::::0;54850:35:::1;::::0;:43;;;;;54862:4:::1;::::0;54850:43;;;;;;;;54862:4;;54850:43;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54785:116::o:0;44956:43::-;44994:5;44956:43;:::o;49102:182::-;49160:16;;;;49156:121;;;49215:5;;-1:-1:-1;;;;;49215:5:0;49201:10;:19;49193:38;;;;;-1:-1:-1;;;49193:38:0;;;;;;;;;;;;-1:-1:-1;;;49193:38:0;;;;;;;;;;;;;;52833:180;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;52949:56:::1;:26;52978:27:::0;;52949:56:::1;:::i;:::-;;52833:180:::0;;:::o;40505:86::-;40552:4;40576:7;-1:-1:-1;;;40576:7:0;;;;;40505:86::o;46130:23::-;;;-1:-1:-1;;;;;46130:23:0;;:::o;44077:86::-;38444:12;:10;:12::i;:::-;-1:-1:-1;;;;;38433:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38433:23:0;;38425:68;;;;;-1:-1:-1;;;38425:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38425:68:0;;;;;;;;;;;;;;;44141:5:::1;:14:::0;;-1:-1:-1;;;;;;44141:14:0::1;-1:-1:-1::0;;;;;44141:14:0;;;::::1;::::0;;;::::1;::::0;;44077:86::o;56464:77::-;;;;;;-1:-1:-1;;;;;56464:77:0;;:::o;38864:148::-;38444:12;:10;:12::i;:::-;-1:-1:-1;;;;;38433:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38433:23:0;;38425:68;;;;;-1:-1:-1;;;38425:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38425:68:0;;;;;;;;;;;;;;;38971:1:::1;38955:6:::0;;38934:40:::1;::::0;-1:-1:-1;;;;;38955:6:0;;::::1;::::0;38934:40:::1;::::0;38971:1;;38934:40:::1;39002:1;38985:19:::0;;-1:-1:-1;;;;;;38985:19:0::1;::::0;;38864:148::o;52274:113::-;52316:7;52343:36;52363:15;:13;:15::i;:::-;52343;:13;:15::i;:::-;:19;;:36::i;:::-;52336:43;;52274:113;:::o;43349:92::-;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;43417:6:::1;:16:::0;;-1:-1:-1;;;;;;43417:16:0::1;-1:-1:-1::0;;;;;43417:16:0;;;::::1;::::0;;;::::1;::::0;;43349:92::o;44767:41::-;44805:3;44767:41;:::o;54909:95::-;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;54956:8:::1;:6;:8::i;:::-;54977:19;:17;:19::i;46160:23::-:0;;;-1:-1:-1;;;;;46160:23:0;;:::o;46278:28::-;;;;;;:::o;45008:30::-;;;;:::o;38213:87::-;38259:7;38286:6;-1:-1:-1;;;;;38286:6:0;38213:87;:::o;42307:32::-;;;-1:-1:-1;;;;;42307:32:0;;:::o;45047:25::-;;;;:::o;53561:511::-;53604:7;53624:17;53644:18;:16;:18::i;:::-;53624:38;-1:-1:-1;53673:17:0;53705:13;;53701:291;;53757:9;;53739:74;;;-1:-1:-1;;;53739:74:0;;;;;;;;;;;;;;53793:19;53739:74;;;;;;;;-1:-1:-1;;;;;53757:9:0;;;;53739:42;;53782:9;;53793:19;;53739:74;;;;;;;;53793:19;;53739:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53739:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53739:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53739:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53739:74:0;;;;;;;;;;;;-1:-1:-1;53739:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53735:246;;;;;53913:9;53941:1;53923:9;:16;:19;53913:30;;;;;;;;;;;;;;53901:42;;53831:128;53735:246;54011:53;44846:4;54011:40;54043:7;;54011:27;54033:4;54011:17;54025:2;54011:9;:13;;:17;;;;:::i;:27::-;:31;;:40::i;:53::-;54004:60;;;;53561:511;:::o;55919:106::-;55965:16;56001;55994:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55994:23:0;;;;;;;;;;;;;;;;;;;;;;55919:106;:::o;56419:36::-;;;;;;:::o;44298:134::-;38444:12;:10;:12::i;:::-;-1:-1:-1;;;;;38433:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38433:23:0;;38425:68;;;;;-1:-1:-1;;;38425:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38425:68:0;;;;;;;;;;;;;;;44386:17:::1;:38:::0;;-1:-1:-1;;;;;;44386:38:0::1;-1:-1:-1::0;;;;;44386:38:0;;;::::1;::::0;;;::::1;::::0;;44298:134::o;45353:154::-;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;;44947:2:::1;45431:4;:26;;45423:43;;;::::0;;-1:-1:-1;;;45423:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45423:43:0;;;;;;;;;;;;;::::1;;45479:13;:20:::0;45353:154::o;42189:21::-;;;-1:-1:-1;;;;;42189:21:0;;:::o;44815:35::-;44846:4;44815:35;:::o;46410:36::-;;;;;;;;;;52454:118;52534:4;;52527:37;;;-1:-1:-1;;;52527:37:0;;52558:4;52527:37;;;;;;52500:7;;-1:-1:-1;;;;;52534:4:0;;52527:22;;:37;;;;;;;;;;;;;;52534:4;52527:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52527:37:0;;-1:-1:-1;52454:118:0;:::o;43586:155::-;43672:10;;-1:-1:-1;;;;;43672:10:0;43658;:24;43650:48;;;;;-1:-1:-1;;;43650:48:0;;;;;;;;;;;;-1:-1:-1;;;43650:48:0;;;;;;;;;;;;;;;43709:10;:24;;-1:-1:-1;;;;;;43709:24:0;-1:-1:-1;;;;;43709:24:0;;;;;;;;;;43586:155::o;48102:252::-;40831:8;:6;:8::i;:::-;40830:9;40822:38;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;;;;48178:4:::1;::::0;48171:37:::1;::::0;;-1:-1:-1;;;48171:37:0;;48202:4:::1;48171:37;::::0;::::1;::::0;;;48153:15:::1;::::0;-1:-1:-1;;;;;48178:4:0::1;::::0;48171:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;48178:4;48171:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48171:37:0;;-1:-1:-1;48225:11:0;;48221:126:::1;;48265:4;::::0;48279:6:::1;::::0;48253:42:::1;::::0;;-1:-1:-1;;;48253:42:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;48265:4:0;;::::1;::::0;48253:25:::1;::::0;:42;;;;;48265:4:::1;::::0;48253:42;;;;;;;;48265:4;;48253:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48315:20;48323:11;:9;:11::i;:::-;48315:20;::::0;;;;;;;;;;::::1;::::0;;::::1;40871:1;48102:252::o:0;45079:57::-;;;;:::o;49487:85::-;43166:7;:5;:7::i;:::-;-1:-1:-1;;;;;43152:21:0;:10;-1:-1:-1;;;;;43152:21:0;;:45;;;-1:-1:-1;43191:6:0;;-1:-1:-1;;;;;43191:6:0;43177:10;:20;43152:45;43144:66;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;-1:-1:-1;;;43144:66:0;;;;;;;;;;;;;;43873:102;38444:12;:10;:12::i;:::-;-1:-1:-1;;;;;38433:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38433:23:0;;38425:68;;;;;-1:-1:-1;;;38425:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38425:68:0;;;;;;;;;;;;;;;43945:9:::1;:22:::0;;-1:-1:-1;;;;;;43945:22:0::1;-1:-1:-1::0;;;;;43945:22:0;;;::::1;::::0;;;::::1;::::0;;43873:102::o;44905:44::-;44947:2;44905:44;:::o;53057:447::-;53171:26;53152:67;;;;;;;;-1:-1:-1;;53152:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53106:7;;53126:23;;53152:67;;;;53171:26;53152:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53152:67:0;;;:18;:67::i;:::-;53293:4;;53383:6;;53313:123;;;;;;;;;;53416:4;53313:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;53126:93;;-1:-1:-1;53230:19:0;;53252:195;;-1:-1:-1;;;;;53293:4:0;;53313:123;53126:93;;53313:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53313:123:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53313:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;53313:123:0;;;-1:-1:-1;;;;;53313:123:0;;;;;;;;;;-1:-1:-1;53252:26:0;;-1:-1:-1;;53252:195:0:i;:::-;53230:217;;53478:6;53467:29;;;;;;;;;;;;;;;-1:-1:-1;53467:29:0;;-1:-1:-1;;;53057:447:0;:::o;46313:26::-;;;;:::o;46076:21::-;;;-1:-1:-1;;;;;46076:21:0;;:::o;39167:244::-;38444:12;:10;:12::i;:::-;-1:-1:-1;;;;;38433:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38433:23:0;;38425:68;;;;;-1:-1:-1;;;38425:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38425:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39256:22:0;::::1;39248:73;;;;-1:-1:-1::0;;;39248:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39358:6;::::0;;39337:38:::1;::::0;-1:-1:-1;;;;;39337:38:0;;::::1;::::0;39358:6;::::1;::::0;39337:38:::1;::::0;::::1;39386:6;:17:::0;;-1:-1:-1;;;;;;39386:17:0::1;-1:-1:-1::0;;;;;39386:17:0;;;::::1;::::0;;;::::1;::::0;;39167:244::o;54442:261::-;54507:5;;-1:-1:-1;;;;;54507:5:0;54493:10;:19;54485:38;;;;;-1:-1:-1;;;54485:38:0;;;;;;;;;;;;-1:-1:-1;;;54485:38:0;;;;;;;;;;;;;;;54548:4;;54572:6;;54536:43;;;-1:-1:-1;;;54536:43:0;;;;;;;;;;-1:-1:-1;;;;;54548:4:0;;;;54536:35;;:43;;;;;54548:4;;54536:43;;;;;;;;54548:4;;54536:43;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54617:4:0;;54610:37;;;-1:-1:-1;;;54610:37:0;;54641:4;54610:37;;;;;;54592:15;;-1:-1:-1;;;;;;54617:4:0;;;;-1:-1:-1;54610:22:0;;:37;;;;;;;;;;;;;;54617:4;54610:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54610:37:0;54665:4;;54680:5;;;54658:37;;;-1:-1:-1;;;54658:37:0;;-1:-1:-1;;;;;54680:5:0;;;54658:37;;;;;;;;;;;;;;54610;;-1:-1:-1;54665:4:0;;;;54658:21;;:37;;;;;54610;;54658;;;;;;;;54665:4;;54658:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42280:20;;;-1:-1:-1;;;;;42280:20:0;;:::o;46493:33::-;;;;;;;;;;31755:622;32125:10;;;32124:62;;-1:-1:-1;32141:39:0;;;-1:-1:-1;;;32141:39:0;;32165:4;32141:39;;;;-1:-1:-1;;;;;32141:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32141:39:0;:44;32124:62;32116:152;;;;-1:-1:-1;;;32116:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32306:62;;;-1:-1:-1;;;;;32306:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32306:62:0;-1:-1:-1;;;32306:62:0;;;32279:90;;32299:5;;32279:19;:90::i;26091:195::-;26194:12;26226:52;26248:6;26256:4;26262:1;26265:12;26226:21;:52::i;:::-;26219:59;;26091:195;;;;;;:::o;23173:422::-;23540:20;23579:8;;;23173:422::o;49635:501::-;40831:8;:6;:8::i;:::-;40830:9;40822:38;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;;;;49725:4:::1;::::0;49739:6:::1;::::0;49713:36:::1;::::0;;-1:-1:-1;;;49713:36:0;;::::1;::::0;::::1;::::0;;;;49725:4:::1;49713:36:::0;;;;;;;;-1:-1:-1;;;;;49725:4:0;;::::1;::::0;49713:25:::1;::::0;:36;;;;;49725:4;49713:36;;;;;;49725:4;;49713:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;49787:6:0::1;::::0;49780:39:::1;::::0;;-1:-1:-1;;;49780:39:0;;49813:4:::1;49780:39;::::0;::::1;::::0;;;49760:17:::1;::::0;-1:-1:-1;;;;;;49787:6:0;;::::1;::::0;-1:-1:-1;49780:24:0::1;::::0;:39;;;;;::::1;::::0;;;;;;;;49787:6;49780:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49780:39:0;;-1:-1:-1;49834:13:0;;49830:299:::1;;49864:28;49875:16;49864:10;:28::i;:::-;49907:14;:12;:14::i;:::-;49936:21;49960:15;:13;:15::i;:::-;49936:39;;49990:9;:7;:9::i;:::-;50030:15;50016:11;:29:::0;50078:10:::1;50065:52;50090:13:::0;50105:11:::1;:9;:11::i;:::-;50065:52;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;49830:299;;40871:1;49635:501:::0;:::o;7157:158::-;7215:7;7248:1;7243;:6;;7235:49;;;;;-1:-1:-1;;;7235:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7302:5:0;;;7157:158;;;;;:::o;7574:220::-;7632:7;7656:6;7652:20;;-1:-1:-1;7671:1:0;7664:8;;7652:20;7695:5;;;7699:1;7695;:5;:1;7719:5;;;;;:10;7711:56;;;;-1:-1:-1;;;7711:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8272:153;8330:7;8362:1;8358;:5;8350:44;;;;;-1:-1:-1;;;8350:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8416:1;8412;:5;;;;;;;8272:153;-1:-1:-1;;;8272:153:0:o;31096:177::-;31206:58;;;-1:-1:-1;;;;;31206:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31206:58:0;-1:-1:-1;;;31206:58:0;;;31179:86;;31199:5;;31179:19;:86::i;41564:120::-;41108:8;:6;:8::i;:::-;41100:41;;;;;-1:-1:-1;;;41100:41:0;;;;;;;;;;;;-1:-1:-1;;;41100:41:0;;;;;;;;;;;;;;;41633:5:::1;41623:15:::0;;-1:-1:-1;;;;41623:15:0::1;::::0;;41654:22:::1;41663:12;:10;:12::i;:::-;41654:22;::::0;;-1:-1:-1;;;;;41654:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;41564:120::o:0;55141:395::-;55213:4;;55195;;55188:43;;-1:-1:-1;;;;;55195:4:0;;;;55213;-1:-1:-1;;55188:24:0;:43::i;:::-;55269:9;;55249:6;;55242:50;;-1:-1:-1;;;;;55249:6:0;;;;55269:9;-1:-1:-1;;55242:26:0;:50::i;:::-;55334:9;;55312:8;;55305:42;;-1:-1:-1;;;;;55312:8:0;;;;55334:9;;55305:28;:42::i;:::-;55387:9;;55365:8;;55358:52;;-1:-1:-1;;;;;55365:8:0;;;;55387:9;-1:-1:-1;;55358:28:0;:52::i;:::-;55452:9;;55430:8;;55423:42;;-1:-1:-1;;;;;55430:8:0;;;;55452:9;;55423:28;:42::i;:::-;55505:9;;55483:8;;55476:52;;-1:-1:-1;;;;;55483:8:0;;;;55505:9;-1:-1:-1;;55476:28:0;:52::i;737:106::-;825:10;737:106;:::o;6695:179::-;6753:7;6785:5;;;6809:6;;;;6801:46;;;;;-1:-1:-1;;;6801:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;41305:118;40831:8;:6;:8::i;:::-;40830:9;40822:38;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;-1:-1:-1;;;40822:38:0;;;;;;;;;;;;;;;41365:7:::1;:14:::0;;-1:-1:-1;;;;41365:14:0::1;-1:-1:-1::0;;;41365:14:0::1;::::0;;41395:20:::1;41402:12;:10;:12::i;55544:247::-:0;55618:4;;55600;;55593:33;;-1:-1:-1;;;;;55600:4:0;;;;55618;;55593:24;:33::i;:::-;55664:9;;55644:6;;55637:40;;-1:-1:-1;;;;;55644:6:0;;;;55664:9;;55637:26;:40::i;:::-;55717:9;;55695:8;;55688:42;;-1:-1:-1;;;;;55695:8:0;;;;55717:9;;55688:28;:42::i;:::-;55770:9;;55748:8;;55741:42;;-1:-1:-1;;;;;55748:8:0;;;;55770:9;;55741:28;:42::i;45627:144::-;45700:13;45757:1;45760;45740:22;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45740:22:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45740:22:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45740:22:0;;;;;;;;;;;;;-1:-1:-1;;45740:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45726:37;;45627:144;;;;:::o;27858:199::-;27944:12;27976:73;27995:6;28003:4;27976:73;;;;;;;;;;;;;;;;;:18;:73::i;33401:761::-;33825:23;33851:69;33879:4;33851:69;;;;;;;;;;;;;;;;;33859:5;-1:-1:-1;;;;;33851:27:0;;;:69;;;;;:::i;:::-;33935:17;;33825:95;;-1:-1:-1;33935:21:0;33931:224;;34077:10;34066:30;;;;;;;;;;;;;;;-1:-1:-1;34066:30:0;34058:85;;;;-1:-1:-1;;;34058:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27143:530;27270:12;27328:5;27303:21;:30;;27295:81;;;;-1:-1:-1;;;27295:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27395:18;27406:6;27395:10;:18::i;:::-;27387:60;;;;;-1:-1:-1;;;27387:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27521:12;27535:23;27562:6;-1:-1:-1;;;;;27562:11:0;27582:5;27590:4;27562:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27562:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27520:75;;;;27613:52;27631:7;27640:10;27652:12;27613:17;:52::i;:::-;27606:59;27143:530;-1:-1:-1;;;;;;;27143:530:0:o;50169:1257::-;50257:6;;50250:39;;;-1:-1:-1;;;50250:39:0;;50283:4;50250:39;;;;;;50231:16;;50250:57;;50302:4;;50250:47;;50294:2;;-1:-1:-1;;;;;50257:6:0;;;;50250:24;;:39;;;;;;;;;;;;;;;50257:6;50250:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50250:39:0;;:43;:47::i;:57::-;50231:76;;50336:9;;;;;;;;;-1:-1:-1;;;;;50336:9:0;-1:-1:-1;;;;;50318:53:0;;50372:8;50382:1;50385:19;50414:4;50421:3;50318:107;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50318:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50318:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50318:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50318:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50318:107:0;;;;;;;;;;;;-1:-1:-1;50318:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;50318:107:0;;;;;;;;50465:6;;-1:-1:-1;;;50458:39:0;;50491:4;50458:39;;;;;;50438:17;;-1:-1:-1;;;;;;50465:6:0;;;;-1:-1:-1;50458:24:0;;-1:-1:-1;50458:39:0;;;;;-1:-1:-1;50458:39:0;;-1:-1:-1;50458:39:0;;;;;;;50465:6;50458:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50458:39:0;;-1:-1:-1;50508:14:0;50525:16;50458:39;50539:1;50525:13;:16::i;:::-;50581;;;50595:1;50581:16;;;50554:24;50581:16;;;;;50508:33;;-1:-1:-1;50581:16:0;;;;;;;;;;-1:-1:-1;;50621:8:0;;50608:10;;;;-1:-1:-1;;;;;;50621:8:0;;50608:10;;-1:-1:-1;50621:8:0;;50608:10;;;;-1:-1:-1;;;;;50608:21:0;;;:10;;;;;;;;;:21;50653:8;;50640:10;;50653:8;;;50640:7;;50653:8;;50640:10;;;;;;;;;;;:21;-1:-1:-1;;;;;50640:21:0;;;-1:-1:-1;;;;;50640:21:0;;;;;50692:9;;;;;;;;;-1:-1:-1;;;;;50692:9:0;-1:-1:-1;;;;;50674:53:0;;50728:6;50736:1;50739:7;50756:4;50763:3;50674:93;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50674:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50674:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50674:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50674:93:0;;;;;;;;;;;;-1:-1:-1;50674:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;50674:93:0;;;;;;;;50807:8;;-1:-1:-1;;;50800:41:0;;50835:4;50800:41;;;;;;50778:19;;-1:-1:-1;;;;;;50807:8:0;;;;-1:-1:-1;50800:26:0;;-1:-1:-1;50800:41:0;;;;;-1:-1:-1;50800:41:0;;-1:-1:-1;50800:41:0;;;;;;;50807:8;50800:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50800:41:0;50852:8;;50866:53;;;;;;;;;;;;;;;;;;;;;;;;;;50800:41;50866:53;;;;-1:-1:-1;;;;;50866:53:0;-1:-1:-1;;;50866:53:0;;;50852:68;;;;50800:41;;-1:-1:-1;;;;;;50852:8:0;;;;50866:53;;50852:68;;;;;50866:53;50852:68;;;;;;;;;;-1:-1:-1;;50852:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50952:6:0;;50945:39;;;-1:-1:-1;;;50945:39:0;;50978:4;50945:39;;;;;;-1:-1:-1;;;;;50952:6:0;;;;-1:-1:-1;50945:24:0;;:39;;;;;;;;;;;;;;50952:6;50945:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50945:39:0;51035:7;;50945:39;;-1:-1:-1;50997:21:0;;51021:35;;44846:4;;51021:22;;50945:39;;51021:13;:22::i;:35::-;51074:6;;50997:59;;-1:-1:-1;51067:60:0;;-1:-1:-1;;;;;51074:6:0;51095:16;50997:59;51067:27;:60::i;:::-;51140:22;51165:36;44846:4;51165:23;51179:8;;51165:9;:13;;:23;;;;:::i;:36::-;51240:17;;51219:6;;51140:61;;-1:-1:-1;51212:62:0;;-1:-1:-1;;;;;51219:6:0;;;;51240:17;51140:61;51212:27;:62::i;:::-;51287:21;51311:42;44846:4;51311:29;:9;44805:3;51311:13;:29::i;:42::-;51392:10;;51371:6;;51287:66;;-1:-1:-1;51364:54:0;;-1:-1:-1;;;;;51371:6:0;;;;51392:10;51287:66;51364:27;:54::i;:::-;50169:1257;;;;;;;;;:::o;51489:711::-;51561:6;;51554:39;;;-1:-1:-1;;;51554:39:0;;51587:4;51554:39;;;;;;51533:18;;51554:46;;51598:1;;-1:-1:-1;;;;;51561:6:0;;;;51554:24;;:39;;;;;;;;;;;;;;;51561:6;51554:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51554:39:0;;:43;:46::i;:::-;51629:6;;51617:8;;51533:67;;-1:-1:-1;;;;;;51617:8:0;;;51629:6;;51617:18;51613:157;;51670:9;;51652:106;;-1:-1:-1;;;51652:106:0;;;;;;;;51670:9;51652:106;;;;;;51747:4;51652:106;;;;;;51754:3;51652:106;;;;;;;;;;;;;51721:16;51652:106;;;;;;;;-1:-1:-1;;;;;51670:9:0;;;;51652:53;;51706:10;;51721:16;;51747:4;51754:3;51652:106;;;;;;51721:16;;51652:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51652:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51652:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51652:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51652:106:0;;;;;;;;;;;;-1:-1:-1;51652:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51613:157;51798:6;;51786:8;;-1:-1:-1;;;;;51786:8:0;;;51798:6;;51786:18;51782:157;;51839:9;;51821:106;;-1:-1:-1;;;51821:106:0;;;;;;;;51839:9;51821:106;;;;;;51916:4;51821:106;;;;;;51923:3;51821:106;;;;;;;;;;;;;51890:16;51821:106;;;;;;;;-1:-1:-1;;;;;51839:9:0;;;;51821:53;;51875:10;;51890:16;;51916:4;51923:3;51821:106;;;;;;51890:16;;51821:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51821:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51821:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51821:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51821:106:0;;;;;;;;;;;;-1:-1:-1;51821:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51782:157;51975:8;;51968:41;;;-1:-1:-1;;;51968:41:0;;52003:4;51968:41;;;;;;51951:14;;-1:-1:-1;;;;;51975:8:0;;51968:26;;:41;;;;;;;;;;;;;;51975:8;51968:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51968:41:0;52044:8;;52037:41;;;-1:-1:-1;;;52037:41:0;;52072:4;52037:41;;;;;;51968;;-1:-1:-1;52020:14:0;;-1:-1:-1;;;;;52044:8:0;;;;52037:26;;:41;;;;;51968;;52037;;;;;;;;52044:8;52037:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52037:41:0;52107:9;;52131:8;;52141;;52089:103;;;-1:-1:-1;;;52089:103:0;;-1:-1:-1;;;;;52131:8:0;;;52089:103;;;;52141:8;;;52089:103;;;;;;;;;;;;;;;;52107:9;52089:103;;;;;;;;;;52181:4;52089:103;;;;52188:3;52089:103;;;;;52037:41;;-1:-1:-1;52107:9:0;;;52089:41;;:103;;;;;;;;;;;;;;;52107:9;;52089:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51489:711:0:o;28249:422::-;28363:12;28396:18;28407:6;28396:10;:18::i;:::-;28388:67;;;;-1:-1:-1;;;28388:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28529:12;28543:23;28570:6;-1:-1:-1;;;;;28570:17:0;28588:4;28570:23;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28570:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28528:65;;;;28611:52;28629:7;28638:10;28650:12;28611:17;:52::i;:::-;28604:59;28249:422;-1:-1:-1;;;;;;28249:422:0:o;29683:742::-;29798:12;29827:7;29823:595;;;-1:-1:-1;29858:10:0;29851:17;;29823:595;29972:17;;:21;29968:439;;30235:10;30229:17;30296:15;30283:10;30279:2;30275:19;30268:44;30183:148;30378:12;30371:20;;-1:-1:-1;;;30371:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;
Swarm Source
ipfs://19bb66d977ea54b8803697bbcc27a2f12197b7831b710a1ce517057a80224c15
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.