Source Code
Latest 25 from a total of 194 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Panic | 6764437 | 623 days ago | IN | 0 MOVR | 0.00054508 | ||||
| Harvest | 1177557 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1176496 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1176210 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1175705 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1174726 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1174412 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1173887 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1173804 | 1493 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1170781 | 1494 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1149770 | 1497 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1148677 | 1497 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1135985 | 1499 days ago | IN | 0 MOVR | 0.00100196 | ||||
| Harvest | 1135692 | 1499 days ago | IN | 0 MOVR | 0.00092987 | ||||
| Harvest | 1134002 | 1499 days ago | IN | 0 MOVR | 0.00100196 | ||||
| Harvest | 1133401 | 1499 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1132812 | 1499 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1132512 | 1499 days ago | IN | 0 MOVR | 0.00100196 | ||||
| Harvest | 1132042 | 1499 days ago | IN | 0 MOVR | 0.00100196 | ||||
| Harvest | 1131638 | 1499 days ago | IN | 0 MOVR | 0.00100196 | ||||
| Harvest | 1131350 | 1499 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1130767 | 1500 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1130211 | 1500 days ago | IN | 0 MOVR | 0.00100564 | ||||
| Harvest | 1129911 | 1500 days ago | IN | 0 MOVR | 0.00100196 | ||||
| Harvest | 1129337 | 1500 days ago | IN | 0 MOVR | 0.00100196 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StrategyFinn
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at moonriver.moonscan.io on 2021-11-27 */ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File contracts/BIFI/interfaces/common/IUniswapRouter.sol pragma solidity ^0.6.0; interface IUniswapRouter { function factory() external pure returns (address); function WBNB() external pure returns (address); 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 addLiquidityBNB( address token, uint amountTokenDesired, uint amountTokenMin, uint amountBNBMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountBNB, 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 removeLiquidityBNB( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline ) external returns (uint amountToken, uint amountBNB); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityBNBWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountBNB); function removeLiquidityBNBSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline ) external returns (uint amountBNB); function removeLiquidityBNBWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountBNBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountBNB); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactBNBForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForBNBSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactBNBForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactBNB(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForBNB(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapBNBForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File contracts/BIFI/interfaces/common/IUniswapV2Pair.sol pragma solidity ^0.6.0; interface IUniswapV2Pair { function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function burn(address to) external returns (uint amount0, uint amount1); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); } // File contracts/BIFI/interfaces/common/IMasterChef.sol pragma solidity ^0.6.0; interface IMasterChef { function deposit(uint256 _pid, uint256 _amount) external; function withdraw(uint256 _pid, uint256 _amount) external; function enterStaking(uint256 _amount) external; function leaveStaking(uint256 _amount) external; function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function emergencyWithdraw(uint256 _pid) external; } // File contracts/BIFI/interfaces/finn/IFinnBar.sol pragma solidity ^0.6.12; interface IFinnBar { function deposit(uint256 _amount) external; function withdraw(uint256 _share) external; } // File @openzeppelin/contracts/access/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File contracts/BIFI/strategies/Common/StratManager.sol pragma solidity ^0.6.12; contract StratManager is Ownable, Pausable { /** * @dev Beefy Contracts: * {keeper} - Address to manage a few lower risk features of the strat * {strategist} - Address of the strategy author/deployer where strategist fee will go. * {vault} - Address of the vault that controls the strategy's funds. * {unirouter} - Address of exchange to execute swaps. */ address public keeper; address public strategist; address public unirouter; address public vault; address public beefyFeeRecipient; /** * @dev Initializes the base strategy. * @param _keeper address to use as alternative owner. * @param _strategist address where strategist fees go. * @param _unirouter router to use for swaps * @param _vault address of parent vault. * @param _beefyFeeRecipient address where to send Beefy's fees. */ constructor( address _keeper, address _strategist, address _unirouter, address _vault, address _beefyFeeRecipient ) public { keeper = _keeper; strategist = _strategist; unirouter = _unirouter; vault = _vault; beefyFeeRecipient = _beefyFeeRecipient; } // checks that caller is either owner or keeper. modifier onlyManager() { require(msg.sender == owner() || msg.sender == keeper, "!manager"); _; } /** * @dev Updates address of the strat keeper. * @param _keeper new keeper address. */ function setKeeper(address _keeper) external onlyManager { keeper = _keeper; } /** * @dev Updates address where strategist fee earnings will go. * @param _strategist new strategist address. */ function setStrategist(address _strategist) external { require(msg.sender == strategist, "!strategist"); strategist = _strategist; } /** * @dev Updates router that will be used for swaps. * @param _unirouter new unirouter address. */ function setUnirouter(address _unirouter) external onlyOwner { unirouter = _unirouter; } /** * @dev Updates parent vault. * @param _vault new vault address. */ function setVault(address _vault) external onlyOwner { vault = _vault; } /** * @dev Updates beefy fee recipient. * @param _beefyFeeRecipient new beefy fee recipient address. */ function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner { beefyFeeRecipient = _beefyFeeRecipient; } /** * @dev Function to synchronize balances before new user deposit. * Can be overridden in the strategy. */ function beforeDeposit() external virtual {} } // File contracts/BIFI/strategies/Common/FeeManager.sol pragma solidity ^0.6.12; abstract contract FeeManager is StratManager { uint constant public STRATEGIST_FEE = 112; uint constant public MAX_FEE = 1000; uint constant public MAX_CALL_FEE = 111; uint constant public WITHDRAWAL_FEE_CAP = 50; uint constant public WITHDRAWAL_MAX = 10000; uint public withdrawalFee = 10; uint public callFee = 111; uint public beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; function setCallFee(uint256 _fee) public onlyManager { require(_fee <= MAX_CALL_FEE, "!cap"); callFee = _fee; beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; } function setWithdrawalFee(uint256 _fee) public onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; } } // File contracts/BIFI/utils/StringUtils.sol pragma solidity >=0.6.0 <0.8.0; library StringUtils { function concat(string memory a, string memory b) internal pure returns (string memory) { return string(abi.encodePacked(a, b)); } } // File contracts/BIFI/strategies/Huckleberry/StrategyFinn.sol pragma solidity ^0.6.0; contract StrategyFinn is StratManager, FeeManager { using SafeERC20 for IERC20; using SafeMath for uint256; // Tokens used address public native; address public output; address public want; address public bar; address public lpToken0; address public lpToken1; // Third party contracts address public chef; uint256 public poolId; bool public harvestOnDeposit; uint256 public lastHarvest; string public pendingRewardsFunctionName; // Routes address[] public outputToNativeRoute; event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl); event Deposit(uint256 tvl); event Withdraw(uint256 tvl); constructor( address _want, address _bar, uint256 _poolId, address _chef, address _vault, address _unirouter, address _keeper, address _strategist, address _beefyFeeRecipient, address[] memory _outputToNativeRoute ) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public { want = _want; bar = _bar; poolId = _poolId; chef = _chef; output = _outputToNativeRoute[0]; native = _outputToNativeRoute[_outputToNativeRoute.length - 1]; outputToNativeRoute = _outputToNativeRoute; _giveAllowances(); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal > 0) { IFinnBar(bar).deposit(wantBal); IMasterChef(chef).deposit(poolId, balanceOfBar()); emit Deposit(balanceOf()); } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal < _amount) { IMasterChef(chef).withdraw(poolId, tokenForBarToken(_amount.sub(wantBal))); IFinnBar(bar).withdraw(balanceOfBar()); wantBal = IERC20(want).balanceOf(address(this)); } if (wantBal > _amount) { wantBal = _amount; } if (tx.origin != owner() && !paused()) { uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX); wantBal = wantBal.sub(withdrawalFeeAmount); } IERC20(want).safeTransfer(vault, wantBal); emit Withdraw(balanceOf()); } function beforeDeposit() external override { if (harvestOnDeposit) { require(msg.sender == vault, "!vault"); _harvest(tx.origin); } } function harvest() external virtual { _harvest(tx.origin); } function harvest(address callFeeRecipient) external virtual { _harvest(callFeeRecipient); } function managerHarvest() external onlyManager { _harvest(tx.origin); } // compounds earnings and charges performance fee function _harvest(address callFeeRecipient) internal whenNotPaused { IMasterChef(chef).deposit(poolId, 0); uint256 outputBal = IERC20(output).balanceOf(address(this)); if (outputBal > 0) { chargeFees(callFeeRecipient); uint256 wantHarvested = balanceOfWant(); deposit(); lastHarvest = block.timestamp; emit StratHarvest(msg.sender, wantHarvested, balanceOf()); } } // performance fees function chargeFees(address callFeeRecipient) internal { uint256 toNative = IERC20(output).balanceOf(address(this)).mul(45).div(1000); IUniswapRouter(unirouter).swapExactTokensForTokensSupportingFeeOnTransferTokens(toNative, 0, outputToNativeRoute, address(this), now); uint256 nativeBal = IERC20(native).balanceOf(address(this)); uint256 callFeeAmount = nativeBal.mul(callFee).div(MAX_FEE); IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount); uint256 beefyFeeAmount = nativeBal.mul(beefyFee).div(MAX_FEE); IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount); uint256 strategistFee = nativeBal.mul(STRATEGIST_FEE).div(MAX_FEE); IERC20(native).safeTransfer(strategist, strategistFee); } // 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 barBal,) = IMasterChef(chef).userInfo(poolId, address(this)); uint256 _amount = barTokenForToken(barBal); return _amount; } // it calculates how much 'bar' this contract holds. function balanceOfBar() public view returns (uint256) { return IERC20(bar).balanceOf(address(this)); } function setPendingRewardsFunctionName(string calldata _pendingRewardsFunctionName) external onlyManager { pendingRewardsFunctionName = _pendingRewardsFunctionName; } // returns rewards unharvested function rewardsAvailable() public view returns (uint256) { string memory signature = StringUtils.concat(pendingRewardsFunctionName, "(uint256,address)"); bytes memory result = Address.functionStaticCall( chef, abi.encodeWithSignature( signature, poolId, address(this) ) ); return abi.decode(result, (uint256)); } // native reward amount for calling harvest function callReward() public view returns (uint256) { uint256 outputBal = rewardsAvailable(); uint256 nativeOut; if (outputBal > 0) { try IUniswapRouter(unirouter).getAmountsOut(outputBal, outputToNativeRoute) returns (uint256[] memory amountOut) { nativeOut = amountOut[amountOut.length -1]; } catch {} } return nativeOut.mul(45).div(1000).mul(callFee).div(MAX_FEE); } function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager { harvestOnDeposit = _harvestOnDeposit; if (harvestOnDeposit) { setWithdrawalFee(0); } else { setWithdrawalFee(10); } } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); IMasterChef(chef).emergencyWithdraw(poolId); IFinnBar(bar).withdraw(balanceOfBar()); uint256 wantBal = IERC20(want).balanceOf(address(this)); IERC20(want).transfer(vault, wantBal); } // pauses deposits and withdraws all funds from third party systems. function panic() public onlyManager { pause(); IMasterChef(chef).emergencyWithdraw(poolId); IFinnBar(bar).withdraw(balanceOfBar()); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).safeApprove(bar, uint256(-1)); IERC20(bar).safeApprove(chef, uint256(-1)); IERC20(output).safeApprove(unirouter, uint256(-1)); } function _removeAllowances() internal { IERC20(want).safeApprove(bar, 0); IERC20(bar).safeApprove(chef, 0); IERC20(output).safeApprove(unirouter, 0); } function outputToNative() external view returns (address[] memory) { return outputToNativeRoute; } function exchangeRate() internal view returns (uint256) { return IERC20(want).balanceOf(address(bar)).mul(1e18).div(IERC20(bar).totalSupply()); } function barTokenForToken(uint256 _amount) internal view returns (uint256) { return _amount.mul(exchangeRate()).div(1e18); } function tokenForBarToken(uint256 _amount) internal view returns (uint256) { return _amount.mul(1e18).div(exchangeRate()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"address","name":"_bar","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[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfBar","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":"bar","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingRewardsFunctionName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_pendingRewardsFunctionName","type":"string"}],"name":"setPendingRewardsFunctionName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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
6080604052600a600655606f6007556103096008553480156200002157600080fd5b50604051620038fd380380620038fd83398181016040526101408110156200004857600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b01516101208c01805198519a9c999b979a969995989497939692959194929382019284640100000000821115620000a857600080fd5b908301906020820185811115620000be57600080fd5b8251866020820283011164010000000082111715620000dc57600080fd5b82525081516020918201928201910280838360005b838110156200010b578181015183820152602001620000f1565b50505050905001604052505050838386888560006200012f620002b660201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19168155600180546001600160a01b03199081166001600160a01b0398891617909155600280548216968816969096179095556003805486169487169490941790935560048054851692861692909217909155600580548416918516919091179055600b805483168e8516179055600c805483168d851617905560108b9055600f8054909216928a1692909217905581518291906200021d57fe5b6020026020010151600a60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001825103815181106200025c57fe5b602090810291909101810151600980546001600160a01b0319166001600160a01b0390921691909117905581516200029b916014919084019062000756565b50620002a6620002ba565b50505050505050505050620007e1565b3390565b600c54600b54620002e7916001600160a01b03918216911660001962000343602090811b62001fb217901c565b600f54600c5462000314916001600160a01b03918216911660001962000343602090811b62001fb217901c565b600354600a5462000341916001600160a01b03918216911660001962000343602090811b62001fb217901c565b565b801580620003cd575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200039d57600080fd5b505afa158015620003b2573d6000803e3d6000fd5b505050506040513d6020811015620003c957600080fd5b5051155b6200040a5760405162461bcd60e51b8152600401808060200182810382526036815260200180620038c76036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620004629185916200046716565b505050565b6060620004c3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200052360201b620020c5179092919060201c565b8051909150156200046257808060200190516020811015620004e457600080fd5b5051620004625760405162461bcd60e51b815260040180806020018281038252602a8152602001806200389d602a913960400191505060405180910390fd5b60606200053484846000856200053e565b90505b9392505050565b606082471015620005815760405162461bcd60e51b8152600401808060200182810382526026815260200180620038776026913960400191505060405180910390fd5b6200058c85620006a6565b620005de576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106200061f5780518252601f199092019160209182019101620005fe565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000683576040519150601f19603f3d011682016040523d82523d6000602084013e62000688565b606091505b5090925090506200069b828286620006ac565b979650505050505050565b3b151590565b60608315620006bd57508162000537565b825115620006ce5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200071a57818101518382015260200162000700565b50505050905090810190601f168015620007485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054828255906000526020600020908101928215620007ae579160200282015b82811115620007ae57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000777565b50620007bc929150620007c0565b5090565b5b80821115620007bc5780546001600160a01b0319168155600101620007c1565b61308680620007f16000396000f3fe608060405234801561001057600080fd5b506004361061035d5760003560e01c80638456cb59116101d3578063c7b9d53011610104578063e7a7250a116100a2578063f2fde38b1161007c578063f2fde38b1461078a578063fb617787146107b0578063fbfa77cf146107b8578063febb0f7e146107c05761035d565b8063e7a7250a14610772578063f1a392da1461077a578063f20eaeb8146107825761035d565b8063d801d946116100de578063d801d94614610734578063d92f3d731461073c578063de39da5f14610762578063dfbdc4371461076a5761035d565b8063c7b9d530146106fe578063d0e30db014610724578063d31025891461072c5761035d565b806397fd323d11610171578063aced16611161014b578063aced1661146106c9578063bc063e1a146106d1578063be12a978146106d9578063c1a3d44c146106f65761035d565b806397fd323d1461067e578063a68833e514610686578063ac1e5025146106ac5761035d565b80638bc7e8c4116101ad5780638bc7e8c41461065e5780638da5cb5b146106665780638e1454591461066e57806390321e1a146106765761035d565b80638456cb5914610646578063877562b61461064e5780638912cb8b146106565761035d565b80633e0dc34e116102ad5780635c975abb1161024b578063715018a611610225578063715018a614610608578063722713f714610610578063748747e6146106185780637d38ca651461063e5761035d565b80635c975abb146105be5780635ee167c0146105da5780636817031b146105e25761035d565b80634700d305116102875780634700d3051461053657806354518b1a1461053e578063573fef0a1461054657806359e791381461054e5761035d565b80633e0dc34e1461051e5780633f4ba83a146105265780634641257d1461052e5761035d565b80631fc8bc5d1161031a57806326465826116102f4578063264658261461045f578063277e5cfd1461047c5780632ad5a53f146104f95780632e1a7d4d146105015761035d565b80631fc8bc5d146104475780631fe4a6861461044f578063257ae0de146104575761035d565b80630e5c011e146103625780630e8fbb5a1461038a57806311588086146103a957806311b0b42d146103c357806313e120b1146103e75780631f1fcd511461043f575b600080fd5b6103886004803603602081101561037857600080fd5b50356001600160a01b03166107c8565b005b610388600480360360208110156103a057600080fd5b503515156107d4565b6103b1610872565b60408051918252519081900360200190f35b6103cb610907565b604080516001600160a01b039092168252519081900360200190f35b6103ef610916565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561042b578181015183820152602001610413565b505050509050019250505060405180910390f35b6103cb610978565b6103cb610987565b6103cb610996565b6103cb6109a5565b6103886004803603602081101561047557600080fd5b50356109b4565b610484610a6e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104be5781810151838201526020016104a6565b50505050905090810190601f1680156104eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103b1610afc565b6103886004803603602081101561051757600080fd5b5035610b01565b6103b1610df8565b610388610dfe565b610388610e85565b610388610e8e565b6103b1610fd6565b610388610fdc565b6103886004803603602081101561056457600080fd5b81019060208101813564010000000081111561057f57600080fd5b82018360208201111561059157600080fd5b803590602001918460018302840111640100000000831117156105b357600080fd5b50909250905061102f565b6105c66110ad565b604080519115158252519081900360200190f35b6103cb6110bd565b610388600480360360208110156105f857600080fd5b50356001600160a01b03166110cc565b610388611150565b6103b16111fc565b6103886004803603602081101561062e57600080fd5b50356001600160a01b031661121c565b6103b16112ab565b6103886112b0565b6103cb61132d565b6105c661133c565b6103b1611345565b6103cb61134b565b6103cb61135a565b6103b1611369565b6103b161136f565b6103886004803603602081101561069c57600080fd5b50356001600160a01b0316611536565b610388600480360360208110156106c257600080fd5b50356115ba565b6103cb61166b565b6103b161167a565b6103cb600480360360208110156106ef57600080fd5b5035611680565b6103b16116a7565b6103886004803603602081101561071457600080fd5b50356001600160a01b0316611723565b610388611792565b6103b1611975565b61038861197b565b6103886004803603602081101561075257600080fd5b50356001600160a01b03166119e8565b6103b1611a6c565b6103b1611ab7565b6103b1611abc565b6103b1611c63565b6103cb611c69565b610388600480360360208110156107a057600080fd5b50356001600160a01b0316611c78565b610388611d7a565b6103cb611f94565b6103cb611fa3565b6107d1816120de565b50565b6107dc61134b565b6001600160a01b0316336001600160a01b0316148061080557506001546001600160a01b031633145b610841576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6011805460ff1916821515179081905560ff16156108685761086360006115ba565b6107d1565b6107d1600a6115ba565b600f54601054604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b1580156108c757600080fd5b505afa1580156108db573d6000803e3d6000fd5b505050506040513d60408110156108f157600080fd5b50519050600061090082612284565b9250505090565b6009546001600160a01b031681565b6060601480548060200260200160405190810160405280929190818152602001828054801561096e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610950575b5050505050905090565b600b546001600160a01b031681565b600f546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b6109bc61134b565b6001600160a01b0316336001600160a01b031614806109e557506001546001600160a01b031633145b610a21576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610a60576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b6013805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610af45780601f10610ac957610100808354040283529160200191610af4565b820191906000526020600020905b815481529060010190602001808311610ad757829003601f168201915b505050505081565b606f81565b6004546001600160a01b03163314610b49576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b9457600080fd5b505afa158015610ba8573d6000803e3d6000fd5b505050506040513d6020811015610bbe57600080fd5b5051905081811015610d2c57600f546010546001600160a01b039091169063441a3e7090610bf4610bef86866122aa565b612307565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610c3157600080fd5b505af1158015610c45573d6000803e3d6000fd5b5050600c546001600160a01b03169150632e1a7d4d9050610c64611a6c565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610c9a57600080fd5b505af1158015610cae573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610cfd57600080fd5b505afa158015610d11573d6000803e3d6000fd5b505050506040513d6020811015610d2757600080fd5b505190505b81811115610d375750805b610d3f61134b565b6001600160a01b0316326001600160a01b031614158015610d655750610d636110ad565b155b15610d9d576000610d8d612710610d876006548561232290919063ffffffff16565b9061237b565b9050610d9982826122aa565b9150505b600454600b54610dba916001600160a01b039182169116836123e2565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610de36111fc565b60408051918252519081900360200190a15050565b60105481565b610e0661134b565b6001600160a01b0316336001600160a01b03161480610e2f57506001546001600160a01b031633145b610e6b576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610e73612434565b610e7b6124d7565b610e83611792565b565b610e83326120de565b610e9661134b565b6001600160a01b0316336001600160a01b03161480610ebf57506001546001600160a01b031633145b610efb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610f036112b0565b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015610f5357600080fd5b505af1158015610f67573d6000803e3d6000fd5b5050600c546001600160a01b03169150632e1a7d4d9050610f86611a6c565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610fbc57600080fd5b505af1158015610fd0573d6000803e3d6000fd5b50505050565b61271081565b60115460ff1615610e83576004546001600160a01b03163314610e85576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61103761134b565b6001600160a01b0316336001600160a01b0316148061106057506001546001600160a01b031633145b61109c576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6110a860138383612e87565b505050565b600054600160a01b900460ff1690565b600d546001600160a01b031681565b6110d4612534565b6001600160a01b03166110e561134b565b6001600160a01b03161461112e576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b611158612534565b6001600160a01b031661116961134b565b6001600160a01b0316146111b2576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000611217611209610872565b6112116116a7565b90612538565b905090565b61122461134b565b6001600160a01b0316336001600160a01b0316148061124d57506001546001600160a01b031633145b611289576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b6112b861134b565b6001600160a01b0316336001600160a01b031614806112e157506001546001600160a01b031633145b61131d576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611325612592565b610e8361261b565b600e546001600160a01b031681565b60115460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b60008061137a611abc565b90506000811561150a576003546040805163d06ca61f60e01b8152600481018581526024820192835260148054604484018190526001600160a01b039095169463d06ca61f94889492939290916064909101908490801561140457602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113e6575b5050935050505060006040518083038186803b15801561142357600080fd5b505afa9250505080156114e557506040513d6000823e601f3d908101601f19168201604052602081101561145657600080fd5b810190808051604051939291908464010000000082111561147657600080fd5b90830190602082018581111561148b57600080fd5b82518660208202830111640100000000821117156114a857600080fd5b82525081516020918201928201910280838360005b838110156114d55781810151838201526020016114bd565b5050505090500160405250505060015b6114ee5761150a565b806001825103815181106114fe57fe5b60200260200101519150505b6109006103e8610d876007546115306103e8610d87602d8861232290919063ffffffff16565b90612322565b61153e612534565b6001600160a01b031661154f61134b565b6001600160a01b031614611598576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6115c261134b565b6001600160a01b0316336001600160a01b031614806115eb57506001546001600160a01b031633145b611627576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6032811115611666576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b6014818154811061168d57fe5b6000918252602090912001546001600160a01b0316905081565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116f257600080fd5b505afa158015611706573d6000803e3d6000fd5b505050506040513d602081101561171c57600080fd5b5051905090565b6002546001600160a01b03163314611770576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61179a6110ad565b156117df576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561182a57600080fd5b505afa15801561183e573d6000803e3d6000fd5b505050506040513d602081101561185457600080fd5b5051905080156107d157600c546040805163b6b55f2560e01b81526004810184905290516001600160a01b039092169163b6b55f259160248082019260009290919082900301818387803b1580156118ab57600080fd5b505af11580156118bf573d6000803e3d6000fd5b5050600f546010546001600160a01b03909116925063e2bbb15891506118e3611a6c565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561192057600080fd5b505af1158015611934573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e384266119616111fc565b60408051918252519081900360200190a150565b60085481565b61198361134b565b6001600160a01b0316336001600160a01b031614806119ac57506001546001600160a01b031633145b610e85576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6119f0612534565b6001600160a01b0316611a0161134b565b6001600160a01b031614611a4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116f257600080fd5b603281565b60138054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152600093606093611b7f93830182828015611b4b5780601f10611b2057610100808354040283529160200191611b4b565b820191906000526020600020905b815481529060010190602001808311611b2e57829003601f168201915b5050505050604051806040016040528060118152602001702875696e743235362c616464726573732960781b815250612675565b600f5460105460408051602481019290925230604480840191909152815180840390910181526064909201908190528351939450606093611c43936001600160a01b031692918691819060208401908083835b60208310611bf15780518252601f199092019160209182019101611bd2565b51815160209384036101000a600019018019909216911617905260405191909301819003902091850180516001600160e01b03199093166001600160e01b039093169290921790915250612730915050565b9050808060200190516020811015611c5a57600080fd5b50519250505090565b60125481565b600a546001600160a01b031681565b611c80612534565b6001600160a01b0316611c9161134b565b6001600160a01b031614611cda576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b6001600160a01b038116611d1f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f1b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314611dc2576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015611e1257600080fd5b505af1158015611e26573d6000803e3d6000fd5b5050600c546001600160a01b03169150632e1a7d4d9050611e45611a6c565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611e7b57600080fd5b505af1158015611e8f573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611ee057600080fd5b505afa158015611ef4573d6000803e3d6000fd5b505050506040513d6020811015611f0a57600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b158015611f6a57600080fd5b505af1158015611f7e573d6000803e3d6000fd5b505050506040513d60208110156110a857600080fd5b6004546001600160a01b031681565b600c546001600160a01b031681565b801580612038575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561200a57600080fd5b505afa15801561201e573d6000803e3d6000fd5b505050506040513d602081101561203457600080fd5b5051155b6120735760405162461bcd60e51b815260040180806020018281038252603681526020018061301b6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526110a8908490612755565b60606120d48484600085612806565b90505b9392505050565b6120e66110ad565b1561212b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600f5460105460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b15801561218157600080fd5b505af1158015612195573d6000803e3d6000fd5b5050600a54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b1580156121e657600080fd5b505afa1580156121fa573d6000803e3d6000fd5b505050506040513d602081101561221057600080fd5b5051905080156122805761222382612962565b600061222d6116a7565b9050612237611792565b42601255337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826122666111fc565b6040805192835260208301919091528051918290030190a2505b5050565b60006122a4670de0b6b3a7640000610d8761229d612c00565b8590612322565b92915050565b600082821115612301576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006122a4612314612c00565b610d8784670de0b6b3a76400005b600082612331575060006122a4565b8282028284828161233e57fe5b04146120d75760405162461bcd60e51b8152600401808060200182810382526021815260200180612f8c6021913960400191505060405180910390fd5b60008082116123d1576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816123da57fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526110a8908490612755565b61243c6110ad565b612484576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124ba612534565b604080516001600160a01b039092168252519081900360200190a1565b600c54600b546124f6916001600160a01b039182169116600019611fb2565b600f54600c54612515916001600160a01b039182169116600019611fb2565b600354600a54610e83916001600160a01b039182169116600019611fb2565b3390565b6000828201838110156120d7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61259a6110ad565b156125df576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124ba612534565b600c54600b54612639916001600160a01b0391821691166000611fb2565b600f54600c54612657916001600160a01b0391821691166000611fb2565b600354600a54610e83916001600160a01b0391821691166000611fb2565b606082826040516020018083805190602001908083835b602083106126ab5780518252601f19909201916020918201910161268c565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106126f35780518252601f1990920191602091820191016126d4565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052905092915050565b60606120d78383604051806060016040528060258152602001612f6760259139612cda565b60606127aa826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120c59092919063ffffffff16565b8051909150156110a8578080602001905160208110156127c957600080fd5b50516110a85760405162461bcd60e51b815260040180806020018281038252602a815260200180612ff1602a913960400191505060405180910390fd5b6060824710156128475760405162461bcd60e51b8152600401808060200182810382526026815260200180612f416026913960400191505060405180910390fd5b61285085612ddd565b6128a1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106128e05780518252601f1990920191602091820191016128c1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612942576040519150601f19603f3d011682016040523d82523d6000602084013e612947565b606091505b5091509150612957828286612de3565b979650505050505050565b600a54604080516370a0823160e01b815230600482015290516000926129f1926103e892610d8792602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156129bf57600080fd5b505afa1580156129d3573d6000803e3d6000fd5b505050506040513d60208110156129e957600080fd5b505190612322565b9050600360009054906101000a90046001600160a01b03166001600160a01b0316635c11d795826000601430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015612a9d57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612a7f575b50509650505050505050600060405180830381600087803b158015612ac157600080fd5b505af1158015612ad5573d6000803e3d6000fd5b5050600954604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015612b2657600080fd5b505afa158015612b3a573d6000803e3d6000fd5b505050506040513d6020811015612b5057600080fd5b5051600754909150600090612b6e906103e890610d87908590612322565b600954909150612b88906001600160a01b031685836123e2565b6000612ba56103e8610d876008548661232290919063ffffffff16565b600554600954919250612bc5916001600160a01b039081169116836123e2565b6000612bd86103e8610d87866070612322565b600254600954919250612bf8916001600160a01b039081169116836123e2565b505050505050565b6000611217600c60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5357600080fd5b505afa158015612c67573d6000803e3d6000fd5b505050506040513d6020811015612c7d57600080fd5b5051600b54600c54604080516370a0823160e01b81526001600160a01b0392831660048201529051610d8793670de0b6b3a76400009316916370a08231916024808301926020929190829003018186803b1580156129bf57600080fd5b6060612ce584612ddd565b612d205760405162461bcd60e51b8152600401808060200182810382526024815260200180612fcd6024913960400191505060405180910390fd5b60006060856001600160a01b0316856040518082805190602001908083835b60208310612d5e5780518252601f199092019160209182019101612d3f565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114612dbe576040519150601f19603f3d011682016040523d82523d6000602084013e612dc3565b606091505b5091509150612dd3828286612de3565b9695505050505050565b3b151590565b60608315612df25750816120d7565b825115612e025782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e4c578181015183820152602001612e34565b50505050905090810190601f168015612e795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ec85782800160ff19823516178555612ef5565b82800160010185558215612ef5579182015b82811115612ef5578235825591602001919060010190612eda565b50612f01929150612f05565b5090565b5b80821115612f015760008155600101612f0656fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220300cde55c3cf1503554106c3258c4f0ac81abfc27b717a447470f61ae3daf1ed64736f6c634300060c0033416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000000009a92b5ebf1f6f6f7d93696fcd44e5cf75035a75600000000000000000000000037619cc85325afea778830e184cb60a3abc9210b00000000000000000000000000000000000000000000000000000000000000140000000000000000000000001f4b7660b6adc3943b5038e3426b33c1c0e343e6000000000000000000000000e173782e5cc62f1c3277749eea9c5daf182d7c660000000000000000000000002d4e873f9ab279da9f1bb2c532d4f06f67755b7700000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d0000000000000000000000006dcab4d155cffa74e65056fdc94164732d611e850000000000000000000000006650e6a8a8ed9464b466fd2fd5d74ffda4fd2fab000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000020000000000000000000000009a92b5ebf1f6f6f7d93696fcd44e5cf75035a75600000000000000000000000098878b06940ae243284ca214f92bb71a2b032b8a
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061035d5760003560e01c80638456cb59116101d3578063c7b9d53011610104578063e7a7250a116100a2578063f2fde38b1161007c578063f2fde38b1461078a578063fb617787146107b0578063fbfa77cf146107b8578063febb0f7e146107c05761035d565b8063e7a7250a14610772578063f1a392da1461077a578063f20eaeb8146107825761035d565b8063d801d946116100de578063d801d94614610734578063d92f3d731461073c578063de39da5f14610762578063dfbdc4371461076a5761035d565b8063c7b9d530146106fe578063d0e30db014610724578063d31025891461072c5761035d565b806397fd323d11610171578063aced16611161014b578063aced1661146106c9578063bc063e1a146106d1578063be12a978146106d9578063c1a3d44c146106f65761035d565b806397fd323d1461067e578063a68833e514610686578063ac1e5025146106ac5761035d565b80638bc7e8c4116101ad5780638bc7e8c41461065e5780638da5cb5b146106665780638e1454591461066e57806390321e1a146106765761035d565b80638456cb5914610646578063877562b61461064e5780638912cb8b146106565761035d565b80633e0dc34e116102ad5780635c975abb1161024b578063715018a611610225578063715018a614610608578063722713f714610610578063748747e6146106185780637d38ca651461063e5761035d565b80635c975abb146105be5780635ee167c0146105da5780636817031b146105e25761035d565b80634700d305116102875780634700d3051461053657806354518b1a1461053e578063573fef0a1461054657806359e791381461054e5761035d565b80633e0dc34e1461051e5780633f4ba83a146105265780634641257d1461052e5761035d565b80631fc8bc5d1161031a57806326465826116102f4578063264658261461045f578063277e5cfd1461047c5780632ad5a53f146104f95780632e1a7d4d146105015761035d565b80631fc8bc5d146104475780631fe4a6861461044f578063257ae0de146104575761035d565b80630e5c011e146103625780630e8fbb5a1461038a57806311588086146103a957806311b0b42d146103c357806313e120b1146103e75780631f1fcd511461043f575b600080fd5b6103886004803603602081101561037857600080fd5b50356001600160a01b03166107c8565b005b610388600480360360208110156103a057600080fd5b503515156107d4565b6103b1610872565b60408051918252519081900360200190f35b6103cb610907565b604080516001600160a01b039092168252519081900360200190f35b6103ef610916565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561042b578181015183820152602001610413565b505050509050019250505060405180910390f35b6103cb610978565b6103cb610987565b6103cb610996565b6103cb6109a5565b6103886004803603602081101561047557600080fd5b50356109b4565b610484610a6e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104be5781810151838201526020016104a6565b50505050905090810190601f1680156104eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103b1610afc565b6103886004803603602081101561051757600080fd5b5035610b01565b6103b1610df8565b610388610dfe565b610388610e85565b610388610e8e565b6103b1610fd6565b610388610fdc565b6103886004803603602081101561056457600080fd5b81019060208101813564010000000081111561057f57600080fd5b82018360208201111561059157600080fd5b803590602001918460018302840111640100000000831117156105b357600080fd5b50909250905061102f565b6105c66110ad565b604080519115158252519081900360200190f35b6103cb6110bd565b610388600480360360208110156105f857600080fd5b50356001600160a01b03166110cc565b610388611150565b6103b16111fc565b6103886004803603602081101561062e57600080fd5b50356001600160a01b031661121c565b6103b16112ab565b6103886112b0565b6103cb61132d565b6105c661133c565b6103b1611345565b6103cb61134b565b6103cb61135a565b6103b1611369565b6103b161136f565b6103886004803603602081101561069c57600080fd5b50356001600160a01b0316611536565b610388600480360360208110156106c257600080fd5b50356115ba565b6103cb61166b565b6103b161167a565b6103cb600480360360208110156106ef57600080fd5b5035611680565b6103b16116a7565b6103886004803603602081101561071457600080fd5b50356001600160a01b0316611723565b610388611792565b6103b1611975565b61038861197b565b6103886004803603602081101561075257600080fd5b50356001600160a01b03166119e8565b6103b1611a6c565b6103b1611ab7565b6103b1611abc565b6103b1611c63565b6103cb611c69565b610388600480360360208110156107a057600080fd5b50356001600160a01b0316611c78565b610388611d7a565b6103cb611f94565b6103cb611fa3565b6107d1816120de565b50565b6107dc61134b565b6001600160a01b0316336001600160a01b0316148061080557506001546001600160a01b031633145b610841576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6011805460ff1916821515179081905560ff16156108685761086360006115ba565b6107d1565b6107d1600a6115ba565b600f54601054604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b1580156108c757600080fd5b505afa1580156108db573d6000803e3d6000fd5b505050506040513d60408110156108f157600080fd5b50519050600061090082612284565b9250505090565b6009546001600160a01b031681565b6060601480548060200260200160405190810160405280929190818152602001828054801561096e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610950575b5050505050905090565b600b546001600160a01b031681565b600f546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b6109bc61134b565b6001600160a01b0316336001600160a01b031614806109e557506001546001600160a01b031633145b610a21576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610a60576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b6013805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610af45780601f10610ac957610100808354040283529160200191610af4565b820191906000526020600020905b815481529060010190602001808311610ad757829003601f168201915b505050505081565b606f81565b6004546001600160a01b03163314610b49576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b9457600080fd5b505afa158015610ba8573d6000803e3d6000fd5b505050506040513d6020811015610bbe57600080fd5b5051905081811015610d2c57600f546010546001600160a01b039091169063441a3e7090610bf4610bef86866122aa565b612307565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610c3157600080fd5b505af1158015610c45573d6000803e3d6000fd5b5050600c546001600160a01b03169150632e1a7d4d9050610c64611a6c565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610c9a57600080fd5b505af1158015610cae573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610cfd57600080fd5b505afa158015610d11573d6000803e3d6000fd5b505050506040513d6020811015610d2757600080fd5b505190505b81811115610d375750805b610d3f61134b565b6001600160a01b0316326001600160a01b031614158015610d655750610d636110ad565b155b15610d9d576000610d8d612710610d876006548561232290919063ffffffff16565b9061237b565b9050610d9982826122aa565b9150505b600454600b54610dba916001600160a01b039182169116836123e2565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610de36111fc565b60408051918252519081900360200190a15050565b60105481565b610e0661134b565b6001600160a01b0316336001600160a01b03161480610e2f57506001546001600160a01b031633145b610e6b576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610e73612434565b610e7b6124d7565b610e83611792565b565b610e83326120de565b610e9661134b565b6001600160a01b0316336001600160a01b03161480610ebf57506001546001600160a01b031633145b610efb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610f036112b0565b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015610f5357600080fd5b505af1158015610f67573d6000803e3d6000fd5b5050600c546001600160a01b03169150632e1a7d4d9050610f86611a6c565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610fbc57600080fd5b505af1158015610fd0573d6000803e3d6000fd5b50505050565b61271081565b60115460ff1615610e83576004546001600160a01b03163314610e85576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61103761134b565b6001600160a01b0316336001600160a01b0316148061106057506001546001600160a01b031633145b61109c576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6110a860138383612e87565b505050565b600054600160a01b900460ff1690565b600d546001600160a01b031681565b6110d4612534565b6001600160a01b03166110e561134b565b6001600160a01b03161461112e576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b611158612534565b6001600160a01b031661116961134b565b6001600160a01b0316146111b2576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000611217611209610872565b6112116116a7565b90612538565b905090565b61122461134b565b6001600160a01b0316336001600160a01b0316148061124d57506001546001600160a01b031633145b611289576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b6112b861134b565b6001600160a01b0316336001600160a01b031614806112e157506001546001600160a01b031633145b61131d576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611325612592565b610e8361261b565b600e546001600160a01b031681565b60115460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b60008061137a611abc565b90506000811561150a576003546040805163d06ca61f60e01b8152600481018581526024820192835260148054604484018190526001600160a01b039095169463d06ca61f94889492939290916064909101908490801561140457602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113e6575b5050935050505060006040518083038186803b15801561142357600080fd5b505afa9250505080156114e557506040513d6000823e601f3d908101601f19168201604052602081101561145657600080fd5b810190808051604051939291908464010000000082111561147657600080fd5b90830190602082018581111561148b57600080fd5b82518660208202830111640100000000821117156114a857600080fd5b82525081516020918201928201910280838360005b838110156114d55781810151838201526020016114bd565b5050505090500160405250505060015b6114ee5761150a565b806001825103815181106114fe57fe5b60200260200101519150505b6109006103e8610d876007546115306103e8610d87602d8861232290919063ffffffff16565b90612322565b61153e612534565b6001600160a01b031661154f61134b565b6001600160a01b031614611598576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6115c261134b565b6001600160a01b0316336001600160a01b031614806115eb57506001546001600160a01b031633145b611627576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6032811115611666576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b6014818154811061168d57fe5b6000918252602090912001546001600160a01b0316905081565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116f257600080fd5b505afa158015611706573d6000803e3d6000fd5b505050506040513d602081101561171c57600080fd5b5051905090565b6002546001600160a01b03163314611770576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61179a6110ad565b156117df576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561182a57600080fd5b505afa15801561183e573d6000803e3d6000fd5b505050506040513d602081101561185457600080fd5b5051905080156107d157600c546040805163b6b55f2560e01b81526004810184905290516001600160a01b039092169163b6b55f259160248082019260009290919082900301818387803b1580156118ab57600080fd5b505af11580156118bf573d6000803e3d6000fd5b5050600f546010546001600160a01b03909116925063e2bbb15891506118e3611a6c565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561192057600080fd5b505af1158015611934573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e384266119616111fc565b60408051918252519081900360200190a150565b60085481565b61198361134b565b6001600160a01b0316336001600160a01b031614806119ac57506001546001600160a01b031633145b610e85576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6119f0612534565b6001600160a01b0316611a0161134b565b6001600160a01b031614611a4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116f257600080fd5b603281565b60138054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152600093606093611b7f93830182828015611b4b5780601f10611b2057610100808354040283529160200191611b4b565b820191906000526020600020905b815481529060010190602001808311611b2e57829003601f168201915b5050505050604051806040016040528060118152602001702875696e743235362c616464726573732960781b815250612675565b600f5460105460408051602481019290925230604480840191909152815180840390910181526064909201908190528351939450606093611c43936001600160a01b031692918691819060208401908083835b60208310611bf15780518252601f199092019160209182019101611bd2565b51815160209384036101000a600019018019909216911617905260405191909301819003902091850180516001600160e01b03199093166001600160e01b039093169290921790915250612730915050565b9050808060200190516020811015611c5a57600080fd5b50519250505090565b60125481565b600a546001600160a01b031681565b611c80612534565b6001600160a01b0316611c9161134b565b6001600160a01b031614611cda576040805162461bcd60e51b81526020600482018190526024820152600080516020612fad833981519152604482015290519081900360640190fd5b6001600160a01b038116611d1f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f1b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314611dc2576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015611e1257600080fd5b505af1158015611e26573d6000803e3d6000fd5b5050600c546001600160a01b03169150632e1a7d4d9050611e45611a6c565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611e7b57600080fd5b505af1158015611e8f573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015611ee057600080fd5b505afa158015611ef4573d6000803e3d6000fd5b505050506040513d6020811015611f0a57600080fd5b5051600b54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b158015611f6a57600080fd5b505af1158015611f7e573d6000803e3d6000fd5b505050506040513d60208110156110a857600080fd5b6004546001600160a01b031681565b600c546001600160a01b031681565b801580612038575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561200a57600080fd5b505afa15801561201e573d6000803e3d6000fd5b505050506040513d602081101561203457600080fd5b5051155b6120735760405162461bcd60e51b815260040180806020018281038252603681526020018061301b6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526110a8908490612755565b60606120d48484600085612806565b90505b9392505050565b6120e66110ad565b1561212b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600f5460105460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b15801561218157600080fd5b505af1158015612195573d6000803e3d6000fd5b5050600a54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b1580156121e657600080fd5b505afa1580156121fa573d6000803e3d6000fd5b505050506040513d602081101561221057600080fd5b5051905080156122805761222382612962565b600061222d6116a7565b9050612237611792565b42601255337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826122666111fc565b6040805192835260208301919091528051918290030190a2505b5050565b60006122a4670de0b6b3a7640000610d8761229d612c00565b8590612322565b92915050565b600082821115612301576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006122a4612314612c00565b610d8784670de0b6b3a76400005b600082612331575060006122a4565b8282028284828161233e57fe5b04146120d75760405162461bcd60e51b8152600401808060200182810382526021815260200180612f8c6021913960400191505060405180910390fd5b60008082116123d1576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816123da57fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526110a8908490612755565b61243c6110ad565b612484576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124ba612534565b604080516001600160a01b039092168252519081900360200190a1565b600c54600b546124f6916001600160a01b039182169116600019611fb2565b600f54600c54612515916001600160a01b039182169116600019611fb2565b600354600a54610e83916001600160a01b039182169116600019611fb2565b3390565b6000828201838110156120d7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61259a6110ad565b156125df576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124ba612534565b600c54600b54612639916001600160a01b0391821691166000611fb2565b600f54600c54612657916001600160a01b0391821691166000611fb2565b600354600a54610e83916001600160a01b0391821691166000611fb2565b606082826040516020018083805190602001908083835b602083106126ab5780518252601f19909201916020918201910161268c565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106126f35780518252601f1990920191602091820191016126d4565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052905092915050565b60606120d78383604051806060016040528060258152602001612f6760259139612cda565b60606127aa826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120c59092919063ffffffff16565b8051909150156110a8578080602001905160208110156127c957600080fd5b50516110a85760405162461bcd60e51b815260040180806020018281038252602a815260200180612ff1602a913960400191505060405180910390fd5b6060824710156128475760405162461bcd60e51b8152600401808060200182810382526026815260200180612f416026913960400191505060405180910390fd5b61285085612ddd565b6128a1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106128e05780518252601f1990920191602091820191016128c1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612942576040519150601f19603f3d011682016040523d82523d6000602084013e612947565b606091505b5091509150612957828286612de3565b979650505050505050565b600a54604080516370a0823160e01b815230600482015290516000926129f1926103e892610d8792602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156129bf57600080fd5b505afa1580156129d3573d6000803e3d6000fd5b505050506040513d60208110156129e957600080fd5b505190612322565b9050600360009054906101000a90046001600160a01b03166001600160a01b0316635c11d795826000601430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015612a9d57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612a7f575b50509650505050505050600060405180830381600087803b158015612ac157600080fd5b505af1158015612ad5573d6000803e3d6000fd5b5050600954604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b158015612b2657600080fd5b505afa158015612b3a573d6000803e3d6000fd5b505050506040513d6020811015612b5057600080fd5b5051600754909150600090612b6e906103e890610d87908590612322565b600954909150612b88906001600160a01b031685836123e2565b6000612ba56103e8610d876008548661232290919063ffffffff16565b600554600954919250612bc5916001600160a01b039081169116836123e2565b6000612bd86103e8610d87866070612322565b600254600954919250612bf8916001600160a01b039081169116836123e2565b505050505050565b6000611217600c60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5357600080fd5b505afa158015612c67573d6000803e3d6000fd5b505050506040513d6020811015612c7d57600080fd5b5051600b54600c54604080516370a0823160e01b81526001600160a01b0392831660048201529051610d8793670de0b6b3a76400009316916370a08231916024808301926020929190829003018186803b1580156129bf57600080fd5b6060612ce584612ddd565b612d205760405162461bcd60e51b8152600401808060200182810382526024815260200180612fcd6024913960400191505060405180910390fd5b60006060856001600160a01b0316856040518082805190602001908083835b60208310612d5e5780518252601f199092019160209182019101612d3f565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114612dbe576040519150601f19603f3d011682016040523d82523d6000602084013e612dc3565b606091505b5091509150612dd3828286612de3565b9695505050505050565b3b151590565b60608315612df25750816120d7565b825115612e025782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e4c578181015183820152602001612e34565b50505050905090810190601f168015612e795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ec85782800160ff19823516178555612ef5565b82800160010185558215612ef5579182015b82811115612ef5578235825591602001919060010190612eda565b50612f01929150612f05565b5090565b5b80821115612f015760008155600101612f0656fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220300cde55c3cf1503554106c3258c4f0ac81abfc27b717a447470f61ae3daf1ed64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009a92b5ebf1f6f6f7d93696fcd44e5cf75035a75600000000000000000000000037619cc85325afea778830e184cb60a3abc9210b00000000000000000000000000000000000000000000000000000000000000140000000000000000000000001f4b7660b6adc3943b5038e3426b33c1c0e343e6000000000000000000000000e173782e5cc62f1c3277749eea9c5daf182d7c660000000000000000000000002d4e873f9ab279da9f1bb2c532d4f06f67755b7700000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d0000000000000000000000006dcab4d155cffa74e65056fdc94164732d611e850000000000000000000000006650e6a8a8ed9464b466fd2fd5d74ffda4fd2fab000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000020000000000000000000000009a92b5ebf1f6f6f7d93696fcd44e5cf75035a75600000000000000000000000098878b06940ae243284ca214f92bb71a2b032b8a
-----Decoded View---------------
Arg [0] : _want (address): 0x9A92B5EBf1F6F6f7d93696FCD44e5Cf75035A756
Arg [1] : _bar (address): 0x37619cC85325aFea778830e184CB60a3ABc9210B
Arg [2] : _poolId (uint256): 20
Arg [3] : _chef (address): 0x1f4b7660b6AdC3943b5038e3426B33c1c0e343E6
Arg [4] : _vault (address): 0xe173782e5Cc62f1C3277749EEa9c5Daf182d7C66
Arg [5] : _unirouter (address): 0x2d4e873f9Ab279da9f1bb2c532d4F06f67755b77
Arg [6] : _keeper (address): 0x10aee6B5594942433e7Fc2783598c979B030eF3D
Arg [7] : _strategist (address): 0x6dcAB4d155CFfa74E65056fdC94164732D611E85
Arg [8] : _beefyFeeRecipient (address): 0x6650e6a8A8eD9464B466Fd2fD5d74ffDA4Fd2fab
Arg [9] : _outputToNativeRoute (address[]): 0x9A92B5EBf1F6F6f7d93696FCD44e5Cf75035A756,0x98878B06940aE243284CA214f92Bb71a2b032B8A
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000009a92b5ebf1f6f6f7d93696fcd44e5cf75035a756
Arg [1] : 00000000000000000000000037619cc85325afea778830e184cb60a3abc9210b
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 0000000000000000000000001f4b7660b6adc3943b5038e3426b33c1c0e343e6
Arg [4] : 000000000000000000000000e173782e5cc62f1c3277749eea9c5daf182d7c66
Arg [5] : 0000000000000000000000002d4e873f9ab279da9f1bb2c532d4f06f67755b77
Arg [6] : 00000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
Arg [7] : 0000000000000000000000006dcab4d155cffa74e65056fdc94164732d611e85
Arg [8] : 0000000000000000000000006650e6a8a8ed9464b466fd2fd5d74ffda4fd2fab
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 0000000000000000000000009a92b5ebf1f6f6f7d93696fcd44e5cf75035a756
Arg [12] : 00000000000000000000000098878b06940ae243284ca214f92bb71a2b032b8a
Deployed Bytecode Sourcemap
49038:8681:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51902:105;;;;;;;;;;;;;;;;-1:-1:-1;51902:105:0;-1:-1:-1;;;;;51902:105:0;;:::i;:::-;;55576:262;;;;;;;;;;;;;;;;-1:-1:-1;55576:262:0;;;;:::i;53924:221::-;;;:::i;:::-;;;;;;;;;;;;;;;;49183:21;;;:::i;:::-;;;;-1:-1:-1;;;;;49183:21:0;;;;;;;;;;;;;;57145:112;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49239:19;;;:::i;49382:::-;;;:::i;45378:25::-;;;:::i;45410:24::-;;;:::i;48305:200::-;;;;;;;;;;;;;;;;-1:-1:-1;48305:200:0;;:::i;49506:40::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48017:39;;;:::i;50819:803::-;;;;;;;;;;;;;;;;-1:-1:-1;50819:803:0;;:::i;49408:21::-;;;:::i;56606:121::-;;;:::i;51820:74::-;;;:::i;56330:165::-;;;:::i;48116:43::-;;;:::i;51630:182::-;;;:::i;54335:180::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54335:180:0;;-1:-1:-1;54335:180:0;-1:-1:-1;54335:180:0;:::i;43669:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;49290:23;;;:::i;47238:86::-;;;;;;;;;;;;;;;;-1:-1:-1;47238:86:0;-1:-1:-1;;;;;47238:86:0;;:::i;42020:148::-;;;:::i;53542:113::-;;;:::i;46510:92::-;;;;;;;;;;;;;;;;-1:-1:-1;46510:92:0;-1:-1:-1;;;;;46510:92:0;;:::i;47927:41::-;;;:::i;56503:95::-;;;:::i;49320:23::-;;;:::i;49438:28::-;;;:::i;48168:30::-;;;:::i;41369:87::-;;;:::i;45468:32::-;;;:::i;48207:25::-;;;:::i;55060:508::-;;;:::i;47459:134::-;;;;;;;;;;;;;;;;-1:-1:-1;47459:134:0;-1:-1:-1;;;;;47459:134:0;;:::i;48513:154::-;;;;;;;;;;;;;;;;-1:-1:-1;48513:154:0;;:::i;45350:21::-;;;:::i;47975:35::-;;;:::i;49570:36::-;;;;;;;;;;;;;;;;-1:-1:-1;49570:36:0;;:::i;53722:118::-;;;:::i;46747:155::-;;;;;;;;;;;;;;;;-1:-1:-1;46747:155:0;-1:-1:-1;;;;;46747:155:0;;:::i;50507:304::-;;;:::i;48239:57::-;;;:::i;52015:85::-;;;:::i;47034:102::-;;;;;;;;;;;;;;;;-1:-1:-1;47034:102:0;-1:-1:-1;;;;;47034:102:0;;:::i;54211:116::-;;;:::i;48065:44::-;;;:::i;54559:444::-;;;:::i;49473:26::-;;;:::i;49211:21::-;;;:::i;42323:244::-;;;;;;;;;;;;;;;;-1:-1:-1;42323:244:0;-1:-1:-1;;;;;42323:244:0;;:::i;55938:310::-;;;:::i;45441:20::-;;;:::i;49265:18::-;;;:::i;51902:105::-;51973:26;51982:16;51973:8;:26::i;:::-;51902:105;:::o;55576:262::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;55661:16:::1;:36:::0;;-1:-1:-1;;55661:36:0::1;::::0;::::1;;;::::0;;;;::::1;55714:16;55710:121;;;55747:19;55764:1;55747:16;:19::i;:::-;55710:121;;;55799:20;55816:2;55799:16;:20::i;53924:221::-:0;54022:4;;54037:6;;54010:49;;;-1:-1:-1;;;54010:49:0;;;;;;;;;54053:4;54010:49;;;;;;53970:7;;;;-1:-1:-1;;;;;54022:4:0;;;;54010:26;;:49;;;;;;;;;;54022:4;54010:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54010:49:0;;-1:-1:-1;54070:15:0;54088:24;54010:49;54088:16;:24::i;:::-;54070:42;-1:-1:-1;;;53924:221:0;:::o;49183:21::-;;;-1:-1:-1;;;;;49183:21:0;;:::o;57145:112::-;57194:16;57230:19;57223:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57223:26:0;;;;;;;;;;;;;;;;;;;;;;;57145:112;:::o;49239:19::-;;;-1:-1:-1;;;;;49239:19:0;;:::o;49382:::-;;;-1:-1:-1;;;;;49382:19:0;;:::o;45378:25::-;;;-1:-1:-1;;;;;45378:25:0;;:::o;45410:24::-;;;-1:-1:-1;;;;;45410:24:0;;:::o;48305:200::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;48053:3:::1;48377:4;:20;;48369:37;;;::::0;;-1:-1:-1;;;48369:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;48369:37:0;;;;;;;;;;;;;::::1;;48427:7;:14:::0;;;48463:24;:34:::1;48452:8;:45:::0;48305:200::o;49506:40::-;;;;;;;;;;;;;;;-1:-1:-1;;49506:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48017:39::-;48053:3;48017:39;:::o;50819:803::-;50896:5;;-1:-1:-1;;;;;50896:5:0;50882:10;:19;50874:38;;;;;-1:-1:-1;;;50874:38:0;;;;;;;;;;;;-1:-1:-1;;;50874:38:0;;;;;;;;;;;;;;;50950:4;;50943:37;;;-1:-1:-1;;;50943:37:0;;50974:4;50943:37;;;;;;50925:15;;-1:-1:-1;;;;;50950:4:0;;50943:22;;:37;;;;;;;;;;;;;;50950:4;50943:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50943:37:0;;-1:-1:-1;50997:17:0;;;50993:239;;;51043:4;;51058:6;;-1:-1:-1;;;;;51043:4:0;;;;51031:26;;51066:38;51083:20;:7;51095;51083:11;:20::i;:::-;51066:16;:38::i;:::-;51031:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51129:3:0;;-1:-1:-1;;;;;51129:3:0;;-1:-1:-1;51120:22:0;;-1:-1:-1;51143:14:0;:12;:14::i;:::-;51120:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51190:4:0;;51183:37;;;-1:-1:-1;;;51183:37:0;;51214:4;51183:37;;;;;;-1:-1:-1;;;;;51190:4:0;;;;-1:-1:-1;51183:22:0;;-1:-1:-1;51183:37:0;;;;;;;;;;;;;;;51190:4;51183:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51183:37:0;;-1:-1:-1;50993:239:0;51258:7;51248;:17;51244:67;;;-1:-1:-1;51292:7:0;51244:67;51340:7;:5;:7::i;:::-;-1:-1:-1;;;;;51327:20:0;:9;-1:-1:-1;;;;;51327:20:0;;;:33;;;;;51352:8;:6;:8::i;:::-;51351:9;51327:33;51323:199;;;51377:27;51407:46;48154:5;51407:26;51419:13;;51407:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;51377:76;-1:-1:-1;51478:32:0;:7;51377:76;51478:11;:32::i;:::-;51468:42;;51323:199;;51560:5;;51541:4;;51534:41;;-1:-1:-1;;;;;51541:4:0;;;;51560:5;51567:7;51534:25;:41::i;:::-;51593:21;51602:11;:9;:11::i;:::-;51593:21;;;;;;;;;;;;;;;50819:803;;:::o;49408:21::-;;;;:::o;56606:121::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;56657:10:::1;:8;:10::i;:::-;56680:17;:15;:17::i;:::-;56710:9;:7;:9::i;:::-;56606:121::o:0;51820:74::-;51867:19;51876:9;51867:8;:19::i;56330:165::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;56377:7:::1;:5;:7::i;:::-;56407:4;::::0;56431:6:::1;::::0;56395:43:::1;::::0;;-1:-1:-1;;;56395:43:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;56407:4:0;;::::1;::::0;56395:35:::1;::::0;:43;;;;;56407:4:::1;::::0;56395:43;;;;;;;;56407:4;;56395:43;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;56458:3:0::1;::::0;-1:-1:-1;;;;;56458:3:0::1;::::0;-1:-1:-1;56449:22:0::1;::::0;-1:-1:-1;56472:14:0::1;:12;:14::i;:::-;56449:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56330:165::o:0;48116:43::-;48154:5;48116:43;:::o;51630:182::-;51688:16;;;;51684:121;;;51743:5;;-1:-1:-1;;;;;51743:5:0;51729:10;:19;51721:38;;;;;-1:-1:-1;;;51721:38:0;;;;;;;;;;;;-1:-1:-1;;;51721:38:0;;;;;;;;;;;;;;54335:180;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;54451:56:::1;:26;54480:27:::0;;54451:56:::1;:::i;:::-;;54335:180:::0;;:::o;43669:86::-;43716:4;43740:7;-1:-1:-1;;;43740:7:0;;;;;43669:86::o;49290:23::-;;;-1:-1:-1;;;;;49290:23:0;;:::o;47238:86::-;41600:12;:10;:12::i;:::-;-1:-1:-1;;;;;41589:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41589:23:0;;41581:68;;;;;-1:-1:-1;;;41581:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41581:68:0;;;;;;;;;;;;;;;47302:5:::1;:14:::0;;-1:-1:-1;;;;;;47302:14:0::1;-1:-1:-1::0;;;;;47302:14:0;;;::::1;::::0;;;::::1;::::0;;47238:86::o;42020:148::-;41600:12;:10;:12::i;:::-;-1:-1:-1;;;;;41589:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41589:23:0;;41581:68;;;;;-1:-1:-1;;;41581:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41581:68:0;;;;;;;;;;;;;;;42127:1:::1;42111:6:::0;;42090:40:::1;::::0;-1:-1:-1;;;;;42111:6:0;;::::1;::::0;42090:40:::1;::::0;42127:1;;42090:40:::1;42158:1;42141:19:::0;;-1:-1:-1;;;;;;42141:19:0::1;::::0;;42020:148::o;53542:113::-;53584:7;53611:36;53631:15;:13;:15::i;:::-;53611;:13;:15::i;:::-;:19;;:36::i;:::-;53604:43;;53542:113;:::o;46510:92::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;46578:6:::1;:16:::0;;-1:-1:-1;;;;;;46578:16:0::1;-1:-1:-1::0;;;;;46578:16:0;;;::::1;::::0;;;::::1;::::0;;46510:92::o;47927:41::-;47965:3;47927:41;:::o;56503:95::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;56550:8:::1;:6;:8::i;:::-;56571:19;:17;:19::i;49320:23::-:0;;;-1:-1:-1;;;;;49320:23:0;;:::o;49438:28::-;;;;;;:::o;48168:30::-;;;;:::o;41369:87::-;41415:7;41442:6;-1:-1:-1;;;;;41442:6:0;41369:87;:::o;45468:32::-;;;-1:-1:-1;;;;;45468:32:0;;:::o;48207:25::-;;;;:::o;55060:508::-;55103:7;55123:17;55143:18;:16;:18::i;:::-;55123:38;-1:-1:-1;55172:17:0;55204:13;;55200:288;;55253:9;;55238:71;;;-1:-1:-1;;;55238:71:0;;;;;;;;;;;;;;55289:19;55238:71;;;;;;;;-1:-1:-1;;;;;55253:9:0;;;;55238:39;;55278:9;;55289:19;;55238:71;;;;;;;;55289:19;;55238:71;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55238:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55238:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55238:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55234:243;;;;;55409:9;55437:1;55419:9;:16;:19;55409:30;;;;;;;;;;;;;;55397:42;;55327:128;55234:243;55507:53;48006:4;55507:40;55539:7;;55507:27;55529:4;55507:17;55521:2;55507:9;:13;;:17;;;;:::i;:27::-;:31;;:40::i;47459:134::-;41600:12;:10;:12::i;:::-;-1:-1:-1;;;;;41589:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41589:23:0;;41581:68;;;;;-1:-1:-1;;;41581:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41581:68:0;;;;;;;;;;;;;;;47547:17:::1;:38:::0;;-1:-1:-1;;;;;;47547:38:0::1;-1:-1:-1::0;;;;;47547:38:0;;;::::1;::::0;;;::::1;::::0;;47459:134::o;48513:154::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;;48107:2:::1;48591:4;:26;;48583:43;;;::::0;;-1:-1:-1;;;48583:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;48583:43:0;;;;;;;;;;;;;::::1;;48639:13;:20:::0;48513:154::o;45350:21::-;;;-1:-1:-1;;;;;45350:21:0;;:::o;47975:35::-;48006:4;47975:35;:::o;49570:36::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49570:36:0;;-1:-1:-1;49570:36:0;:::o;53722:118::-;53802:4;;53795:37;;;-1:-1:-1;;;53795:37:0;;53826:4;53795:37;;;;;;53768:7;;-1:-1:-1;;;;;53802:4:0;;53795:22;;:37;;;;;;;;;;;;;;53802:4;53795:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53795:37:0;;-1:-1:-1;53722:118:0;:::o;46747:155::-;46833:10;;-1:-1:-1;;;;;46833:10:0;46819;:24;46811:48;;;;;-1:-1:-1;;;46811:48:0;;;;;;;;;;;;-1:-1:-1;;;46811:48:0;;;;;;;;;;;;;;;46870:10;:24;;-1:-1:-1;;;;;;46870:24:0;-1:-1:-1;;;;;46870:24:0;;;;;;;;;;46747:155::o;50507:304::-;43995:8;:6;:8::i;:::-;43994:9;43986:38;;;;;-1:-1:-1;;;43986:38:0;;;;;;;;;;;;-1:-1:-1;;;43986:38:0;;;;;;;;;;;;;;;50583:4:::1;::::0;50576:37:::1;::::0;;-1:-1:-1;;;50576:37:0;;50607:4:::1;50576:37;::::0;::::1;::::0;;;50558:15:::1;::::0;-1:-1:-1;;;;;50583:4:0::1;::::0;50576:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;50583:4;50576:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;50576:37:0;;-1:-1:-1;50630:11:0;;50626:178:::1;;50667:3;::::0;50658:30:::1;::::0;;-1:-1:-1;;;50658:30:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;50667:3:0;;::::1;::::0;50658:21:::1;::::0;:30;;;;;50667:3:::1;::::0;50658:30;;;;;;;;50667:3;;50658:30;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50715:4:0::1;::::0;50729:6:::1;::::0;-1:-1:-1;;;;;50715:4:0;;::::1;::::0;-1:-1:-1;50703:25:0::1;::::0;-1:-1:-1;50737:14:0::1;:12;:14::i;:::-;50703:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50772:20;50780:11;:9;:11::i;:::-;50772:20;::::0;;;;;;;;;;::::1;::::0;;::::1;44035:1;50507:304::o:0;48239:57::-;;;;:::o;52015:85::-;46327:7;:5;:7::i;:::-;-1:-1:-1;;;;;46313:21:0;:10;-1:-1:-1;;;;;46313:21:0;;:45;;;-1:-1:-1;46352:6:0;;-1:-1:-1;;;;;46352:6:0;46338:10;:20;46313:45;46305:66;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;-1:-1:-1;;;46305:66:0;;;;;;;;;;;;;;47034:102;41600:12;:10;:12::i;:::-;-1:-1:-1;;;;;41589:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41589:23:0;;41581:68;;;;;-1:-1:-1;;;41581:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41581:68:0;;;;;;;;;;;;;;;47106:9:::1;:22:::0;;-1:-1:-1;;;;;;47106:22:0::1;-1:-1:-1::0;;;;;47106:22:0;;;::::1;::::0;;;::::1;::::0;;47034:102::o;54211:116::-;54290:3;;54283:36;;;-1:-1:-1;;;54283:36:0;;54313:4;54283:36;;;;;;54256:7;;-1:-1:-1;;;;;54290:3:0;;54283:21;;:36;;;;;;;;;;;;;;54290:3;54283:36;;;;;;;;;;48065:44;48107:2;48065:44;:::o;54559:444::-;54673:26;54654:67;;;;;;;;-1:-1:-1;;54654:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54608:7;;54628:23;;54654:67;;;;54673:26;54654:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;54654:67:0;;;:18;:67::i;:::-;54795:4;;54884:6;;54814:123;;;;;;;;;;54917:4;54814:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;54628:93;;-1:-1:-1;54732:19:0;;54754:194;;-1:-1:-1;;;;;54795:4:0;;54814:123;54628:93;;54814:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54814:123:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54814:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54814:123:0;;;-1:-1:-1;;;;;54814:123:0;;;;;;;;;;-1:-1:-1;54754:26:0;;-1:-1:-1;;54754:194:0:i;:::-;54732:216;;54977:6;54966:29;;;;;;;;;;;;;;;-1:-1:-1;54966:29:0;;-1:-1:-1;;;54559:444:0;:::o;49473:26::-;;;;:::o;49211:21::-;;;-1:-1:-1;;;;;49211:21:0;;:::o;42323:244::-;41600:12;:10;:12::i;:::-;-1:-1:-1;;;;;41589:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41589:23:0;;41581:68;;;;;-1:-1:-1;;;41581:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;41581:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42412:22:0;::::1;42404:73;;;;-1:-1:-1::0;;;42404:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42514:6;::::0;;42493:38:::1;::::0;-1:-1:-1;;;;;42493:38:0;;::::1;::::0;42514:6;::::1;::::0;42493:38:::1;::::0;::::1;42542:6;:17:::0;;-1:-1:-1;;;;;;42542:17:0::1;-1:-1:-1::0;;;;;42542:17:0;;;::::1;::::0;;;::::1;::::0;;42323:244::o;55938:310::-;56003:5;;-1:-1:-1;;;;;56003:5:0;55989:10;:19;55981:38;;;;;-1:-1:-1;;;55981:38:0;;;;;;;;;;;;-1:-1:-1;;;55981:38:0;;;;;;;;;;;;;;;56044:4;;56068:6;;56032:43;;;-1:-1:-1;;;56032:43:0;;;;;;;;;;-1:-1:-1;;;;;56044:4:0;;;;56032:35;;:43;;;;;56044:4;;56032:43;;;;;;;;56044:4;;56032:43;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56095:3:0;;-1:-1:-1;;;;;56095:3:0;;-1:-1:-1;56086:22:0;;-1:-1:-1;56109:14:0;:12;:14::i;:::-;56086:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56162:4:0;;56155:37;;;-1:-1:-1;;;56155:37:0;;56186:4;56155:37;;;;;;56137:15;;-1:-1:-1;;;;;;56162:4:0;;;;-1:-1:-1;56155:22:0;;:37;;;;;;;;;;;;;;56162:4;56155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56155:37:0;56210:4;;56225:5;;;56203:37;;;-1:-1:-1;;;56203:37:0;;-1:-1:-1;;;;;56225:5:0;;;56203:37;;;;;;;;;;;;;;56155;;-1:-1:-1;56210:4:0;;;;56203:21;;:37;;;;;56155;;56203;;;;;;;;56210:4;;56203:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45441:20;;;-1:-1:-1;;;;;45441:20:0;;:::o;49265:18::-;;;-1:-1:-1;;;;;49265:18:0;;:::o;31737:622::-;32107:10;;;32106:62;;-1:-1:-1;32123:39:0;;;-1:-1:-1;;;32123:39:0;;32147:4;32123:39;;;;-1:-1:-1;;;;;32123:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32123:39:0;:44;32106:62;32098:152;;;;-1:-1:-1;;;32098:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32288:62;;;-1:-1:-1;;;;;32288:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32288:62:0;-1:-1:-1;;;32288:62:0;;;32261:90;;32281:5;;32261:19;:90::i;26065:195::-;26168:12;26200:52;26222:6;26230:4;26236:1;26239:12;26200:21;:52::i;:::-;26193:59;;26065:195;;;;;;:::o;52163:472::-;43995:8;:6;:8::i;:::-;43994:9;43986:38;;;;;-1:-1:-1;;;43986:38:0;;;;;;;;;;;;-1:-1:-1;;;43986:38:0;;;;;;;;;;;;;;;52253:4:::1;::::0;52267:6:::1;::::0;52241:36:::1;::::0;;-1:-1:-1;;;52241:36:0;;::::1;::::0;::::1;::::0;;;;52253:4:::1;52241:36:::0;;;;;;;;-1:-1:-1;;;;;52253:4:0;;::::1;::::0;52241:25:::1;::::0;:36;;;;;52253:4;52241:36;;;;;;52253:4;;52241:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52315:6:0::1;::::0;52308:39:::1;::::0;;-1:-1:-1;;;52308:39:0;;52341:4:::1;52308:39;::::0;::::1;::::0;;;52288:17:::1;::::0;-1:-1:-1;;;;;;52315:6:0;;::::1;::::0;-1:-1:-1;52308:24:0::1;::::0;:39;;;;;::::1;::::0;;;;;;;;52315:6;52308:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;52308:39:0;;-1:-1:-1;52362:13:0;;52358:270:::1;;52392:28;52403:16;52392:10;:28::i;:::-;52435:21;52459:15;:13;:15::i;:::-;52435:39;;52489:9;:7;:9::i;:::-;52529:15;52515:11;:29:::0;52577:10:::1;52564:52;52589:13:::0;52604:11:::1;:9;:11::i;:::-;52564:52;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;52358:270;;44035:1;52163:472:::0;:::o;57432:138::-;57498:7;57525:37;57557:4;57525:27;57537:14;:12;:14::i;:::-;57525:7;;:11;:27::i;:37::-;57518:44;57432:138;-1:-1:-1;;57432:138:0:o;7113:158::-;7171:7;7204:1;7199;:6;;7191:49;;;;;-1:-1:-1;;;7191:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7258:5:0;;;7113:158::o;57578:138::-;57644:7;57671:37;57693:14;:12;:14::i;:::-;57671:17;:7;57683:4;7530:220;7588:7;7612:6;7608:20;;-1:-1:-1;7627:1:0;7620:8;;7608:20;7651:5;;;7655:1;7651;:5;:1;7675:5;;;;;:10;7667:56;;;;-1:-1:-1;;;7667:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8228:153;8286:7;8318:1;8314;:5;8306:44;;;;;-1:-1:-1;;;8306:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8372:1;8368;:5;;;;;;;8228:153;-1:-1:-1;;;8228:153:0:o;31078:177::-;31188:58;;;-1:-1:-1;;;;;31188:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31188:58:0;-1:-1:-1;;;31188:58:0;;;31161:86;;31181:5;;31161:19;:86::i;44728:120::-;44272:8;:6;:8::i;:::-;44264:41;;;;;-1:-1:-1;;;44264:41:0;;;;;;;;;;;;-1:-1:-1;;;44264:41:0;;;;;;;;;;;;;;;44797:5:::1;44787:15:::0;;-1:-1:-1;;;;44787:15:0::1;::::0;;44818:22:::1;44827:12;:10;:12::i;:::-;44818:22;::::0;;-1:-1:-1;;;;;44818:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;44728:120::o:0;56735:211::-;56807:3;;56789:4;;56782:42;;-1:-1:-1;;;;;56789:4:0;;;;56807:3;-1:-1:-1;;56782:24:0;:42::i;:::-;56859:4;;56842:3;;56835:42;;-1:-1:-1;;;;;56842:3:0;;;;56859:4;-1:-1:-1;;56835:23:0;:42::i;:::-;56915:9;;56895:6;;56888:50;;-1:-1:-1;;;;;56895:6:0;;;;56915:9;-1:-1:-1;;56888:26:0;:50::i;673:106::-;761:10;673:106;:::o;6651:179::-;6709:7;6741:5;;;6765:6;;;;6757:46;;;;;-1:-1:-1;;;6757:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;44469:118;43995:8;:6;:8::i;:::-;43994:9;43986:38;;;;;-1:-1:-1;;;43986:38:0;;;;;;;;;;;;-1:-1:-1;;;43986:38:0;;;;;;;;;;;;;;;44529:7:::1;:14:::0;;-1:-1:-1;;;;44529:14:0::1;-1:-1:-1::0;;;44529:14:0::1;::::0;;44559:20:::1;44566:12;:10;:12::i;56954:183::-:0;57028:3;;57010:4;;57003:32;;-1:-1:-1;;;;;57010:4:0;;;;57028:3;;57003:24;:32::i;:::-;57070:4;;57053:3;;57046:32;;-1:-1:-1;;;;;57053:3:0;;;;57070:4;;57046:23;:32::i;:::-;57116:9;;57096:6;;57089:40;;-1:-1:-1;;;;;57096:6:0;;;;57116:9;;57089:26;:40::i;48790:144::-;48863:13;48920:1;48923;48903:22;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48903:22:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48903:22:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48903:22:0;;;;;;;;;;;;;-1:-1:-1;;48903:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48889:37;;48790:144;;;;:::o;27832:199::-;27918:12;27950:73;27969:6;27977:4;27950:73;;;;;;;;;;;;;;;;;:18;:73::i;33383:761::-;33807:23;33833:69;33861:4;33833:69;;;;;;;;;;;;;;;;;33841:5;-1:-1:-1;;;;;33833:27:0;;;:69;;;;;:::i;:::-;33917:17;;33807:95;;-1:-1:-1;33917:21:0;33913:224;;34059:10;34048:30;;;;;;;;;;;;;;;-1:-1:-1;34048:30:0;34040:85;;;;-1:-1:-1;;;34040:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27117:530;27244:12;27302:5;27277:21;:30;;27269:81;;;;-1:-1:-1;;;27269:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27369:18;27380:6;27369:10;:18::i;:::-;27361:60;;;;;-1:-1:-1;;;27361:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27495:12;27509:23;27536:6;-1:-1:-1;;;;;27536:11:0;27556:5;27564:4;27536:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27536:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27494:75;;;;27587:52;27605:7;27614:10;27626:12;27587:17;:52::i;:::-;27580:59;27117:530;-1:-1:-1;;;;;;;27117:530:0:o;52668:800::-;52760:6;;52753:39;;;-1:-1:-1;;;52753:39:0;;52786:4;52753:39;;;;;;52734:16;;52753:57;;52805:4;;52753:47;;52797:2;;-1:-1:-1;;;;;52760:6:0;;;;52753:24;;:39;;;;;;;;;;;;;;;52760:6;52753:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52753:39:0;;:43;:47::i;:57::-;52734:76;;52836:9;;;;;;;;;-1:-1:-1;;;;;52836:9:0;-1:-1:-1;;;;;52821:79:0;;52901:8;52911:1;52914:19;52943:4;52950:3;52821:133;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52821:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52821:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52994:6:0;;52987:39;;;-1:-1:-1;;;52987:39:0;;53020:4;52987:39;;;;;;52967:17;;-1:-1:-1;;;;;;52994:6:0;;;;-1:-1:-1;52987:24:0;;:39;;;;;;;;;;;;;;52994:6;52987:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52987:39:0;53077:7;;52987:39;;-1:-1:-1;53039:21:0;;53063:35;;48006:4;;53063:22;;52987:39;;53063:13;:22::i;:35::-;53116:6;;53039:59;;-1:-1:-1;53109:60:0;;-1:-1:-1;;;;;53116:6:0;53137:16;53039:59;53109:27;:60::i;:::-;53182:22;53207:36;48006:4;53207:23;53221:8;;53207:9;:13;;:23;;;;:::i;:36::-;53282:17;;53261:6;;53182:61;;-1:-1:-1;53254:62:0;;-1:-1:-1;;;;;53261:6:0;;;;53282:17;53182:61;53254:27;:62::i;:::-;53329:21;53353:42;48006:4;53353:29;:9;47965:3;53353:13;:29::i;:42::-;53434:10;;53413:6;;53329:66;;-1:-1:-1;53406:54:0;;-1:-1:-1;;;;;53413:6:0;;;;53434:10;53329:66;53406:27;:54::i;:::-;52668:800;;;;;;:::o;57265:159::-;57312:7;57339:77;57397:3;;;;;;;;;-1:-1:-1;;;;;57397:3:0;-1:-1:-1;;;;;57390:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57390:25:0;57346:4;;57370:3;;57339:36;;;-1:-1:-1;;;57339:36:0;;-1:-1:-1;;;;;57370:3:0;;;57339:36;;;;;;:46;;57380:4;;57346;;57339:22;;:36;;;;;57390:25;;57339:36;;;;;;;57346:4;57339:36;;;;;;;;;;28223:422;28337:12;28370:18;28381:6;28370:10;:18::i;:::-;28362:67;;;;-1:-1:-1;;;28362:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28503:12;28517:23;28544:6;-1:-1:-1;;;;;28544:17:0;28562:4;28544:23;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28544:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28502:65;;;;28585:52;28603:7;28612:10;28624:12;28585:17;:52::i;:::-;28578:59;28223:422;-1:-1:-1;;;;;;28223:422:0:o;23147:::-;23514:20;23553:8;;;23147:422::o;29657:742::-;29772:12;29801:7;29797:595;;;-1:-1:-1;29832:10:0;29825:17;;29797:595;29946:17;;:21;29942:439;;30209:10;30203:17;30270:15;30257:10;30253:2;30249:19;30242:44;30157:148;30352:12;30345:20;;-1:-1:-1;;;30345:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;
Swarm Source
ipfs://300cde55c3cf1503554106c3258c4f0ac81abfc27b717a447470f61ae3daf1ed
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MOVR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.