Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
StrategyCommonMiniChefLP
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-06-22 */ // Sources flattened with hardhat v2.4.0 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; pragma abicoder v1; /** * @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/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^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, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 override returns (uint8) { return 18; } /** * @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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); 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] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 += amount; _balances[account] += 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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= 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 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/[email protected] pragma solidity ^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/utils/[email protected] pragma solidity ^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 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _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 @openzeppelin/contracts/utils/math/[email protected] pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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). * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File contracts/BIFI/interfaces/common/IUniswapRouterETH.sol pragma solidity ^0.8.4; interface IUniswapRouterETH { function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); } // File contracts/BIFI/interfaces/common/IUniswapV2Pair.sol pragma solidity ^0.8.4; interface IUniswapV2Pair { function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); } // File contracts/BIFI/interfaces/sushi/IMiniChefV2.sol pragma solidity ^0.8.4; interface IMiniChefV2 { struct UserInfo { uint256 amount; uint256 rewardDebt; } struct PoolInfo { uint128 accSushiPerShare; uint64 lastRewardTime; uint64 allocPoint; } function poolLength() external view returns (uint256); function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function deposit(uint256 pid, uint256 amount, address to) external; function withdraw(uint256 pid, uint256 amount, address to) external; function harvest(uint256 pid, address to) external; function withdrawAndHarvest(uint256 pid, uint256 amount, address to) external; function emergencyWithdraw(uint256 pid, address to) external; } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^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 () { 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/security/[email protected] pragma solidity ^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 () { _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.8.4; 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 ) { keeper = _keeper; strategist = _strategist; unirouter = _unirouter; vault = _vault; beefyFeeRecipient = _beefyFeeRecipient; } // checks that caller is either owner or keeper. modifier onlyManager() { require(msg.sender == owner() || msg.sender == keeper, "!manager"); _; } // verifies that the caller is not a contract. modifier onlyEOA() { require(msg.sender == tx.origin, "!EOA"); _; } /** * @dev Updates address of the strat keeper. * @param _keeper new keeper address. */ function setKeeper(address _keeper) external onlyManager { keeper = _keeper; } /** * @dev Updates address where strategist fee earnings will go. * @param _strategist new strategist address. */ function setStrategist(address _strategist) external { require(msg.sender == strategist, "!strategist"); strategist = _strategist; } /** * @dev Updates router that will be used for swaps. * @param _unirouter new unirouter address. */ function setUnirouter(address _unirouter) external onlyOwner { unirouter = _unirouter; } /** * @dev Updates parent vault. * @param _vault new vault address. */ function setVault(address _vault) external onlyOwner { vault = _vault; } /** * @dev Updates beefy fee recipient. * @param _beefyFeeRecipient new beefy fee recipient address. */ function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner { beefyFeeRecipient = _beefyFeeRecipient; } /** * @dev Function to synchronize balances before new user deposit. * Can be overridden in the strategy. */ function beforeDeposit() external virtual {} } // File contracts/BIFI/strategies/Common/FeeManager.sol pragma solidity ^0.8.4; 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) external onlyManager { require(_fee <= MAX_CALL_FEE, "!cap"); callFee = _fee; beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; } function setWithdrawalFee(uint256 _fee) external onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; } } // File contracts/BIFI/strategies/Sushi/StrategyCommonMiniChefLP.sol pragma solidity ^0.8.4; contract StrategyCommonMiniChefLP 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; // Routes address[] public outputToNativeRoute; address[] public nativeToOutputRoute; address[] public outputToLp0Route; address[] public outputToLp1Route; /** * @dev Event that is fired each time someone harvests the strat. */ event StratHarvest(address indexed harvester); constructor( address _want, uint256 _poolId, address _chef, address _vault, address _unirouter, address _keeper, address _strategist, address _beefyFeeRecipient, address[] memory _outputToNativeRoute, address[] memory _outputToLp0Route, address[] memory _outputToLp1Route ) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) { want = _want; poolId = _poolId; chef = _chef; require(_outputToNativeRoute.length >= 2); output = _outputToNativeRoute[0]; native = _outputToNativeRoute[_outputToNativeRoute.length - 1]; outputToNativeRoute = _outputToNativeRoute; // setup lp routing lpToken0 = IUniswapV2Pair(want).token0(); require(_outputToLp0Route[0] == output); require(_outputToLp0Route[_outputToLp0Route.length - 1] == lpToken0); outputToLp0Route = _outputToLp0Route; lpToken1 = IUniswapV2Pair(want).token1(); require(_outputToLp1Route[0] == output); require(_outputToLp1Route[_outputToLp1Route.length - 1] == lpToken1); outputToLp1Route = _outputToLp1Route; nativeToOutputRoute = new address[](_outputToNativeRoute.length); for (uint i = 0; i < _outputToNativeRoute.length; i++) { uint idx = _outputToNativeRoute.length - 1 - i; nativeToOutputRoute[i] = outputToNativeRoute[idx]; } _giveAllowances(); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal > 0) { IMiniChefV2(chef).deposit(poolId, wantBal, address(this)); } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal < _amount) { IMiniChefV2(chef).withdraw(poolId, _amount.sub(wantBal), address(this)); wantBal = IERC20(want).balanceOf(address(this)); } if (wantBal > _amount) { wantBal = _amount; } if (tx.origin == owner() || paused()) { IERC20(want).safeTransfer(vault, wantBal); } else { uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX); IERC20(want).safeTransfer(vault, wantBal.sub(withdrawalFeeAmount)); } } // compounds earnings and charges performance fee function harvest() external whenNotPaused onlyEOA { IMiniChefV2(chef).harvest(poolId, address(this)); chargeFees(); addLiquidity(); deposit(); emit StratHarvest(msg.sender); } // performance fees function chargeFees() internal { // v2 harvester rewards are in both output and native, convert native to output uint256 toOutput = IERC20(native).balanceOf(address(this)); if (toOutput > 0) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(toOutput, 0, nativeToOutputRoute, address(this), block.timestamp); } uint256 toNative = IERC20(output).balanceOf(address(this)).mul(45).div(1000); IUniswapRouterETH(unirouter).swapExactTokensForTokens(toNative, 0, outputToNativeRoute, address(this), block.timestamp); uint256 nativeBal = IERC20(native).balanceOf(address(this)); uint256 callFeeAmount = nativeBal.mul(callFee).div(MAX_FEE); IERC20(native).safeTransfer(msg.sender, 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), block.timestamp); } if (lpToken1 != output) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp1Route, address(this), block.timestamp); } 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), block.timestamp); } // 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, ) = IMiniChefV2(chef).userInfo(poolId, address(this)); return _amount; } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); IMiniChefV2(chef).emergencyWithdraw(poolId, address(this)); 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(); IMiniChefV2(chef).emergencyWithdraw(poolId, address(this)); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).safeApprove(chef, type(uint256).max); IERC20(output).safeApprove(unirouter, type(uint256).max); // needed for v2 harvester IERC20(native).safeApprove(unirouter, type(uint256).max); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, type(uint256).max); IERC20(lpToken1).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, type(uint256).max); } function _removeAllowances() internal { IERC20(want).safeApprove(chef, 0); IERC20(output).safeApprove(unirouter, 0); IERC20(native).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, 0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_chef","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_beefyFeeRecipient","type":"address"},{"internalType":"address[]","name":"_outputToNativeRoute","type":"address[]"},{"internalType":"address[]","name":"_outputToLp0Route","type":"address[]"},{"internalType":"address[]","name":"_outputToLp1Route","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nativeToOutputRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp1Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600a600655606f60078190556200001f60706103e862000db1565b6200002b919062000db1565b6008553480156200003b57600080fd5b50604051620036f7380380620036f783398181016040526101608110156200006257600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b0180519751999b989a96999598949793969295919491939282019284640100000000821115620000bb57600080fd5b908301906020820185811115620000d157600080fd5b8251866020820283011164010000000082111715620000ef57600080fd5b82525081516020918201928201910280838360005b838110156200011e57818101518382015260200162000104565b50505050905001604052602001805160405193929190846401000000008211156200014857600080fd5b9083019060208201858111156200015e57600080fd5b82518660208202830111640100000000821117156200017c57600080fd5b82525081516020918201928201910280838360005b83811015620001ab57818101518382015260200162000191565b5050505090500160405260200180516040519392919084640100000000821115620001d557600080fd5b908301906020820185811115620001eb57600080fd5b82518660208202830111640100000000821117156200020957600080fd5b82525081516020918201928201910280838360005b83811015620002385781810151838201526020016200021e565b505050509050016040525050508585888a8760006200025c620007ee60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180546001600160a01b03199081166001600160a01b03978816179091556002805482169587169590951785556003805482169487169490941790935560048054841692861692909217909155600580548316918516919091179055600b805482168f8516179055600f8d9055600e8054909116928c1692909217909155835110156200034057600080fd5b826000815181106200036257634e487b7160e01b600052603260045260246000fd5b6020026020010151600a60006101000a8154816001600160a01b0302191690836001600160a01b031602179055508260018451620003a1919062000db1565b81518110620003c057634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600980546001600160a01b0319166001600160a01b039092169190911790558351620003ff916010919086019062000d30565b50600b60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044f57600080fd5b505afa15801562000464573d6000803e3d6000fd5b505050506040513d60208110156200047b57600080fd5b5051600c80546001600160a01b0319166001600160a01b03928316179055600a5483519116908390600090620004c157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b031614620004dd57600080fd5b600c5482516001600160a01b03909116908390620004fe9060019062000db1565b815181106200051d57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316146200053957600080fd5b81516200054e90601290602085019062000d30565b50600b60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156200059e57600080fd5b505afa158015620005b3573d6000803e3d6000fd5b505050506040513d6020811015620005ca57600080fd5b5051600d80546001600160a01b0319166001600160a01b03928316179055600a54825191169082906000906200061057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316146200062c57600080fd5b600d5481516001600160a01b039091169082906200064d9060019062000db1565b815181106200066c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316146200068857600080fd5b80516200069d90601390602084019062000d30565b5082516001600160401b03811115620006c657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015620006f0578160200160208202803683370190505b508051620007079160119160209091019062000d30565b5060005b8351811015620007d2576000816001865162000728919062000db1565b62000734919062000db1565b9050601081815481106200075857634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601180546001600160a01b0390921691849081106200079357634e487b7160e01b600052603260045260246000fd5b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790555080620007c98162000dcb565b9150506200070b565b50620007dd620007f2565b505050505050505050505062000dff565b3390565b600e54600b546200081f916001600160a01b0391821691166000196200092d602090811b6200152917901c565b600354600a546200084c916001600160a01b0391821691166000196200092d602090811b6200152917901c565b60035460095462000879916001600160a01b0391821691166000196200092d602090811b6200152917901c565b600354600c54620008a5916001600160a01b03918216911660006200092d602090811b6200152917901c565b600354600c54620008d2916001600160a01b0391821691166000196200092d602090811b6200152917901c565b600354600d54620008fe916001600160a01b03918216911660006200092d602090811b6200152917901c565b600354600d546200092b916001600160a01b0391821691166000196200092d602090811b6200152917901c565b565b801580620009b7575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200098757600080fd5b505afa1580156200099c573d6000803e3d6000fd5b505050506040513d6020811015620009b357600080fd5b5051155b620009f45760405162461bcd60e51b8152600401808060200182810382526036815260200180620036c16036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b1790915262000a4c91859162000a5116565b505050565b600062000aad826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031662000b0d60201b6200163c179092919060201c565b80519091501562000a4c5780806020019051602081101562000ace57600080fd5b505162000a4c5760405162461bcd60e51b815260040180806020018281038252602a81526020018062003697602a913960400191505060405180910390fd5b606062000b1e848460008562000b28565b90505b9392505050565b60608247101562000b6b5760405162461bcd60e51b8152600401808060200182810382526026815260200180620036716026913960400191505060405180910390fd5b843b62000bbf576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b6020831062000bff5780518252601f19909201916020918201910162000bde565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000c63576040519150601f19603f3d011682016040523d82523d6000602084013e62000c68565b606091505b50909250905062000c7b82828662000c86565b979650505050505050565b6060831562000c9757508162000b21565b82511562000ca85782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000cf457818101518382015260200162000cda565b50505050905090810190601f16801562000d225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b82805482825590600052602060002090810192821562000d88579160200282015b8281111562000d8857825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000d51565b5062000d9692915062000d9a565b5090565b5b8082111562000d96576000815560010162000d9b565b60008282101562000dc65762000dc662000de9565b500390565b600060001982141562000de25762000de262000de9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6128628062000e0f6000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c80637d38ca651161015c578063be12a978116100ce578063dfbdc43711610087578063dfbdc43714610596578063f20eaeb81461059e578063f2fde38b146105b1578063fb617787146105d7578063fbfa77cf146105df578063fd63a887146105f257600080fd5b8063be12a97814610514578063c1a3d44c14610531578063c7b9d53014610539578063d0e30db01461055f578063d310258914610567578063d92f3d731461057057600080fd5b80638e145459116101205780638e1454591461049957806390321e1a146104ac578063a68833e5146104b5578063ac1e5025146104db578063aced1661146104f8578063bc063e1a1461050b57600080fd5b80637d38ca651461045c5780638456cb5914610464578063877562b61461046c5780638bc7e8c41461047f5780638da5cb5b1461048857600080fd5b80633e0dc34e116102005780635c975abb116101b95780635c975abb146103cc5780635ee167c0146103ed5780636817031b14610400578063715018a614610426578063722713f71461042e578063748747e61461043657600080fd5b80633e0dc34e146103a25780633f4ba83a146103ab5780634641257d146103b35780634700d305146103bb57806354518b1a146103c3578063573fef0a1461035e57600080fd5b80631fe4a686116102525780631fe4a6861461031b578063257ae0de1461032e57806326465826146103415780632ad5a53f146103605780632e1a7d4d1461036857806336c6cf211461038557600080fd5b806305200c9c1461028f57806311588086146102c857806311b0b42d146102e25780631f1fcd51146102f55780631fc8bc5d14610308575b600080fd5b6102ac600480360360208110156102a557600080fd5b503561060f565b604080516001600160a01b039092168252519081900360200190f35b6102d0610639565b60408051918252519081900360200190f35b6009546102ac906001600160a01b031681565b600b546102ac906001600160a01b031681565b600e546102ac906001600160a01b031681565b6002546102ac906001600160a01b031681565b6003546102ac906001600160a01b031681565b61035e6004803603602081101561035757600080fd5b50356106c0565b005b6102d0606f81565b61035e6004803603602081101561037e57600080fd5b5035610781565b6102ac6004803603602081101561039b57600080fd5b50356109f7565b6102d0600f5481565b61035e610a07565b61035e610a80565b61035e610bc2565b6102d061271081565b600054600160a01b900460ff16604080519115158252519081900360200190f35b600c546102ac906001600160a01b031681565b61035e6004803603602081101561041657600080fd5b50356001600160a01b0316610c99565b61035e610d08565b6102d0610d9f565b61035e6004803603602081101561044c57600080fd5b50356001600160a01b0316610dbf565b6102d0607081565b61035e610e40565b600d546102ac906001600160a01b031681565b6102d060065481565b6000546001600160a01b03166102ac565b6005546102ac906001600160a01b031681565b6102d060075481565b61035e600480360360208110156104cb57600080fd5b50356001600160a01b0316610eaf565b61035e600480360360208110156104f157600080fd5b5035610f1e565b6001546102ac906001600160a01b031681565b6102d06103e881565b6102ac6004803603602081101561052a57600080fd5b5035610fc1565b6102d0610fd1565b61035e6004803603602081101561054f57600080fd5b50356001600160a01b031661104d565b61035e6110bc565b6102d060085481565b61035e6004803603602081101561058657600080fd5b50356001600160a01b0316611206565b6102d0603281565b600a546102ac906001600160a01b031681565b61035e600480360360208110156105c757600080fd5b50356001600160a01b0316611275565b61035e611362565b6004546102ac906001600160a01b031681565b6102ac6004803603602081101561060857600080fd5b5035611519565b6011818154811061061f57600080fd5b6000918252602090912001546001600160a01b0316905081565b600e54600f54604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b15801561068e57600080fd5b505afa1580156106a2573d6000803e3d6000fd5b505050506040513d60408110156106b857600080fd5b505192915050565b6000546001600160a01b03163314806106e357506001546001600160a01b031633145b61071f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f81111561075e576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b60078190558061077160706103e8612733565b61077b9190612733565b60085550565b6004546001600160a01b031633146107c9576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561081457600080fd5b505afa158015610828573d6000803e3d6000fd5b505050506040513d602081101561083e57600080fd5b505190508181101561094c57600e54600f546001600160a01b0390911690630ad58d2f9061086c8585611655565b306040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b031681526020019350505050600060405180830381600087803b1580156108ba57600080fd5b505af11580156108ce573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b15801561091d57600080fd5b505afa158015610931573d6000803e3d6000fd5b505050506040513d602081101561094757600080fd5b505190505b818111156109575750805b6000546001600160a01b03163214806109795750600054600160a01b900460ff165b1561099f57600454600b5461099b916001600160a01b03918216911683611661565b5050565b60006109c26127106109bc600654856116b390919063ffffffff16565b906116bf565b6004549091506109f2906001600160a01b03166109df8484611655565b600b546001600160a01b03169190611661565b505050565b6012818154811061061f57600080fd5b6000546001600160a01b0316331480610a2a57506001546001600160a01b031633145b610a66576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610a6e6116cb565b610a7661176d565b610a7e6110bc565b565b600054600160a01b900460ff1615610ad2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b333214610b0f576040805162461bcd60e51b8152602060048083019190915260248201526321454f4160e01b604482015290519081900360640190fd5b600e54600f5460408051630c7e663b60e11b81526004810192909252306024830152516001600160a01b03909216916318fccc769160448082019260009290919082900301818387803b158015610b6557600080fd5b505af1158015610b79573d6000803e3d6000fd5b50505050610b85611844565b610b8d611d98565b610b956110bc565b60405133907f577a37fdb49a88d66684922c6f913df5239b4f214b2b97c53ef8e3bbb2034cb590600090a2565b6000546001600160a01b0316331480610be557506001546001600160a01b031633145b610c21576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610c29610e40565b600e54600f54604080516302f940c760e41b81526004810192909252306024830152516001600160a01b0390921691632f940c709160448082019260009290919082900301818387803b158015610c7f57600080fd5b505af1158015610c93573d6000803e3d6000fd5b50505050565b6000546001600160a01b03163314610ce6576040805162461bcd60e51b815260206004820181905260248201526000805160206127ad833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d55576040805162461bcd60e51b815260206004820181905260248201526000805160206127ad833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610dba610dac610639565b610db4610fd1565b90612304565b905090565b6000546001600160a01b0316331480610de257506001546001600160a01b031633145b610e1e576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480610e6357506001546001600160a01b031633145b610e9f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610ea7612310565b610a7e61239d565b6000546001600160a01b03163314610efc576040805162461bcd60e51b815260206004820181905260248201526000805160206127ad833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331480610f4157506001546001600160a01b031633145b610f7d576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6032811115610fbc576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6010818154811061061f57600080fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561101c57600080fd5b505afa158015611030573d6000803e3d6000fd5b505050506040513d602081101561104657600080fd5b5051919050565b6002546001600160a01b0316331461109a576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600054600160a01b900460ff161561110e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561115957600080fd5b505afa15801561116d573d6000803e3d6000fd5b505050506040513d602081101561118357600080fd5b50519050801561120357600e54600f5460408051638dbdbe6d60e01b8152600481019290925260248201849052306044830152516001600160a01b0390921691638dbdbe6d9160648082019260009290919082900301818387803b1580156111ea57600080fd5b505af11580156111fe573d6000803e3d6000fd5b505050505b50565b6000546001600160a01b03163314611253576040805162461bcd60e51b815260206004820181905260248201526000805160206127ad833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146112c2576040805162461bcd60e51b815260206004820181905260248201526000805160206127ad833981519152604482015290519081900360640190fd5b6001600160a01b0381166113075760405162461bcd60e51b81526004018080602001828103825260268152602001806127616026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031633146113aa576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600e54600f54604080516302f940c760e41b81526004810192909252306024830152516001600160a01b0390921691632f940c709160448082019260009290919082900301818387803b15801561140057600080fd5b505af1158015611414573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561146557600080fd5b505afa158015611479573d6000803e3d6000fd5b505050506040513d602081101561148f57600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b1580156114ef57600080fd5b505af1158015611503573d6000803e3d6000fd5b505050506040513d60208110156109f257600080fd5b6013818154811061061f57600080fd5b8015806115af575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561158157600080fd5b505afa158015611595573d6000803e3d6000fd5b505050506040513d60208110156115ab57600080fd5b5051155b6115ea5760405162461bcd60e51b81526004018080602001828103825260368152602001806127f76036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526109f2908490612433565b606061164b84846000856124e4565b90505b9392505050565b600061164e8284612733565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109f2908490612433565b600061164e8284612714565b600061164e82846126f4565b600054600160a01b900460ff16611720576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604080516001600160a01b039092168252519081900360200190a1565b600e54600b5461178c916001600160a01b039182169116600019611529565b600354600a546117ab916001600160a01b039182169116600019611529565b6003546009546117ca916001600160a01b039182169116600019611529565b600354600c546117e8916001600160a01b0391821691166000611529565b600354600c54611807916001600160a01b039182169116600019611529565b600354600d54611825916001600160a01b0391821691166000611529565b600354600d54610a7e916001600160a01b039182169116600019611529565b600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561188f57600080fd5b505afa1580156118a3573d6000803e3d6000fd5b505050506040513d60208110156118b957600080fd5b505190508015611a4a576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526011805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c4909101908690801561195d57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161193f575b50509650505050505050600060405180830381600087803b15801561198157600080fd5b505af1158015611995573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156119be57600080fd5b8101908080516040519392919084600160201b8211156119dd57600080fd5b9083019060208201858111156119f257600080fd5b82518660208202830111600160201b82111715611a0e57600080fd5b82525081516020918201928201910280838360005b83811015611a3b578181015183820152602001611a23565b50505050905001604052505050505b600a54604080516370a0823160e01b81523060048201529051600092611ad9926103e8926109bc92602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015611aa757600080fd5b505afa158015611abb573d6000803e3d6000fd5b505050506040513d6020811015611ad157600080fd5b5051906116b3565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601030426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015611b8557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611b67575b50509650505050505050600060405180830381600087803b158015611ba957600080fd5b505af1158015611bbd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611be657600080fd5b8101908080516040519392919084600160201b821115611c0557600080fd5b908301906020820185811115611c1a57600080fd5b82518660208202830111600160201b82111715611c3657600080fd5b82525081516020918201928201910280838360005b83811015611c63578181015183820152602001611c4b565b505050509190910160408181526009546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015611cbe57600080fd5b505afa158015611cd2573d6000803e3d6000fd5b505050506040513d6020811015611ce857600080fd5b5051600754909150600090611d06906103e8906109bc9085906116b3565b600954909150611d20906001600160a01b03163383611661565b6000611d3d6103e86109bc600854866116b390919063ffffffff16565b600554600954919250611d5d916001600160a01b03908116911683611661565b6000611d706103e86109bc8660706116b3565b600254600954919250611d90916001600160a01b03908116911683611661565b505050505050565b600a54604080516370a0823160e01b81523060048201529051600092611e1f926002926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611ded57600080fd5b505afa158015611e01573d6000803e3d6000fd5b505050506040513d6020811015611e1757600080fd5b5051906116bf565b600a54600c549192506001600160a01b03918216911614611fc1576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526012805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015611ed457602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611eb6575b50509650505050505050600060405180830381600087803b158015611ef857600080fd5b505af1158015611f0c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611f3557600080fd5b8101908080516040519392919084600160201b821115611f5457600080fd5b908301906020820185811115611f6957600080fd5b82518660208202830111600160201b82111715611f8557600080fd5b82525081516020918201928201910280838360005b83811015611fb2578181015183820152602001611f9a565b50505050905001604052505050505b600a54600d546001600160a01b03908116911614612160576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526013805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c4909101908690801561207357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612055575b50509650505050505050600060405180830381600087803b15801561209757600080fd5b505af11580156120ab573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156120d457600080fd5b8101908080516040519392919084600160201b8211156120f357600080fd5b90830190602082018581111561210857600080fd5b82518660208202830111600160201b8211171561212457600080fd5b82525081516020918201928201910280838360005b83811015612151578181015183820152602001612139565b50505050905001604052505050505b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156121ab57600080fd5b505afa1580156121bf573d6000803e3d6000fd5b505050506040513d60208110156121d557600080fd5b5051600d54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561222857600080fd5b505afa15801561223c573d6000803e3d6000fd5b505050506040513d602081101561225257600080fd5b5051600354600c54600d546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b1580156122da57600080fd5b505af11580156122ee573d6000803e3d6000fd5b505050506040513d60608110156111fe57600080fd5b600061164e82846126dc565b600054600160a01b900460ff1615612362576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117503390565b600e54600b546123bb916001600160a01b0391821691166000611529565b600354600a546123d9916001600160a01b0391821691166000611529565b6003546009546123f7916001600160a01b0391821691166000611529565b600354600c54612415916001600160a01b0391821691166000611529565b600354600d54610a7e916001600160a01b0391821691166000611529565b6000612488826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661163c9092919063ffffffff16565b8051909150156109f2578080602001905160208110156124a757600080fd5b50516109f25760405162461bcd60e51b815260040180806020018281038252602a8152602001806127cd602a913960400191505060405180910390fd5b6060824710156125255760405162461bcd60e51b81526004018080602001828103825260268152602001806127876026913960400191505060405180910390fd5b843b612578576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106125b65780518252601f199092019160209182019101612597565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612618576040519150601f19603f3d011682016040523d82523d6000602084013e61261d565b606091505b509150915061262d828286612638565b979650505050505050565b6060831561264757508161164e565b8251156126575782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126a1578181015183820152602001612689565b50505050905090810190601f1680156126ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600082198211156126ef576126ef61274a565b500190565b60008261270f57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561272e5761272e61274a565b500290565b6000828210156127455761274561274a565b500390565b634e487b7160e01b600052601160045260246000fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220cead5e3447921a8f2e873edee323e60c274d4d1cd4068602797e87bd0863c4d264736f6c63430008040033416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000000008f8e95ff4b4c5e354ccb005c6b0278492d7b590700000000000000000000000000000000000000000000000000000000000000180000000000000000000000000769fd68dfb93167989c6f7254cd0d766fb2841f000000000000000000000000d35b3733c2ceaf3635be246b2c6c42f10e5b6b780000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d0000000000000000000000002c6bd2d42aaa713642ee7c6e83291ca9f94832c6000000000000000000000000b66ca5319efc42fd1462693bab51ee0c9e452745000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd60000000000000000000000004eac4c4e9050464067d673102f8e24b2fcceb350
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008f8e95ff4b4c5e354ccb005c6b0278492d7b590700000000000000000000000000000000000000000000000000000000000000180000000000000000000000000769fd68dfb93167989c6f7254cd0d766fb2841f000000000000000000000000d35b3733c2ceaf3635be246b2c6c42f10e5b6b780000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d0000000000000000000000002c6bd2d42aaa713642ee7c6e83291ca9f94832c6000000000000000000000000b66ca5319efc42fd1462693bab51ee0c9e452745000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f6190000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd60000000000000000000000004eac4c4e9050464067d673102f8e24b2fcceb350
-----Decoded View---------------
Arg [0] : _want (address): 0x8f8e95ff4b4c5e354ccb005c6b0278492d7b5907
Arg [1] : _poolId (uint256): 24
Arg [2] : _chef (address): 0x0769fd68dfb93167989c6f7254cd0d766fb2841f
Arg [3] : _vault (address): 0xd35b3733c2ceaf3635be246b2c6c42f10e5b6b78
Arg [4] : _unirouter (address): 0x1b02da8cb0d097eb8d57a175b88c7d8b47997506
Arg [5] : _keeper (address): 0x10aee6b5594942433e7fc2783598c979b030ef3d
Arg [6] : _strategist (address): 0x2c6bd2d42aaa713642ee7c6e83291ca9f94832c6
Arg [7] : _beefyFeeRecipient (address): 0xb66ca5319efc42fd1462693bab51ee0c9e452745
Arg [8] : _outputToNativeRoute (address[]): 0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a,0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270
Arg [9] : _outputToLp0Route (address[]): 0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a,0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6
Arg [10] : _outputToLp1Route (address[]): 0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a,0x7ceb23fd6bc0add59e62ac25578270cff1b9f619,0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6,0x4eac4c4e9050464067d673102f8e24b2fcceb350
-----Encoded View---------------
23 Constructor Arguments found :
Arg [0] : 0000000000000000000000008f8e95ff4b4c5e354ccb005c6b0278492d7b5907
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [2] : 0000000000000000000000000769fd68dfb93167989c6f7254cd0d766fb2841f
Arg [3] : 000000000000000000000000d35b3733c2ceaf3635be246b2c6c42f10e5b6b78
Arg [4] : 0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506
Arg [5] : 00000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
Arg [6] : 0000000000000000000000002c6bd2d42aaa713642ee7c6e83291ca9f94832c6
Arg [7] : 000000000000000000000000b66ca5319efc42fd1462693bab51ee0c9e452745
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a
Arg [13] : 0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a
Arg [16] : 0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619
Arg [17] : 0000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd6
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [19] : 0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a
Arg [20] : 0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619
Arg [21] : 0000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd6
Arg [22] : 0000000000000000000000004eac4c4e9050464067d673102f8e24b2fcceb350
Deployed ByteCode Sourcemap
45901:7800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46346:36;;;;;;;;;;;;;;;;-1:-1:-1;46346:36:0;;:::i;:::-;;;;-1:-1:-1;;;;;46346:36:0;;;;;;;;;;;;;;51871:170;;;:::i;:::-;;;;;;;;;;;;;;;;46058:21;;;;;-1:-1:-1;;;;;46058:21:0;;;46114:19;;;;;-1:-1:-1;;;;;46114:19:0;;;46232;;;;;-1:-1:-1;;;;;46232:19:0;;;42374:25;;;;;-1:-1:-1;;;;;42374:25:0;;;42406:24;;;;;-1:-1:-1;;;;;42406:24:0;;;45439:194;;;;;;;;;;;;;;;;-1:-1:-1;45439:194:0;;:::i;:::-;;45151:39;;45187:3;45151:39;;48441:751;;;;;;;;;;;;;;;;-1:-1:-1;48441:751:0;;:::i;46389:33::-;;;;;;;;;;;;;;;;-1:-1:-1;46389:33:0;;:::i;46258:21::-;;;;;;52741:121;;;:::i;49255:227::-;;;:::i;52499:131::-;;;:::i;45250:43::-;;45288:5;45250:43;;40670:86;40717:4;40741:7;-1:-1:-1;;;40741:7:0;;;;40670:86;;;;;;;;;;;;;;;;;46140:23;;;;;-1:-1:-1;;;;;46140:23:0;;;44377:86;;;;;;;;;;;;;;;;-1:-1:-1;44377:86:0;-1:-1:-1;;;;;44377:86:0;;:::i;39039:148::-;;;:::i;51489:113::-;;;:::i;43649:92::-;;;;;;;;;;;;;;;;-1:-1:-1;43649:92:0;-1:-1:-1;;;;;43649:92:0;;:::i;45061:41::-;;45099:3;45061:41;;52638:95;;;:::i;46170:23::-;;;;;-1:-1:-1;;;;;46170:23:0;;;45302:30;;;;;;38388:87;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;38388:87;;42464:32;;;;;-1:-1:-1;;;;;42464:32:0;;;45341:25;;;;;;44598:134;;;;;;;;;;;;;;;;-1:-1:-1;44598:134:0;-1:-1:-1;;;;;44598:134:0;;:::i;45641:156::-;;;;;;;;;;;;;;;;-1:-1:-1;45641:156:0;;:::i;42346:21::-;;;;;-1:-1:-1;;;;;42346:21:0;;;45109:35;;45140:4;45109:35;;46303:36;;;;;;;;;;;;;;;;-1:-1:-1;46303:36:0;;:::i;51669:118::-;;;:::i;43886:155::-;;;;;;;;;;;;;;;;-1:-1:-1;43886:155:0;-1:-1:-1;;;;;43886:155:0;;:::i;48206:227::-;;;:::i;45373:57::-;;;;;;44173:102;;;;;;;;;;;;;;;;-1:-1:-1;44173:102:0;-1:-1:-1;;;;;44173:102:0;;:::i;45199:44::-;;45241:2;45199:44;;46086:21;;;;;-1:-1:-1;;;;;46086:21:0;;;39342:244;;;;;;;;;;;;;;;;-1:-1:-1;39342:244:0;-1:-1:-1;;;;;39342:244:0;;:::i;52141:276::-;;;:::i;42437:20::-;;;;;-1:-1:-1;;;;;42437:20:0;;;46429:33;;;;;;;;;;;;;;;;-1:-1:-1;46429:33:0;;:::i;46346:36::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46346:36:0;;-1:-1:-1;46346:36:0;:::o;51871:170::-;51971:4;;51986:6;;51959:49;;;-1:-1:-1;;;51959:49:0;;;;;;;;;52002:4;51959:49;;;;;;51917:7;;;;-1:-1:-1;;;;;51971:4:0;;;;51959:26;;:49;;;;;;;;;;51971:4;51959:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51959:49:0;;51871:170;-1:-1:-1;;51871:170:0:o;45439:194::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;43302:10;:21;;:45;;-1:-1:-1;43341:6:0;;-1:-1:-1;;;;;43341:6:0;43327:10;:20;43302:45;43294:66;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;;;;45187:3:::1;45513:4;:20;;45505:37;;;::::0;;-1:-1:-1;;;45505:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45505:37:0;;;;;;;;;;;;;::::1;;45555:7;:14:::0;;;45565:4;45591:24:::1;45099:3;45140:4;45591:24;:::i;:::-;:34;;;;:::i;:::-;45580:8;:45:::0;-1:-1:-1;45439:194:0:o;48441:751::-;48518:5;;-1:-1:-1;;;;;48518:5:0;48504:10;:19;48496:38;;;;;-1:-1:-1;;;48496:38:0;;;;;;;;;;;;-1:-1:-1;;;48496:38:0;;;;;;;;;;;;;;;48572:4;;48565:37;;;-1:-1:-1;;;48565:37:0;;48596:4;48565:37;;;;;;48547:15;;-1:-1:-1;;;;;48572:4:0;;48565:22;;:37;;;;;;;;;;;;;;48572:4;48565:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48565:37:0;;-1:-1:-1;48619:17:0;;;48615:183;;;48665:4;;48680:6;;-1:-1:-1;;;;;48665:4:0;;;;48653:26;;48688:20;:7;48700;48688:11;:20::i;:::-;48718:4;48653:71;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48653:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48756:4:0;;48749:37;;;-1:-1:-1;;;48749:37:0;;48780:4;48749:37;;;;;;-1:-1:-1;;;;;48756:4:0;;;;-1:-1:-1;48749:22:0;;-1:-1:-1;48749:37:0;;;;;;;;;;;;;;;48756:4;48749:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48749:37:0;;-1:-1:-1;48615:183:0;48824:7;48814;:17;48810:67;;;-1:-1:-1;48858:7:0;48810:67;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;48893:9;:20;;:32;;-1:-1:-1;40717:4:0;40741:7;-1:-1:-1;;;40741:7:0;;;;48917:8;48889:296;;;48968:5;;48949:4;;48942:41;;-1:-1:-1;;;;;48949:4:0;;;;48968:5;48975:7;48942:25;:41::i;:::-;48441:751;;:::o;48889:296::-;49016:27;49046:46;45288:5;49046:26;49058:13;;49046:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;49133:5;;49016:76;;-1:-1:-1;49107:66:0;;-1:-1:-1;;;;;49133:5:0;49140:32;:7;49016:76;49140:11;:32::i;:::-;49114:4;;-1:-1:-1;;;;;49114:4:0;;49107:66;:25;:66::i;:::-;48889:296;48441:751;;:::o;46389:33::-;;;;;;;;;;;;52741:121;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;43302:10;:21;;:45;;-1:-1:-1;43341:6:0;;-1:-1:-1;;;;;43341:6:0;43327:10;:20;43302:45;43294:66;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;;;;52792:10:::1;:8;:10::i;:::-;52815:17;:15;:17::i;:::-;52845:9;:7;:9::i;:::-;52741:121::o:0;49255:227::-;40717:4;40741:7;-1:-1:-1;;;40741:7:0;;;;40995:9;40987:38;;;;;-1:-1:-1;;;40987:38:0;;;;;;;;;;;;-1:-1:-1;;;40987:38:0;;;;;;;;;;;;;;;43478:10:::1;43492:9;43478:23;43470:40;;;::::0;;-1:-1:-1;;;43470:40:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;43470:40:0;;;;;;;;;;;;;::::1;;49328:4:::2;::::0;49342:6:::2;::::0;49316:48:::2;::::0;;-1:-1:-1;;;49316:48:0;;::::2;::::0;::::2;::::0;;;;49358:4:::2;49316:48:::0;;;;;-1:-1:-1;;;;;49328:4:0;;::::2;::::0;49316:25:::2;::::0;:48;;;;;49328:4:::2;::::0;49316:48;;;;;;;;49328:4;;49316:48;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;49375:12;:10;:12::i;:::-;49398:14;:12;:14::i;:::-;49423:9;:7;:9::i;:::-;49450:24;::::0;49463:10:::2;::::0;49450:24:::2;::::0;;;::::2;49255:227::o:0;52499:131::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;43302:10;:21;;:45;;-1:-1:-1;43341:6:0;;-1:-1:-1;;;;;43341:6:0;43327:10;:20;43302:45;43294:66;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;;;;52546:7:::1;:5;:7::i;:::-;52576:4;::::0;52600:6:::1;::::0;52564:58:::1;::::0;;-1:-1:-1;;;52564:58:0;;::::1;::::0;::::1;::::0;;;;52616:4:::1;52564:58:::0;;;;;-1:-1:-1;;;;;52576:4:0;;::::1;::::0;52564:35:::1;::::0;:58;;;;;52576:4:::1;::::0;52564:58;;;;;;;;52576:4;;52564:58;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52499:131::o:0;44377:86::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;4296:10;38608:23;38600:68;;;;;-1:-1:-1;;;38600:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38600:68:0;;;;;;;;;;;;;;;44441:5:::1;:14:::0;;-1:-1:-1;;;;;;44441:14:0::1;-1:-1:-1::0;;;;;44441:14:0;;;::::1;::::0;;;::::1;::::0;;44377:86::o;39039:148::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;4296:10;38608:23;38600:68;;;;;-1:-1:-1;;;38600:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38600:68:0;;;;;;;;;;;;;;;39146:1:::1;39130:6:::0;;39109:40:::1;::::0;-1:-1:-1;;;;;39130:6:0;;::::1;::::0;39109:40:::1;::::0;39146:1;;39109:40:::1;39177:1;39160:19:::0;;-1:-1:-1;;;;;;39160:19:0::1;::::0;;39039:148::o;51489:113::-;51531:7;51558:36;51578:15;:13;:15::i;:::-;51558;:13;:15::i;:::-;:19;;:36::i;:::-;51551:43;;51489:113;:::o;43649:92::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;43302:10;:21;;:45;;-1:-1:-1;43341:6:0;;-1:-1:-1;;;;;43341:6:0;43327:10;:20;43302:45;43294:66;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;;;;43717:6:::1;:16:::0;;-1:-1:-1;;;;;;43717:16:0::1;-1:-1:-1::0;;;;;43717:16:0;;;::::1;::::0;;;::::1;::::0;;43649:92::o;52638:95::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;43302:10;:21;;:45;;-1:-1:-1;43341:6:0;;-1:-1:-1;;;;;43341:6:0;43327:10;:20;43302:45;43294:66;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;;;;52685:8:::1;:6;:8::i;:::-;52706:19;:17;:19::i;44598:134::-:0;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;4296:10;38608:23;38600:68;;;;;-1:-1:-1;;;38600:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38600:68:0;;;;;;;;;;;;;;;44686:17:::1;:38:::0;;-1:-1:-1;;;;;;44686:38:0::1;-1:-1:-1::0;;;;;44686:38:0;;;::::1;::::0;;;::::1;::::0;;44598:134::o;45641:156::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;43302:10;:21;;:45;;-1:-1:-1;43341:6:0;;-1:-1:-1;;;;;43341:6:0;43327:10;:20;43302:45;43294:66;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;-1:-1:-1;;;43294:66:0;;;;;;;;;;;;;;;45241:2:::1;45721:4;:26;;45713:43;;;::::0;;-1:-1:-1;;;45713:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45713:43:0;;;;;;;;;;;;;::::1;;45769:13;:20:::0;45641:156::o;46303:36::-;;;;;;;;;;;;51669:118;51749:4;;51742:37;;;-1:-1:-1;;;51742:37:0;;51773:4;51742:37;;;;;;51715:7;;-1:-1:-1;;;;;51749:4:0;;51742:22;;:37;;;;;;;;;;;;;;51749:4;51742:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51742:37:0;;51669:118;-1:-1:-1;51669:118:0:o;43886:155::-;43972:10;;-1:-1:-1;;;;;43972:10:0;43958;:24;43950:48;;;;;-1:-1:-1;;;43950:48:0;;;;;;;;;;;;-1:-1:-1;;;43950:48:0;;;;;;;;;;;;;;;44009:10;:24;;-1:-1:-1;;;;;;44009:24:0;-1:-1:-1;;;;;44009:24:0;;;;;;;;;;43886:155::o;48206:227::-;40717:4;40741:7;-1:-1:-1;;;40741:7:0;;;;40995:9;40987:38;;;;;-1:-1:-1;;;40987:38:0;;;;;;;;;;;;-1:-1:-1;;;40987:38:0;;;;;;;;;;;;;;;48282:4:::1;::::0;48275:37:::1;::::0;;-1:-1:-1;;;48275:37:0;;48306:4:::1;48275:37;::::0;::::1;::::0;;;48257:15:::1;::::0;-1:-1:-1;;;;;48282:4:0::1;::::0;48275:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;48282:4;48275:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48275:37:0;;-1:-1:-1;48329:11:0;;48325:101:::1;;48369:4;::::0;48383:6:::1;::::0;48357:57:::1;::::0;;-1:-1:-1;;;48357:57:0;;::::1;::::0;::::1;::::0;;;;;;;;;;48408:4:::1;48357:57:::0;;;;;-1:-1:-1;;;;;48369:4:0;;::::1;::::0;48357:25:::1;::::0;:57;;;;;48369:4:::1;::::0;48357:57;;;;;;;;48369:4;;48357:57;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48325:101;41036:1;48206:227::o:0;44173:102::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;4296:10;38608:23;38600:68;;;;;-1:-1:-1;;;38600:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38600:68:0;;;;;;;;;;;;;;;44245:9:::1;:22:::0;;-1:-1:-1;;;;;;44245:22:0::1;-1:-1:-1::0;;;;;44245:22:0;;;::::1;::::0;;;::::1;::::0;;44173:102::o;39342:244::-;38434:7;38461:6;-1:-1:-1;;;;;38461:6:0;4296:10;38608:23;38600:68;;;;;-1:-1:-1;;;38600:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38600:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39431:22:0;::::1;39423:73;;;;-1:-1:-1::0;;;39423:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39533:6;::::0;;39512:38:::1;::::0;-1:-1:-1;;;;;39512:38:0;;::::1;::::0;39533:6;::::1;::::0;39512:38:::1;::::0;::::1;39561:6;:17:::0;;-1:-1:-1;;;;;;39561:17:0::1;-1:-1:-1::0;;;;;39561:17:0;;;::::1;::::0;;;::::1;::::0;;39342:244::o;52141:276::-;52206:5;;-1:-1:-1;;;;;52206:5:0;52192:10;:19;52184:38;;;;;-1:-1:-1;;;52184:38:0;;;;;;;;;;;;-1:-1:-1;;;52184:38:0;;;;;;;;;;;;;;;52247:4;;52271:6;;52235:58;;;-1:-1:-1;;;52235:58:0;;;;;;;;;52287:4;52235:58;;;;;-1:-1:-1;;;;;52247:4:0;;;;52235:35;;:58;;;;;52247:4;;52235:58;;;;;;;;52247:4;;52235:58;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52331:4:0;;52324:37;;;-1:-1:-1;;;52324:37:0;;52355:4;52324:37;;;;;;52306:15;;-1:-1:-1;;;;;;52331:4:0;;;;-1:-1:-1;52324:22:0;;:37;;;;;;;;;;;;;;52331:4;52324:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52324:37:0;52379:4;;52394:5;;;52372:37;;;-1:-1:-1;;;52372:37:0;;-1:-1:-1;;;;;52394:5:0;;;52372:37;;;;;;;;;;;;;;52324;;-1:-1:-1;52379:4:0;;;;52372:21;;:37;;;;;52324;;52372;;;;;;;;52379:4;;52372:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46429:33;;;;;;;;;;;;24721:622;25091:10;;;25090:62;;-1:-1:-1;25107:39:0;;;-1:-1:-1;;;25107:39:0;;25131:4;25107:39;;;;-1:-1:-1;;;;;25107:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25107:39:0;:44;25090:62;25082:152;;;;-1:-1:-1;;;25082:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25272:62;;;-1:-1:-1;;;;;25272:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25272:62:0;-1:-1:-1;;;25272:62:0;;;25245:90;;25265:5;;25245:19;:90::i;19090:195::-;19193:12;19225:52;19247:6;19255:4;19261:1;19264:12;19225:21;:52::i;:::-;19218:59;;19090:195;;;;;;:::o;30441:98::-;30499:7;30526:5;30530:1;30526;:5;:::i;24062:177::-;24172:58;;;-1:-1:-1;;;;;24172:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24172:58:0;-1:-1:-1;;;24172:58:0;;;24145:86;;24165:5;;24145:19;:86::i;30798:98::-;30856:7;30883:5;30887:1;30883;:5;:::i;31197:98::-;31255:7;31282:5;31286:1;31282;:5;:::i;41729:120::-;40717:4;40741:7;-1:-1:-1;;;40741:7:0;;;;41265:41;;;;;-1:-1:-1;;;41265:41:0;;;;;;;;;;;;-1:-1:-1;;;41265:41:0;;;;;;;;;;;;;;;41798:5:::1;41788:15:::0;;-1:-1:-1;;;;41788:15:0::1;::::0;;41819:22:::1;4296:10:::0;41828:12:::1;41819:22;::::0;;-1:-1:-1;;;;;41819:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;41729:120::o:0;52870:522::-;52942:4;;52924;;52917:49;;-1:-1:-1;;;;;52924:4:0;;;;52942;-1:-1:-1;;52917:24:0;:49::i;:::-;53004:9;;52984:6;;52977:56;;-1:-1:-1;;;;;52984:6:0;;;;53004:9;-1:-1:-1;;52977:26:0;:56::i;:::-;53107:9;;53087:6;;53080:56;;-1:-1:-1;;;;;53087:6:0;;;;53107:9;-1:-1:-1;;53080:26:0;:56::i;:::-;53178:9;;53156:8;;53149:42;;-1:-1:-1;;;;;53156:8:0;;;;53178:9;;53149:28;:42::i;:::-;53231:9;;53209:8;;53202:58;;-1:-1:-1;;;;;53209:8:0;;;;53231:9;-1:-1:-1;;53202:28:0;:58::i;:::-;53302:9;;53280:8;;53273:42;;-1:-1:-1;;;;;53280:8:0;;;;53302:9;;53273:28;:42::i;:::-;53355:9;;53333:8;;53326:58;;-1:-1:-1;;;;;53333:8:0;;;;53355:9;-1:-1:-1;;53326:28:0;:58::i;49515:1090::-;49672:6;;49665:39;;;-1:-1:-1;;;49665:39:0;;49698:4;49665:39;;;;;;49646:16;;-1:-1:-1;;;;;49672:6:0;;49665:24;;:39;;;;;;;;;;;;;;49672:6;49665:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49665:39:0;;-1:-1:-1;49719:12:0;;49715:164;;49766:9;;49748:119;;-1:-1:-1;;;49748:119:0;;;;;;;;49766:9;49748:119;;;;;;49844:4;49748:119;;;;;;49851:15;49748:119;;;;;;;;;;;;;49815:19;49748:119;;;;;;;;-1:-1:-1;;;;;49766:9:0;;;;49748:53;;49802:8;;49815:19;;49844:4;49851:15;49748:119;;;;;;49815:19;;49748:119;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49748:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49748:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49748:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49748:119:0;;;;;;;;;;;;-1:-1:-1;49748:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49715:164;49917:6;;49910:39;;;-1:-1:-1;;;49910:39:0;;49943:4;49910:39;;;;;;49891:16;;49910:57;;49962:4;;49910:47;;49954:2;;-1:-1:-1;;;;;49917:6:0;;;;49910:24;;:39;;;;;;;;;;;;;;;49917:6;49910:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49910:39:0;;:43;:47::i;:57::-;49891:76;;49996:9;;;;;;;;;-1:-1:-1;;;;;49996:9:0;-1:-1:-1;;;;;49978:53:0;;50032:8;50042:1;50045:19;50074:4;50081:15;49978:119;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49978:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49978:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49978:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49978:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49978:119:0;;;;;;;;;;;;-1:-1:-1;49978:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;49978:119:0;;;;;;;;50137:6;;-1:-1:-1;;;50130:39:0;;50163:4;50130:39;;;;;;50110:17;;-1:-1:-1;;;;;;50137:6:0;;;;-1:-1:-1;50130:24:0;;-1:-1:-1;50130:39:0;;;;;-1:-1:-1;50130:39:0;;-1:-1:-1;50130:39:0;;;;;;;50137:6;50130:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50130:39:0;50220:7;;50130:39;;-1:-1:-1;50182:21:0;;50206:35;;45140:4;;50206:22;;50130:39;;50206:13;:22::i;:35::-;50259:6;;50182:59;;-1:-1:-1;50252:54:0;;-1:-1:-1;;;;;50259:6:0;50280:10;50182:59;50252:27;:54::i;:::-;50319:22;50344:36;45140:4;50344:23;50358:8;;50344:9;:13;;:23;;;;:::i;:36::-;50419:17;;50398:6;;50319:61;;-1:-1:-1;50391:62:0;;-1:-1:-1;;;;;50398:6:0;;;;50419:17;50319:61;50391:27;:62::i;:::-;50466:21;50490:42;45140:4;50490:29;:9;45099:3;50490:13;:29::i;:42::-;50571:10;;50550:6;;50466:66;;-1:-1:-1;50543:54:0;;-1:-1:-1;;;;;50550:6:0;;;;50571:10;50466:66;50543:27;:54::i;:::-;49515:1090;;;;;;:::o;50668:747::-;50740:6;;50733:39;;;-1:-1:-1;;;50733:39:0;;50766:4;50733:39;;;;;;50712:18;;50733:46;;50777:1;;-1:-1:-1;;;;;50740:6:0;;;;50733:24;;:39;;;;;;;;;;;;;;;50740:6;50733:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50733:39:0;;:43;:46::i;:::-;50808:6;;50796:8;;50712:67;;-1:-1:-1;;;;;;50796:8:0;;;50808:6;;50796:18;50792:169;;50849:9;;50831:118;;-1:-1:-1;;;50831:118:0;;;;;;;;50849:9;50831:118;;;;;;50926:4;50831:118;;;;;;50933:15;50831:118;;;;;;;;;;;;;50900:16;50831:118;;;;;;;;-1:-1:-1;;;;;50849:9:0;;;;50831:53;;50885:10;;50900:16;;50926:4;50933:15;50831:118;;;;;;50900:16;;50831:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50831:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50831:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50831:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50831:118:0;;;;;;;;;;;;-1:-1:-1;50831:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50792:169;50989:6;;50977:8;;-1:-1:-1;;;;;50977:8:0;;;50989:6;;50977:18;50973:169;;51030:9;;51012:118;;-1:-1:-1;;;51012:118:0;;;;;;;;51030:9;51012:118;;;;;;51107:4;51012:118;;;;;;51114:15;51012:118;;;;;;;;;;;;;51081:16;51012:118;;;;;;;;-1:-1:-1;;;;;51030:9:0;;;;51012:53;;51066:10;;51081:16;;51107:4;51114:15;51012:118;;;;;;51081:16;;51012:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51012:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51012:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51012:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51012:118:0;;;;;;;;;;;;-1:-1:-1;51012:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50973:169;51178:8;;51171:41;;;-1:-1:-1;;;51171:41:0;;51206:4;51171:41;;;;;;51154:14;;-1:-1:-1;;;;;51178:8:0;;51171:26;;:41;;;;;;;;;;;;;;51178:8;51171:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51171:41:0;51247:8;;51240:41;;;-1:-1:-1;;;51240:41:0;;51275:4;51240:41;;;;;;51171;;-1:-1:-1;51223:14:0;;-1:-1:-1;;;;;51247:8:0;;;;51240:26;;:41;;;;;51171;;51240;;;;;;;;51247:8;51240:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51240:41:0;51310:9;;51334:8;;51344;;51292:115;;;-1:-1:-1;;;51292:115:0;;-1:-1:-1;;;;;51334:8:0;;;51292:115;;;;51344:8;;;51292:115;;;;;;;;;;;;;;;;51310:9;51292:115;;;;;;;;;;51384:4;51292:115;;;;51391:15;51292:115;;;;;51240:41;;-1:-1:-1;51310:9:0;;;51292:41;;:115;;;;;;;;;;;;;;;51310:9;;51292:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30060:98;30118:7;30145:5;30149:1;30145;:5;:::i;41470:118::-;40717:4;40741:7;-1:-1:-1;;;40741:7:0;;;;40995:9;40987:38;;;;;-1:-1:-1;;;40987:38:0;;;;;;;;;;;;-1:-1:-1;;;40987:38:0;;;;;;;;;;;;;;;41530:7:::1;:14:::0;;-1:-1:-1;;;;41530:14:0::1;-1:-1:-1::0;;;41530:14:0::1;::::0;;41560:20:::1;41567:12;4296:10:::0;;4216:98;53400:298;53474:4;;53456;;53449:33;;-1:-1:-1;;;;;53456:4:0;;;;53474;;53449:24;:33::i;:::-;53520:9;;53500:6;;53493:40;;-1:-1:-1;;;;;53500:6:0;;;;53520:9;;53493:26;:40::i;:::-;53571:9;;53551:6;;53544:40;;-1:-1:-1;;;;;53551:6:0;;;;53571:9;;53544:26;:40::i;:::-;53624:9;;53602:8;;53595:42;;-1:-1:-1;;;;;53602:8:0;;;;53624:9;;53595:28;:42::i;:::-;53677:9;;53655:8;;53648:42;;-1:-1:-1;;;;;53655:8:0;;;;53677:9;;53648:28;:42::i;26496:761::-;26920:23;26946:69;26974:4;26946:69;;;;;;;;;;;;;;;;;26954:5;-1:-1:-1;;;;;26946:27:0;;;:69;;;;;:::i;:::-;27030:17;;26920:95;;-1:-1:-1;27030:21:0;27026:224;;27172:10;27161:30;;;;;;;;;;;;;;;-1:-1:-1;27161:30:0;27153:85;;;;-1:-1:-1;;;27153:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20142:530;20269:12;20327:5;20302:21;:30;;20294:81;;;;-1:-1:-1;;;20294:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16539:20;;20386:60;;;;;-1:-1:-1;;;20386:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20520:12;20534:23;20561:6;-1:-1:-1;;;;;20561:11:0;20581:5;20589:4;20561:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20561:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20519:75;;;;20612:52;20630:7;20639:10;20651:12;20612:17;:52::i;:::-;20605:59;20142:530;-1:-1:-1;;;;;;;20142:530:0:o;22682:742::-;22797:12;22826:7;22822:595;;;-1:-1:-1;22857:10:0;22850:17;;22822:595;22971:17;;:21;22967:439;;23234:10;23228:17;23295:15;23282:10;23278:2;23274:19;23267:44;23182:148;23377:12;23370:20;;-1:-1:-1;;;23370:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:128:1;54:3;85:1;81:6;78:1;75:13;72:2;;;91:18;;:::i;:::-;-1:-1:-1;127:9:1;;62:80::o;147:217::-;187:1;213;203:2;;-1:-1:-1;;;238:31:1;;292:4;289:1;282:15;320:4;245:1;310:15;203:2;-1:-1:-1;349:9:1;;193:171::o;369:168::-;409:7;475:1;471;467:6;463:14;460:1;457:21;452:1;445:9;438:17;434:45;431:2;;;482:18;;:::i;:::-;-1:-1:-1;522:9:1;;421:116::o;542:125::-;582:4;610:1;607;604:8;601:2;;;615:18;;:::i;:::-;-1:-1:-1;652:9:1;;591:76::o;672:127::-;733:10;728:3;724:20;721:1;714:31;764:4;761:1;754:15;788:4;785:1;778:15
Swarm Source
ipfs://cead5e3447921a8f2e873edee323e60c274d4d1cd4068602797e87bd0863c4d2
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.