Contract
0x9d55caee108abdd4c47e42088c97eca43510e969
1
Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x313fc011b78ebb7e610141c5bbf948291d3fa9b27dd4b30d91a22e493bbf8860 | 6281143 | 411 days 9 hrs ago | Beefy Finance: Deployer 2 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
StrategyMasterChefLP
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-05-13 */ /** *Submitted for verification at FtmScan.com on 2021-05-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.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. */ 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 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/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @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 in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.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; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.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: @openzeppelin/contracts/utils/Pausable.sol pragma solidity ^0.6.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. */ 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 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/interfaces/common/IUniswapRouterETH.sol pragma solidity ^0.6.0; interface IUniswapRouterETH { function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); } // File: contracts/BIFI/interfaces/common/IUniswapV2Pair.sol pragma solidity ^0.6.0; interface IUniswapV2Pair { function token0() external view returns (address); function token1() external view returns (address); } // File: contracts/BIFI/interfaces/pancake/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 pendingCake(uint256 _pid, address _user) external view returns (uint256); function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function emergencyWithdraw(uint256 _pid) external; } pragma solidity ^0.6.12; contract StratManager is Ownable, Pausable { /** * @dev Beefy Contracts: * {keeper} - Address to manage a few lower risk features of the strat * {strategist} - Address of the strategy author/deployer where strategist fee will go. * {vault} - Address of the vault that controls the strategy's funds. * {unirouter} - Address of exchange to execute swaps. */ address public keeper; address public strategist; address public unirouter; address public vault; address public beefyFeeRecipient; /** * @dev Initializes the base strategy. * @param _keeper address to use as alternative owner. * @param _strategist address where strategist fees go. * @param _unirouter router to use for swaps * @param _vault address of parent vault. * @param _beefyFeeRecipient address where to send Beefy's fees. */ constructor( address _keeper, address _strategist, address _unirouter, address _vault, address _beefyFeeRecipient ) public { keeper = _keeper; strategist = _strategist; unirouter = _unirouter; vault = _vault; beefyFeeRecipient = _beefyFeeRecipient; } // checks that caller is either owner or keeper. modifier onlyManager() { require(msg.sender == owner() || msg.sender == keeper, "!manager"); _; } // verifies that the caller is not a contract. modifier onlyEOA() { require(msg.sender == tx.origin, "!EOA"); _; } /** * @dev Updates address of the strat keeper. * @param _keeper new keeper address. */ function setKeeper(address _keeper) external onlyManager { keeper = _keeper; } /** * @dev Updates address where strategist fee earnings will go. * @param _strategist new strategist address. */ function setStrategist(address _strategist) external { require(msg.sender == strategist, "!strategist"); strategist = _strategist; } /** * @dev Updates router that will be used for swaps. * @param _unirouter new unirouter address. */ function setUnirouter(address _unirouter) external onlyOwner { unirouter = _unirouter; } /** * @dev Updates parent vault. * @param _vault new vault address. */ function setVault(address _vault) external onlyOwner { vault = _vault; } /** * @dev Updates beefy fee recipient. * @param _beefyFeeRecipient new beefy fee recipient address. */ function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner { beefyFeeRecipient = _beefyFeeRecipient; } /** * @dev Function to synchronize balances before new user deposit. * Can be overridden in the strategy. */ function beforeDeposit() external virtual {} } 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) external onlyManager { require(_fee <= MAX_CALL_FEE, "!cap"); callFee = _fee; beefyFee = MAX_FEE - STRATEGIST_FEE - callFee; } function setWithdrawalFee(uint256 _fee) external onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; } } pragma solidity ^0.6.0; contract StrategyMasterChefLP is StratManager, FeeManager { using SafeERC20 for IERC20; using SafeMath for uint256; // Tokens used address constant public wrapped = address(0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83); address constant public output = address(0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE); address public want; address public lpToken0; address public lpToken1; // Third party contracts address constant public masterchef = address(0x2b2929E785374c651a81A63878Ab22742656DcDd); uint256 public poolId; // Routes address[] public outputToWrappedRoute = [output, wrapped]; address[] public outputToLp0Route; address[] public outputToLp1Route; /** * @dev Event that is fired each time someone harvests the strat. */ event StratHarvest(address indexed harvester); constructor( address _want, uint256 _poolId, address _vault, address _unirouter, address _keeper, address _strategist, address _beefyFeeRecipient ) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public { want = _want; lpToken0 = IUniswapV2Pair(want).token0(); lpToken1 = IUniswapV2Pair(want).token1(); poolId = _poolId; if (lpToken0 == wrapped) { outputToLp0Route = [output, wrapped]; } else if (lpToken0 != output) { outputToLp0Route = [output, wrapped, lpToken0]; } if (lpToken1 == wrapped) { outputToLp1Route = [output, wrapped]; } else if (lpToken1 != output) { outputToLp1Route = [output, wrapped, lpToken1]; } _giveAllowances(); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal > 0) { IMasterChef(masterchef).deposit(poolId, wantBal); } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal < _amount) { IMasterChef(masterchef).withdraw(poolId, _amount.sub(wantBal)); wantBal = IERC20(want).balanceOf(address(this)); } if (wantBal > _amount) { wantBal = _amount; } if (tx.origin == owner() || paused()) { IERC20(want).safeTransfer(vault, wantBal); } else { uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX); IERC20(want).safeTransfer(vault, wantBal.sub(withdrawalFeeAmount)); } } // compounds earnings and charges performance fee function harvest() external whenNotPaused onlyEOA { IMasterChef(masterchef).deposit(poolId, 0); chargeFees(); addLiquidity(); deposit(); emit StratHarvest(msg.sender); } // performance fees function chargeFees() internal { uint256 toWrapped = IERC20(output).balanceOf(address(this)).mul(45).div(1000); IUniswapRouterETH(unirouter).swapExactTokensForTokens(toWrapped, 0, outputToWrappedRoute, address(this), now); uint256 wrappedBal = IERC20(wrapped).balanceOf(address(this)); uint256 callFeeAmount = wrappedBal.mul(callFee).div(MAX_FEE); IERC20(wrapped).safeTransfer(msg.sender, callFeeAmount); uint256 beefyFeeAmount = wrappedBal.mul(beefyFee).div(MAX_FEE); IERC20(wrapped).safeTransfer(beefyFeeRecipient, beefyFeeAmount); uint256 strategistFee = wrappedBal.mul(STRATEGIST_FEE).div(MAX_FEE); IERC20(wrapped).safeTransfer(strategist, strategistFee); } // Adds liquidity to AMM and gets more LP tokens. function addLiquidity() internal { uint256 outputHalf = IERC20(output).balanceOf(address(this)).div(2); if (lpToken0 != output) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp0Route, address(this), now); } if (lpToken1 != output) { IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp1Route, address(this), now); } uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this)); uint256 lp1Bal = IERC20(lpToken1).balanceOf(address(this)); IUniswapRouterETH(unirouter).addLiquidity(lpToken0, lpToken1, lp0Bal, lp1Bal, 1, 1, address(this), now); } // calculate the total underlaying 'want' held by the strat. function balanceOf() public view returns (uint256) { return balanceOfWant().add(balanceOfPool()); } // it calculates how much 'want' this contract holds. function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } // it calculates how much 'want' the strategy has working in the farm. function balanceOfPool() public view returns (uint256) { (uint256 _amount, ) = IMasterChef(masterchef).userInfo(poolId, address(this)); return _amount; } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); IMasterChef(masterchef).emergencyWithdraw(poolId); uint256 wantBal = IERC20(want).balanceOf(address(this)); IERC20(want).transfer(vault, wantBal); } // pauses deposits and withdraws all funds from third party systems. function panic() public onlyManager { pause(); IMasterChef(masterchef).emergencyWithdraw(poolId); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).safeApprove(masterchef, uint256(-1)); IERC20(output).safeApprove(unirouter, uint256(-1)); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, uint256(-1)); IERC20(lpToken1).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, uint256(-1)); } function _removeAllowances() internal { IERC20(want).safeApprove(masterchef, 0); IERC20(output).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, 0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_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"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterchef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp0Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp1Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToWrappedRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wrapped","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600a600655606f60075561030960085560c06040526000805160206200331983398151915260809081526000805160206200329983398151915260a0526200004c90600d90600262000947565b503480156200005a57600080fd5b506040516200333938038062003339833981810160405260e08110156200008057600080fd5b508051602082015160408301516060840151608085015160a086015160c090960151949593949293919290919082828587846000620000be62000466565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180546001600160a01b03199081166001600160a01b0397881617909155600280548216958716959095179094556003805485169386169390931790925560048054841691851691909117815560058054841692851692909217909155600980549092168a8416179182905560408051630dfe168160e01b815290519290931692630dfe16819281830192602092829003018186803b158015620001b957600080fd5b505afa158015620001ce573d6000803e3d6000fd5b505050506040513d6020811015620001e557600080fd5b5051600a80546001600160a01b0319166001600160a01b039283161790556009546040805163d21220a760e01b81529051919092169163d21220a7916004808301926020929190829003018186803b1580156200024157600080fd5b505afa15801562000256573d6000803e3d6000fd5b505050506040513d60208110156200026d57600080fd5b5051600b80546001600160a01b0319166001600160a01b03928316179055600c879055600a546000805160206200329983398151915291161415620002f45760408051808201909152600080516020620033198339815191528152600080516020620032998339815191526020820152620002ed90600e90600262000947565b506200036c565b600a546001600160a01b031660008051602062003319833981519152146200036c5760408051606081018252600080516020620033198339815191528152600080516020620032998339815191526020820152600a546001600160a01b0316918101919091526200036a90600e90600362000947565b505b600b546001600160a01b0316600080516020620032998339815191521415620003d75760408051808201909152600080516020620033198339815191528152600080516020620032998339815191526020820152620003d090600f90600262000947565b506200044f565b600b546001600160a01b031660008051602062003319833981519152146200044f5760408051606081018252600080516020620033198339815191528152600080516020620032998339815191526020820152600b546001600160a01b0316918101919091526200044d90600f90600362000947565b505b620004596200046a565b50505050505050620009d2565b3390565b600954620004a5906001600160a01b0316732b2929e785374c651a81a63878ab22742656dcdd60001962000590602090811b6200161617901c565b600354620004dc9060008051602062003319833981519152906001600160a01b031660001962000590602090811b6200161617901c565b600354600a5462000508916001600160a01b039182169116600062000590602090811b6200161617901c565b600354600a5462000535916001600160a01b03918216911660001962000590602090811b6200161617901c565b600354600b5462000561916001600160a01b039182169116600062000590602090811b6200161617901c565b600354600b546200058e916001600160a01b03918216911660001962000590602090811b6200161617901c565b565b8015806200061a575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015620005ea57600080fd5b505afa158015620005ff573d6000803e3d6000fd5b505050506040513d60208110156200061657600080fd5b5051155b620006575760405162461bcd60e51b8152600401808060200182810382526036815260200180620032e36036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620006af918591620006b416565b505050565b606062000710826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200077060201b62001729179092919060201c565b805190915015620006af578080602001905160208110156200073157600080fd5b5051620006af5760405162461bcd60e51b815260040180806020018281038252602a815260200180620032b9602a913960400191505060405180910390fd5b606062000781848460008562000789565b949350505050565b6060620007968562000941565b620007e8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310620008295780518252601f19909201916020918201910162000808565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146200088d576040519150601f19603f3d011682016040523d82523d6000602084013e62000892565b606091505b50915091508115620008a8579150620007819050565b805115620008b95780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000905578181015183820152602001620008eb565b50505050905090810190601f168015620009335780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b3b151590565b8280548282559060005260206000209081019282156200099f579160200282015b828111156200099f57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000968565b50620009ad929150620009b1565b5090565b5b80821115620009ad5780546001600160a01b0319168155600101620009b2565b6128b780620009e26000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c80637d38ca651161015c578063c1a3d44c116100ce578063f20eaeb811610087578063f20eaeb8146104ff578063f2fde38b14610507578063fb1db2781461052d578063fb61778714610535578063fbfa77cf1461053d578063fd63a887146105455761027f565b8063c1a3d44c14610493578063c7b9d5301461049b578063d0e30db0146104c1578063d3102589146104c9578063d92f3d73146104d1578063dfbdc437146104f75761027f565b80638e145459116101205780638e1454591461043057806390321e1a14610438578063a68833e514610440578063ac1e502514610466578063aced166114610483578063bc063e1a1461048b5761027f565b80637d38ca65146104085780638456cb5914610410578063877562b6146104185780638bc7e8c4146104205780638da5cb5b146104285761027f565b80634641257d116101f55780635c975abb116101b95780635c975abb146103885780635ee167c0146103a45780636817031b146103ac578063715018a6146103d2578063722713f7146103da578063748747e6146103e25761027f565b80634641257d146103605780634700d3051461036857806350e70d481461037057806354518b1a14610378578063573fef0a146103805761027f565b8063264658261161024757806326465826146102ef5780632ad5a53f1461030e5780632e1a7d4d1461031657806336c6cf21146103335780633e0dc34e146103505780633f4ba83a146103585761027f565b806311588086146102845780631d1721271461029e5780631f1fcd51146102d75780631fe4a686146102df578063257ae0de146102e7575b600080fd5b61028c610562565b60408051918252519081900360200190f35b6102bb600480360360208110156102b457600080fd5b50356105f2565b604080516001600160a01b039092168252519081900360200190f35b6102bb610619565b6102bb610628565b6102bb610637565b61030c6004803603602081101561030557600080fd5b5035610646565b005b61028c610700565b61030c6004803603602081101561032c57600080fd5b5035610705565b6102bb6004803603602081101561034957600080fd5b503561097b565b61028c610988565b61030c61098e565b61030c610a15565b61030c610b66565b6102bb610c51565b61028c610c69565b61030c610a13565b610390610c6f565b604080519115158252519081900360200190f35b6102bb610c7f565b61030c600480360360208110156103c257600080fd5b50356001600160a01b0316610c8e565b61030c610d08565b61028c610daa565b61030c600480360360208110156103f857600080fd5b50356001600160a01b0316610dca565b61028c610e59565b61030c610e5e565b6102bb610edb565b61028c610eea565b6102bb610ef0565b6102bb610eff565b61028c610f0e565b61030c6004803603602081101561045657600080fd5b50356001600160a01b0316610f14565b61030c6004803603602081101561047c57600080fd5b5035610f8e565b6102bb61103f565b61028c61104e565b61028c611054565b61030c600480360360208110156104b157600080fd5b50356001600160a01b03166110d0565b61030c61113f565b61028c611290565b61030c600480360360208110156104e757600080fd5b50356001600160a01b0316611296565b61028c611310565b6102bb611315565b61030c6004803603602081101561051d57600080fd5b50356001600160a01b031661132d565b6102bb611425565b61030c61143d565b6102bb6115fa565b6102bb6004803603602081101561055b57600080fd5b5035611609565b600c54604080516393f1a40b60e01b8152600481019290925230602483015280516000928392732b2929e785374c651a81a63878ab22742656dcdd926393f1a40b926044808201939291829003018186803b1580156105c057600080fd5b505afa1580156105d4573d6000803e3d6000fd5b505050506040513d60408110156105ea57600080fd5b505191505090565b600d81815481106105ff57fe5b6000918252602090912001546001600160a01b0316905081565b6009546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b61064e610ef0565b6001600160a01b0316336001600160a01b0316148061067757506001546001600160a01b031633145b6106b3576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f8111156106f2576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b0316331461074d576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561079857600080fd5b505afa1580156107ac573d6000803e3d6000fd5b505050506040513d60208110156107c257600080fd5b50519050818110156108c657600c54732b2929e785374c651a81a63878ab22742656dcdd9063441a3e70906107f78585611740565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561083457600080fd5b505af1158015610848573d6000803e3d6000fd5b5050600954604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b15801561089757600080fd5b505afa1580156108ab573d6000803e3d6000fd5b505050506040513d60208110156108c157600080fd5b505190505b818111156108d15750805b6108d9610ef0565b6001600160a01b0316326001600160a01b031614806108fb57506108fb610c6f565b156109225760045460095461091d916001600160a01b0391821691168361178b565b610977565b600061094561271061093f600654856117dd90919063ffffffff16565b90611836565b600454909150610975906001600160a01b03166109628484611740565b6009546001600160a01b0316919061178b565b505b5050565b600e81815481106105ff57fe5b600c5481565b610996610ef0565b6001600160a01b0316336001600160a01b031614806109bf57506001546001600160a01b031633145b6109fb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610a03611878565b610a0b611920565b610a1361113f565b565b600054600160a01b900460ff1615610a67576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b333214610aa4576040805162461bcd60e51b8152602060048083019190915260248201526321454f4160e01b604482015290519081900360640190fd5b732b2929e785374c651a81a63878ab22742656dcdd6001600160a01b031663e2bbb158600c5460006040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610b0957600080fd5b505af1158015610b1d573d6000803e3d6000fd5b50505050610b296119f5565b610b31611d79565b610b3961113f565b60405133907f577a37fdb49a88d66684922c6f913df5239b4f214b2b97c53ef8e3bbb2034cb590600090a2565b610b6e610ef0565b6001600160a01b0316336001600160a01b03161480610b9757506001546001600160a01b031633145b610bd3576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610bdb610e5e565b732b2929e785374c651a81a63878ab22742656dcdd6001600160a01b0316635312ea8e600c546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610c3757600080fd5b505af1158015610c4b573d6000803e3d6000fd5b50505050565b7321be370d5312f44cb42ce377bc9b8a0cef1a4c8381565b61271081565b600054600160a01b900460ff1690565b600a546001600160a01b031681565b610c96612318565b6000546001600160a01b03908116911614610ce6576040805162461bcd60e51b81526020600482018190526024820152600080516020612802833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b610d10612318565b6000546001600160a01b03908116911614610d60576040805162461bcd60e51b81526020600482018190526024820152600080516020612802833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610dc5610db7610562565b610dbf611054565b9061231c565b905090565b610dd2610ef0565b6001600160a01b0316336001600160a01b03161480610dfb57506001546001600160a01b031633145b610e37576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b610e66610ef0565b6001600160a01b0316336001600160a01b03161480610e8f57506001546001600160a01b031633145b610ecb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610ed3612376565b610a13612404565b600b546001600160a01b031681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b610f1c612318565b6000546001600160a01b03908116911614610f6c576040805162461bcd60e51b81526020600482018190526024820152600080516020612802833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610f96610ef0565b6001600160a01b0316336001600160a01b03161480610fbf57506001546001600160a01b031633145b610ffb576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b603281111561103a576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561109f57600080fd5b505afa1580156110b3573d6000803e3d6000fd5b505050506040513d60208110156110c957600080fd5b5051905090565b6002546001600160a01b0316331461111d576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600054600160a01b900460ff1615611191576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600954604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156111dc57600080fd5b505afa1580156111f0573d6000803e3d6000fd5b505050506040513d602081101561120657600080fd5b50519050801561128d57732b2929e785374c651a81a63878ab22742656dcdd6001600160a01b031663e2bbb158600c54836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b15801561127457600080fd5b505af1158015611288573d6000803e3d6000fd5b505050505b50565b60085481565b61129e612318565b6000546001600160a01b039081169116146112ee576040805162461bcd60e51b81526020600482018190526024820152600080516020612802833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b73841fad6eae12c286d1fd18d1d525dffa75c7effe81565b611335612318565b6000546001600160a01b03908116911614611385576040805162461bcd60e51b81526020600482018190526024820152600080516020612802833981519152604482015290519081900360640190fd5b6001600160a01b0381166113ca5760405162461bcd60e51b81526004018080602001828103825260268152602001806127bb6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b732b2929e785374c651a81a63878ab22742656dcdd81565b6004546001600160a01b03163314611485576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b732b2929e785374c651a81a63878ab22742656dcdd6001600160a01b0316635312ea8e600c546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156114e157600080fd5b505af11580156114f5573d6000803e3d6000fd5b5050600954604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561154657600080fd5b505afa15801561155a573d6000803e3d6000fd5b505050506040513d602081101561157057600080fd5b5051600954600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b1580156115d057600080fd5b505af11580156115e4573d6000803e3d6000fd5b505050506040513d602081101561097557600080fd5b6004546001600160a01b031681565b600f81815481106105ff57fe5b80158061169c575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561166e57600080fd5b505afa158015611682573d6000803e3d6000fd5b505050506040513d602081101561169857600080fd5b5051155b6116d75760405162461bcd60e51b815260040180806020018281038252603681526020018061284c6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610975908490612499565b6060611738848460008561254a565b949350505050565b600061178283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126f5565b90505b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610975908490612499565b6000826117ec57506000611785565b828202828482816117f957fe5b04146117825760405162461bcd60e51b81526004018080602001828103825260218152602001806127e16021913960400191505060405180910390fd5b600061178283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061274f565b600054600160a01b900460ff166118cd576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611903612318565b604080516001600160a01b039092168252519081900360200190a1565b60095461194d906001600160a01b0316732b2929e785374c651a81a63878ab22742656dcdd600019611616565b60035461197b9073841fad6eae12c286d1fd18d1d525dffa75c7effe906001600160a01b0316600019611616565b600354600a54611999916001600160a01b0391821691166000611616565b600354600a546119b8916001600160a01b039182169116600019611616565b600354600b546119d6916001600160a01b0391821691166000611616565b600354600b54610a13916001600160a01b039182169116600019611616565b6000611a956103e861093f602d73841fad6eae12c286d1fd18d1d525dffa75c7effe6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611a6357600080fd5b505afa158015611a77573d6000803e3d6000fd5b505050506040513d6020811015611a8d57600080fd5b5051906117dd565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000600d30426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015611b4157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611b23575b50509650505050505050600060405180830381600087803b158015611b6557600080fd5b505af1158015611b79573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611ba257600080fd5b8101908080516040519392919084640100000000821115611bc257600080fd5b908301906020820185811115611bd757600080fd5b8251866020820283011164010000000082111715611bf457600080fd5b82525081516020918201928201910280838360005b83811015611c21578181015183820152602001611c09565b505050509190910160408181526370a0823160e01b825230600483015251600096507321be370d5312f44cb42ce377bc9b8a0cef1a4c8395506370a08231945060248083019450602093509091829003018186803b158015611c8257600080fd5b505afa158015611c96573d6000803e3d6000fd5b505050506040513d6020811015611cac57600080fd5b5051600754909150600090611cca906103e89061093f9085906117dd565b9050611ceb7321be370d5312f44cb42ce377bc9b8a0cef1a4c83338361178b565b6000611d086103e861093f600854866117dd90919063ffffffff16565b600554909150611d37907321be370d5312f44cb42ce377bc9b8a0cef1a4c83906001600160a01b03168361178b565b6000611d4a6103e861093f8660706117dd565b600254909150611288907321be370d5312f44cb42ce377bc9b8a0cef1a4c83906001600160a01b03168361178b565b6000611e13600273841fad6eae12c286d1fd18d1d525dffa75c7effe6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611de157600080fd5b505afa158015611df5573d6000803e3d6000fd5b505050506040513d6020811015611e0b57600080fd5b505190611836565b600a549091506001600160a01b031673841fad6eae12c286d1fd18d1d525dffa75c7effe14611fc5576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a060448601908152600e805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015611ed657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611eb8575b50509650505050505050600060405180830381600087803b158015611efa57600080fd5b505af1158015611f0e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611f3757600080fd5b8101908080516040519392919084640100000000821115611f5757600080fd5b908301906020820185811115611f6c57600080fd5b8251866020820283011164010000000082111715611f8957600080fd5b82525081516020918201928201910280838360005b83811015611fb6578181015183820152602001611f9e565b50505050905001604052505050505b600b546001600160a01b031673841fad6eae12c286d1fd18d1d525dffa75c7effe14612174576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a060448601908152600f805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c4909101908690801561208557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612067575b50509650505050505050600060405180830381600087803b1580156120a957600080fd5b505af11580156120bd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156120e657600080fd5b810190808051604051939291908464010000000082111561210657600080fd5b90830190602082018581111561211b57600080fd5b825186602082028301116401000000008211171561213857600080fd5b82525081516020918201928201910280838360005b8381101561216557818101518382015260200161214d565b50505050905001604052505050505b600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156121bf57600080fd5b505afa1580156121d3573d6000803e3d6000fd5b505050506040513d60208110156121e957600080fd5b5051600b54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561223c57600080fd5b505afa158015612250573d6000803e3d6000fd5b505050506040513d602081101561226657600080fd5b5051600354600a54600b546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b1580156122ee57600080fd5b505af1158015612302573d6000803e3d6000fd5b505050506040513d606081101561128857600080fd5b3390565b600082820183811015611782576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600054600160a01b900460ff16156123c8576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611903612318565b600954612430906001600160a01b0316732b2929e785374c651a81a63878ab22742656dcdd6000611616565b60035461245d9073841fad6eae12c286d1fd18d1d525dffa75c7effe906001600160a01b03166000611616565b600354600a5461247b916001600160a01b0391821691166000611616565b600354600b54610a13916001600160a01b0391821691166000611616565b60606124ee826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166117299092919063ffffffff16565b8051909150156109755780806020019051602081101561250d57600080fd5b50516109755760405162461bcd60e51b815260040180806020018281038252602a815260200180612822602a913960400191505060405180910390fd5b6060612555856127b4565b6125a6576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106125e55780518252601f1990920191602091820191016125c6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612647576040519150601f19603f3d011682016040523d82523d6000602084013e61264c565b606091505b509150915081156126605791506117389050565b8051156126705780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126ba5781810151838201526020016126a2565b50505050905090810190601f1680156126e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600081848411156127475760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156126ba5781810151838201526020016126a2565b505050900390565b6000818361279e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156126ba5781810151838201526020016126a2565b5060008385816127aa57fe5b0495945050505050565b3b15159056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220f24f7a56c9c0ca69e9404bed887042efb2bf041cdaf26b0926df2455ca0866dd64736f6c634300060c003300000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c835361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe000000000000000000000000956de13ea0fa5b577e4097be837bf4ac800058200000000000000000000000000000000000000000000000000000000000000013000000000000000000000000c5b2a6ab801e74f098acc8bb62b786b47319c4d9000000000000000000000000f491e7b69e4244ad4002bc14e878a34207e38c29000000000000000000000000d529b1894491a0a26b18939274ae8ede93e81dba000000000000000000000000010da5ff62b6e45f89fa7b2d8ced5a8b5754ec1b000000000000000000000000e6cce165aa3e52b2cc55f17b1dbc6a8fe5d66610
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000956de13ea0fa5b577e4097be837bf4ac800058200000000000000000000000000000000000000000000000000000000000000013000000000000000000000000c5b2a6ab801e74f098acc8bb62b786b47319c4d9000000000000000000000000f491e7b69e4244ad4002bc14e878a34207e38c29000000000000000000000000d529b1894491a0a26b18939274ae8ede93e81dba000000000000000000000000010da5ff62b6e45f89fa7b2d8ced5a8b5754ec1b000000000000000000000000e6cce165aa3e52b2cc55f17b1dbc6a8fe5d66610
-----Decoded View---------------
Arg [0] : _want (address): 0x956de13ea0fa5b577e4097be837bf4ac80005820
Arg [1] : _poolId (uint256): 19
Arg [2] : _vault (address): 0xc5b2a6ab801e74f098acc8bb62b786b47319c4d9
Arg [3] : _unirouter (address): 0xf491e7b69e4244ad4002bc14e878a34207e38c29
Arg [4] : _keeper (address): 0xd529b1894491a0a26b18939274ae8ede93e81dba
Arg [5] : _strategist (address): 0x010da5ff62b6e45f89fa7b2d8ced5a8b5754ec1b
Arg [6] : _beefyFeeRecipient (address): 0xe6cce165aa3e52b2cc55f17b1dbc6a8fe5d66610
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000956de13ea0fa5b577e4097be837bf4ac80005820
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [2] : 000000000000000000000000c5b2a6ab801e74f098acc8bb62b786b47319c4d9
Arg [3] : 000000000000000000000000f491e7b69e4244ad4002bc14e878a34207e38c29
Arg [4] : 000000000000000000000000d529b1894491a0a26b18939274ae8ede93e81dba
Arg [5] : 000000000000000000000000010da5ff62b6e45f89fa7b2d8ced5a8b5754ec1b
Arg [6] : 000000000000000000000000e6cce165aa3e52b2cc55f17b1dbc6a8fe5d66610
Deployed ByteCode Sourcemap
41069:6738:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46155:176;;;:::i;:::-;;;;;;;;;;;;;;;;41663:57;;;;;;;;;;;;;;;;-1:-1:-1;41663:57:0;;:::i;:::-;;;;-1:-1:-1;;;;;41663:57:0;;;;;;;;;;;;;;41405:19;;;:::i;37631:25::-;;;:::i;37663:24::-;;;:::i;40653:202::-;;;;;;;;;;;;;;;;-1:-1:-1;40653:202:0;;:::i;:::-;;40361:39;;;:::i;43111:742::-;;;;;;;;;;;;;;;;-1:-1:-1;43111:742:0;;:::i;41727:33::-;;;;;;;;;;;;;;;;-1:-1:-1;41727:33:0;;:::i;41618:21::-;;;:::i;47013:121::-;;;:::i;43916:221::-;;;:::i;46780:122::-;;;:::i;41222:85::-;;;:::i;40460:43::-;;;:::i;40136:44::-;;;:::i;33346:78::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;41431:23;;;:::i;39641:86::-;;;;;;;;;;;;;;;;-1:-1:-1;39641:86:0;-1:-1:-1;;;;;39641:86:0;;:::i;2761:148::-;;;:::i;45773:113::-;;;:::i;38913:92::-;;;;;;;;;;;;;;;;-1:-1:-1;38913:92:0;-1:-1:-1;;;;;38913:92:0;;:::i;40271:41::-;;;:::i;46910:95::-;;;:::i;41461:23::-;;;:::i;40516:30::-;;;:::i;2119:79::-;;;:::i;37721:32::-;;;:::i;40555:25::-;;;:::i;39862:134::-;;;;;;;;;;;;;;;;-1:-1:-1;39862:134:0;-1:-1:-1;;;;;39862:134:0;;:::i;40867:156::-;;;;;;;;;;;;;;;;-1:-1:-1;40867:156:0;;:::i;37603:21::-;;;:::i;40319:35::-;;;:::i;45953:118::-;;;:::i;39150:155::-;;;;;;;;;;;;;;;;-1:-1:-1;39150:155:0;-1:-1:-1;;;;;39150:155:0;;:::i;42885:218::-;;;:::i;40587:57::-;;;:::i;39437:102::-;;;;;;;;;;;;;;;;-1:-1:-1;39437:102:0;-1:-1:-1;;;;;39437:102:0;;:::i;40409:44::-;;;:::i;41314:84::-;;;:::i;3064:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3064:244:0;-1:-1:-1;;;;;3064:244:0;;:::i;41523:88::-;;;:::i;46431:267::-;;;:::i;37694:20::-;;;:::i;41767:33::-;;;;;;;;;;;;;;;;-1:-1:-1;41767:33:0;;:::i;46155:176::-;46276:6;;46243:55;;;-1:-1:-1;;;46243:55:0;;;;;;;;;46292:4;46243:55;;;;;;46201:7;;;;41568:42;;46243:32;;:55;;;;;;;;;;;;41568:42;46243:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46243:55:0;;-1:-1:-1;;46155:176:0;:::o;41663:57::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41663:57:0;;-1:-1:-1;41663:57:0;:::o;41405:19::-;;;-1:-1:-1;;;;;41405:19:0;;:::o;37631:25::-;;;-1:-1:-1;;;;;37631:25:0;;:::o;37663:24::-;;;-1:-1:-1;;;;;37663:24:0;;:::o;40653:202::-;38580:7;:5;:7::i;:::-;-1:-1:-1;;;;;38566:21:0;:10;-1:-1:-1;;;;;38566:21:0;;:45;;;-1:-1:-1;38605:6:0;;-1:-1:-1;;;;;38605:6:0;38591:10;:20;38566:45;38558:66;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;;;;40397:3:::1;40727:4;:20;;40719:37;;;::::0;;-1:-1:-1;;;40719:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;40719:37:0;;;;;;;;;;;;;::::1;;40777:7;:14:::0;;;40813:24;:34:::1;40802:8;:45:::0;40653:202::o;40361:39::-;40397:3;40361:39;:::o;43111:742::-;43188:5;;-1:-1:-1;;;;;43188:5:0;43174:10;:19;43166:38;;;;;-1:-1:-1;;;43166:38:0;;;;;;;;;;;;-1:-1:-1;;;43166:38:0;;;;;;;;;;;;;;;43242:4;;43235:37;;;-1:-1:-1;;;43235:37:0;;43266:4;43235:37;;;;;;43217:15;;-1:-1:-1;;;;;43242:4:0;;43235:22;;:37;;;;;;;;;;;;;;43242:4;43235:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43235:37:0;;-1:-1:-1;43289:17:0;;;43285:174;;;43356:6;;41568:42;;43323:32;;43364:20;:7;43376;43364:11;:20::i;:::-;43323:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43417:4:0;;43410:37;;;-1:-1:-1;;;43410:37:0;;43441:4;43410:37;;;;;;-1:-1:-1;;;;;43417:4:0;;;;-1:-1:-1;43410:22:0;;-1:-1:-1;43410:37:0;;;;;;;;;;;;;;;43417:4;43410:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43410:37:0;;-1:-1:-1;43285:174:0;43485:7;43475;:17;43471:67;;;-1:-1:-1;43519:7:0;43471:67;43567:7;:5;:7::i;:::-;-1:-1:-1;;;;;43554:20:0;:9;-1:-1:-1;;;;;43554:20:0;;:32;;;;43578:8;:6;:8::i;:::-;43550:296;;;43629:5;;43610:4;;43603:41;;-1:-1:-1;;;;;43610:4:0;;;;43629:5;43636:7;43603:25;:41::i;:::-;43550:296;;;43677:27;43707:46;40498:5;43707:26;43719:13;;43707:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;43794:5;;43677:76;;-1:-1:-1;43768:66:0;;-1:-1:-1;;;;;43794:5:0;43801:32;:7;43677:76;43801:11;:32::i;:::-;43775:4;;-1:-1:-1;;;;;43775:4:0;;43768:66;:25;:66::i;:::-;43550:296;;43111:742;;:::o;41727:33::-;;;;;;;;;;41618:21;;;;:::o;47013:121::-;38580:7;:5;:7::i;:::-;-1:-1:-1;;;;;38566:21:0;:10;-1:-1:-1;;;;;38566:21:0;;:45;;;-1:-1:-1;38605:6:0;;-1:-1:-1;;;;;38605:6:0;38591:10;:20;38566:45;38558:66;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;;;;47064:10:::1;:8;:10::i;:::-;47087:17;:15;:17::i;:::-;47117:9;:7;:9::i;:::-;47013:121::o:0;43916:221::-;33664:7;;-1:-1:-1;;;33664:7:0;;;;33663:8;33655:37;;;;;-1:-1:-1;;;33655:37:0;;;;;;;;;;;;-1:-1:-1;;;33655:37:0;;;;;;;;;;;;;;;38742:10:::1;38756:9;38742:23;38734:40;;;::::0;;-1:-1:-1;;;38734:40:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;38734:40:0;;;;;;;;;;;;;::::1;;41568:42:::2;-1:-1:-1::0;;;;;43977:31:0::2;;44009:6;;44017:1;43977:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;44030:12;:10;:12::i;:::-;44053:14;:12;:14::i;:::-;44078:9;:7;:9::i;:::-;44105:24;::::0;44118:10:::2;::::0;44105:24:::2;::::0;;;::::2;43916:221::o:0;46780:122::-;38580:7;:5;:7::i;:::-;-1:-1:-1;;;;;38566:21:0;:10;-1:-1:-1;;;;;38566:21:0;;:45;;;-1:-1:-1;38605:6:0;;-1:-1:-1;;;;;38605:6:0;38591:10;:20;38566:45;38558:66;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;;;;46827:7:::1;:5;:7::i;:::-;41568:42;-1:-1:-1::0;;;;;46845:41:0::1;;46887:6;;46845:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46780:122::o:0;41222:85::-;41264:42;41222:85;:::o;40460:43::-;40498:5;40460:43;:::o;33346:78::-;33385:4;33409:7;-1:-1:-1;;;33409:7:0;;;;;33346:78::o;41431:23::-;;;-1:-1:-1;;;;;41431:23:0;;:::o;39641:86::-;2341:12;:10;:12::i;:::-;2331:6;;-1:-1:-1;;;;;2331:6:0;;;:22;;;2323:67;;;;;-1:-1:-1;;;2323:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2323:67:0;;;;;;;;;;;;;;;39705:5:::1;:14:::0;;-1:-1:-1;;;;;;39705:14:0::1;-1:-1:-1::0;;;;;39705:14:0;;;::::1;::::0;;;::::1;::::0;;39641:86::o;2761:148::-;2341:12;:10;:12::i;:::-;2331:6;;-1:-1:-1;;;;;2331:6:0;;;:22;;;2323:67;;;;;-1:-1:-1;;;2323:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2323:67:0;;;;;;;;;;;;;;;2868:1:::1;2852:6:::0;;2831:40:::1;::::0;-1:-1:-1;;;;;2852:6:0;;::::1;::::0;2831:40:::1;::::0;2868:1;;2831:40:::1;2899:1;2882:19:::0;;-1:-1:-1;;;;;;2882:19:0::1;::::0;;2761:148::o;45773:113::-;45815:7;45842:36;45862:15;:13;:15::i;:::-;45842;:13;:15::i;:::-;:19;;:36::i;:::-;45835:43;;45773:113;:::o;38913:92::-;38580:7;:5;:7::i;:::-;-1:-1:-1;;;;;38566:21:0;:10;-1:-1:-1;;;;;38566:21:0;;:45;;;-1:-1:-1;38605:6:0;;-1:-1:-1;;;;;38605:6:0;38591:10;:20;38566:45;38558:66;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;;;;38981:6:::1;:16:::0;;-1:-1:-1;;;;;;38981:16:0::1;-1:-1:-1::0;;;;;38981:16:0;;;::::1;::::0;;;::::1;::::0;;38913:92::o;40271:41::-;40309:3;40271:41;:::o;46910:95::-;38580:7;:5;:7::i;:::-;-1:-1:-1;;;;;38566:21:0;:10;-1:-1:-1;;;;;38566:21:0;;:45;;;-1:-1:-1;38605:6:0;;-1:-1:-1;;;;;38605:6:0;38591:10;:20;38566:45;38558:66;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;;;;46957:8:::1;:6;:8::i;:::-;46978:19;:17;:19::i;41461:23::-:0;;;-1:-1:-1;;;;;41461:23:0;;:::o;40516:30::-;;;;:::o;2119:79::-;2157:7;2184:6;-1:-1:-1;;;;;2184:6:0;2119:79;:::o;37721:32::-;;;-1:-1:-1;;;;;37721:32:0;;:::o;40555:25::-;;;;:::o;39862:134::-;2341:12;:10;:12::i;:::-;2331:6;;-1:-1:-1;;;;;2331:6:0;;;:22;;;2323:67;;;;;-1:-1:-1;;;2323:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2323:67:0;;;;;;;;;;;;;;;39950:17:::1;:38:::0;;-1:-1:-1;;;;;;39950:38:0::1;-1:-1:-1::0;;;;;39950:38:0;;;::::1;::::0;;;::::1;::::0;;39862:134::o;40867:156::-;38580:7;:5;:7::i;:::-;-1:-1:-1;;;;;38566:21:0;:10;-1:-1:-1;;;;;38566:21:0;;:45;;;-1:-1:-1;38605:6:0;;-1:-1:-1;;;;;38605:6:0;38591:10;:20;38566:45;38558:66;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;-1:-1:-1;;;38558:66:0;;;;;;;;;;;;;;;40451:2:::1;40947:4;:26;;40939:43;;;::::0;;-1:-1:-1;;;40939:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;40939:43:0;;;;;;;;;;;;;::::1;;40995:13;:20:::0;40867:156::o;37603:21::-;;;-1:-1:-1;;;;;37603:21:0;;:::o;40319:35::-;40350:4;40319:35;:::o;45953:118::-;46033:4;;46026:37;;;-1:-1:-1;;;46026:37:0;;46057:4;46026:37;;;;;;45999:7;;-1:-1:-1;;;;;46033:4:0;;46026:22;;:37;;;;;;;;;;;;;;46033:4;46026:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46026:37:0;;-1:-1:-1;45953:118:0;:::o;39150:155::-;39236:10;;-1:-1:-1;;;;;39236:10:0;39222;:24;39214:48;;;;;-1:-1:-1;;;39214:48:0;;;;;;;;;;;;-1:-1:-1;;;39214:48:0;;;;;;;;;;;;;;;39273:10;:24;;-1:-1:-1;;;;;;39273:24:0;-1:-1:-1;;;;;39273:24:0;;;;;;;;;;39150:155::o;42885:218::-;33664:7;;-1:-1:-1;;;33664:7:0;;;;33663:8;33655:37;;;;;-1:-1:-1;;;33655:37:0;;;;;;;;;;;;-1:-1:-1;;;33655:37:0;;;;;;;;;;;;;;;42961:4:::1;::::0;42954:37:::1;::::0;;-1:-1:-1;;;42954:37:0;;42985:4:::1;42954:37;::::0;::::1;::::0;;;42936:15:::1;::::0;-1:-1:-1;;;;;42961:4:0::1;::::0;42954:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;42961:4;42954:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42954:37:0;;-1:-1:-1;43008:11:0;;43004:92:::1;;41568:42;-1:-1:-1::0;;;;;43036:31:0::1;;43068:6;;43076:7;43036:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43004:92;33703:1;42885:218::o:0;40587:57::-;;;;:::o;39437:102::-;2341:12;:10;:12::i;:::-;2331:6;;-1:-1:-1;;;;;2331:6:0;;;:22;;;2323:67;;;;;-1:-1:-1;;;2323:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2323:67:0;;;;;;;;;;;;;;;39509:9:::1;:22:::0;;-1:-1:-1;;;;;;39509:22:0::1;-1:-1:-1::0;;;;;39509:22:0;;;::::1;::::0;;;::::1;::::0;;39437:102::o;40409:44::-;40451:2;40409:44;:::o;41314:84::-;41355:42;41314:84;:::o;3064:244::-;2341:12;:10;:12::i;:::-;2331:6;;-1:-1:-1;;;;;2331:6:0;;;:22;;;2323:67;;;;;-1:-1:-1;;;2323:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2323:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3153:22:0;::::1;3145:73;;;;-1:-1:-1::0;;;3145:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3255:6;::::0;;3234:38:::1;::::0;-1:-1:-1;;;;;3234:38:0;;::::1;::::0;3255:6;::::1;::::0;3234:38:::1;::::0;::::1;3283:6;:17:::0;;-1:-1:-1;;;;;;3283:17:0::1;-1:-1:-1::0;;;;;3283:17:0;;;::::1;::::0;;;::::1;::::0;;3064:244::o;41523:88::-;41568:42;41523:88;:::o;46431:267::-;46496:5;;-1:-1:-1;;;;;46496:5:0;46482:10;:19;46474:38;;;;;-1:-1:-1;;;46474:38:0;;;;;;;;;;;;-1:-1:-1;;;46474:38:0;;;;;;;;;;;;;;;41568:42;-1:-1:-1;;;;;46525:41:0;;46567:6;;46525:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46612:4:0;;46605:37;;;-1:-1:-1;;;46605:37:0;;46636:4;46605:37;;;;;;46587:15;;-1:-1:-1;;;;;;46612:4:0;;;;-1:-1:-1;46605:22:0;;:37;;;;;;;;;;;;;;46612:4;46605:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46605:37:0;46660:4;;46675:5;;;46653:37;;;-1:-1:-1;;;46653:37:0;;-1:-1:-1;;;;;46675:5:0;;;46653:37;;;;;;;;;;;;;;46605;;-1:-1:-1;46660:4:0;;;;46653:21;;:37;;;;;46605;;46653;;;;;;;;46660:4;;46653:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37694:20;;;-1:-1:-1;;;;;37694:20:0;;:::o;41767:33::-;;;;;;;;;;29862:622;30232:10;;;30231:62;;-1:-1:-1;30248:39:0;;;-1:-1:-1;;;30248:39:0;;30272:4;30248:39;;;;-1:-1:-1;;;;;30248:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30248:39:0;:44;30231:62;30223:152;;;;-1:-1:-1;;;30223:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30413:62;;;-1:-1:-1;;;;;30413:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30413:62:0;-1:-1:-1;;;30413:62:0;;;30386:90;;30406:5;;30386:19;:90::i;15181:196::-;15284:12;15316:53;15339:6;15347:4;15353:1;15356:12;15316:22;:53::i;:::-;15309:60;15181:196;-1:-1:-1;;;;15181:196:0:o;7503:136::-;7561:7;7588:43;7592:1;7595;7588:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7581:50;;7503:136;;;;;:::o;29203:177::-;29313:58;;;-1:-1:-1;;;;;29313:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29313:58:0;-1:-1:-1;;;29313:58:0;;;29286:86;;29306:5;;29286:19;:86::i;8393:471::-;8451:7;8696:6;8692:47;;-1:-1:-1;8726:1:0;8719:8;;8692:47;8763:5;;;8767:1;8763;:5;:1;8787:5;;;;;:10;8779:56;;;;-1:-1:-1;;;8779:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9340:132;9398:7;9425:39;9429:1;9432;9425:39;;;;;;;;;;;;;;;;;:3;:39::i;34395:120::-;33940:7;;-1:-1:-1;;;33940:7:0;;;;33932:40;;;;;-1:-1:-1;;;33932:40:0;;;;;;;;;;;;-1:-1:-1;;;33932:40:0;;;;;;;;;;;;;;;34464:5:::1;34454:15:::0;;-1:-1:-1;;;;34454:15:0::1;::::0;;34485:22:::1;34494:12;:10;:12::i;:::-;34485:22;::::0;;-1:-1:-1;;;;;34485:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;34395:120::o:0;47142:401::-;47196:4;;47189:49;;-1:-1:-1;;;;;47196:4:0;41568:42;-1:-1:-1;;47189:24:0;:49::i;:::-;47276:9;;47249:50;;41355:42;;-1:-1:-1;;;;;47276:9:0;-1:-1:-1;;47249:26:0;:50::i;:::-;47341:9;;47319:8;;47312:42;;-1:-1:-1;;;;;47319:8:0;;;;47341:9;;47312:28;:42::i;:::-;47394:9;;47372:8;;47365:52;;-1:-1:-1;;;;;47372:8:0;;;;47394:9;-1:-1:-1;;47365:28:0;:52::i;:::-;47459:9;;47437:8;;47430:42;;-1:-1:-1;;;;;47437:8:0;;;;47459:9;;47430:28;:42::i;:::-;47512:9;;47490:8;;47483:52;;-1:-1:-1;;;;;47490:8:0;;;;47512:9;-1:-1:-1;;47483:28:0;:52::i;44170:755::-;44212:17;44232:57;44284:4;44232:47;44276:2;41355:42;-1:-1:-1;;;;;44232:24:0;;44265:4;44232:39;;;;;;;;;;;;;-1:-1:-1;;;;;44232:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44232:39:0;;:43;:47::i;:57::-;44212:77;;44318:9;;;;;;;;;-1:-1:-1;;;;;44318:9:0;-1:-1:-1;;;;;44300:53:0;;44354:9;44365:1;44368:20;44398:4;44405:3;44300:109;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;44300:109:0;;;;;;;;-1:-1:-1;;;44443:40:0;;44477:4;44443:40;;;;;44422:18;;-1:-1:-1;41264:42:0;;-1:-1:-1;44443:25:0;;-1:-1:-1;44443:40:0;;;;;-1:-1:-1;44443:40:0;;-1:-1:-1;44443:40:0;;;;;;;41264:42;44443:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44443:40:0;44535:7;;44443:40;;-1:-1:-1;44496:21:0;;44520:36;;40350:4;;44520:23;;44443:40;;44520:14;:23::i;:36::-;44496:60;-1:-1:-1;44567:55:0;41264:42;44596:10;44496:60;44567:28;:55::i;:::-;44635:22;44660:37;40350:4;44660:24;44675:8;;44660:10;:14;;:24;;;;:::i;:37::-;44737:17;;44635:62;;-1:-1:-1;44708:63:0;;41264:42;;-1:-1:-1;;;;;44737:17:0;44635:62;44708:28;:63::i;:::-;44784:21;44808:43;40350:4;44808:30;:10;40309:3;44808:14;:30::i;:43::-;44891:10;;44784:67;;-1:-1:-1;44862:55:0;;41264:42;;-1:-1:-1;;;;;44891:10:0;44784:67;44862:28;:55::i;44988:711::-;45032:18;45053:46;45097:1;41355:42;-1:-1:-1;;;;;45053:24:0;;45086:4;45053:39;;;;;;;;;;;;;-1:-1:-1;;;;;45053:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45053:39:0;;:43;:46::i;:::-;45116:8;;45032:67;;-1:-1:-1;;;;;;45116:8:0;41355:42;45116:18;45112:157;;45169:9;;45151:106;;-1:-1:-1;;;45151:106:0;;;;;;;;45169:9;45151:106;;;;;;45246:4;45151:106;;;;;;45253:3;45151:106;;;;;;;;;;;;;45220:16;45151:106;;;;;;;;-1:-1:-1;;;;;45169:9:0;;;;45151:53;;45205:10;;45220:16;;45246:4;45253:3;45151:106;;;;;;45220:16;;45151:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45151:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45151:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45151:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45112:157;45285:8;;-1:-1:-1;;;;;45285:8:0;41355:42;45285:18;45281:157;;45338:9;;45320:106;;-1:-1:-1;;;45320:106:0;;;;;;;;45338:9;45320:106;;;;;;45415:4;45320:106;;;;;;45422:3;45320:106;;;;;;;;;;;;;45389:16;45320:106;;;;;;;;-1:-1:-1;;;;;45338:9:0;;;;45320:53;;45374:10;;45389:16;;45415:4;45422:3;45320:106;;;;;;45389:16;;45320:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45320:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45320:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45320:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45281:157;45474:8;;45467:41;;;-1:-1:-1;;;45467:41:0;;45502:4;45467:41;;;;;;45450:14;;-1:-1:-1;;;;;45474:8:0;;45467:26;;:41;;;;;;;;;;;;;;45474:8;45467:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45467:41:0;45543:8;;45536:41;;;-1:-1:-1;;;45536:41:0;;45571:4;45536:41;;;;;;45467;;-1:-1:-1;45519:14:0;;-1:-1:-1;;;;;45543:8:0;;;;45536:26;;:41;;;;;45467;;45536;;;;;;;;45543:8;45536:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45536:41:0;45606:9;;45630:8;;45640;;45588:103;;;-1:-1:-1;;;45588:103:0;;-1:-1:-1;;;;;45630:8:0;;;45588:103;;;;45640:8;;;45588:103;;;;;;;;;;;;;;;;45606:9;45588:103;;;;;;;;;;45680:4;45588:103;;;;45687:3;45588:103;;;;;45536:41;;-1:-1:-1;45606:9:0;;;45588:41;;:103;;;;;;;;;;;;;;;45606:9;;45588:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;673:106;761:10;673:106;:::o;7039:181::-;7097:7;7129:5;;;7153:6;;;;7145:46;;;;;-1:-1:-1;;;7145:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34136:118;33664:7;;-1:-1:-1;;;33664:7:0;;;;33663:8;33655:37;;;;;-1:-1:-1;;;33655:37:0;;;;;;;;;;;;-1:-1:-1;;;33655:37:0;;;;;;;;;;;;;;;34196:7:::1;:14:::0;;-1:-1:-1;;;;34196:14:0::1;-1:-1:-1::0;;;34196:14:0::1;::::0;;34226:20:::1;34233:12;:10;:12::i;47551:253::-:0;47607:4;;47600:39;;-1:-1:-1;;;;;47607:4:0;41568:42;47637:1;47600:24;:39::i;:::-;47677:9;;47650:40;;41355:42;;-1:-1:-1;;;;;47677:9:0;;47650:26;:40::i;:::-;47730:9;;47708:8;;47701:42;;-1:-1:-1;;;;;47708:8:0;;;;47730:9;;47701:28;:42::i;:::-;47783:9;;47761:8;;47754:42;;-1:-1:-1;;;;;47761:8:0;;;;47783:9;;47754:28;:42::i;31508:761::-;31932:23;31958:69;31986:4;31958:69;;;;;;;;;;;;;;;;;31966:5;-1:-1:-1;;;;;31958:27:0;;;:69;;;;;:::i;:::-;32042:17;;31932:95;;-1:-1:-1;32042:21:0;32038:224;;32184:10;32173:30;;;;;;;;;;;;;;;-1:-1:-1;32173:30:0;32165:85;;;;-1:-1:-1;;;32165:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16558:979;16688:12;16721:18;16732:6;16721:10;:18::i;:::-;16713:60;;;;;-1:-1:-1;;;16713:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16847:12;16861:23;16888:6;-1:-1:-1;;;;;16888:11:0;16908:8;16919:4;16888:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16888:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16846:78;;;;16939:7;16935:595;;;16970:10;-1:-1:-1;16963:17:0;;-1:-1:-1;16963:17:0;16935:595;17084:17;;:21;17080:439;;17347:10;17341:17;17408:15;17395:10;17391:2;17387:19;17380:44;17295:148;17490:12;17483:20;;-1:-1:-1;;;17483:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7942:192;8028:7;8064:12;8056:6;;;;8048:29;;;;-1:-1:-1;;;8048:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8100:5:0;;;7942:192::o;9968:278::-;10054:7;10089:12;10082:5;10074:28;;;;-1:-1:-1;;;10074:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10113:9;10129:1;10125;:5;;;;;;;9968:278;-1:-1:-1;;;;;9968:278:0:o;12263:422::-;12630:20;12669:8;;;12263:422::o
Swarm Source
ipfs://f24f7a56c9c0ca69e9404bed887042efb2bf041cdaf26b0926df2455ca0866dd
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.