More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 81 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Harvest | 5674399 | 4 days ago | IN | 0 S | 0.16953794 | ||||
Harvest | 5667269 | 4 days ago | IN | 0 S | 0.16953794 | ||||
Harvest | 5660212 | 5 days ago | IN | 0 S | 0.16954036 | ||||
Harvest | 5653075 | 5 days ago | IN | 0 S | 0.16953794 | ||||
Harvest | 5646877 | 5 days ago | IN | 0 S | 0.1695441 | ||||
Harvest | 5640360 | 5 days ago | IN | 0 S | 0.16792864 | ||||
Harvest | 5633455 | 5 days ago | IN | 0 S | 0.16793359 | ||||
Harvest | 5624259 | 5 days ago | IN | 0 S | 0.16956302 | ||||
Harvest | 5612525 | 5 days ago | IN | 0 S | 0.16791467 | ||||
Harvest | 5602183 | 5 days ago | IN | 0 S | 0.16926261 | ||||
Harvest | 5590908 | 5 days ago | IN | 0 S | 0.16791214 | ||||
Harvest | 5580953 | 5 days ago | IN | 0 S | 0.1695441 | ||||
Harvest | 5571459 | 5 days ago | IN | 0 S | 0.16953794 | ||||
Harvest | 5561505 | 5 days ago | IN | 0 S | 0.16954289 | ||||
Harvest | 5551408 | 6 days ago | IN | 0 S | 0.16790851 | ||||
Harvest | 5539917 | 6 days ago | IN | 0 S | 0.16955686 | ||||
Harvest | 5530904 | 6 days ago | IN | 0 S | 0.16955939 | ||||
Harvest | 5523044 | 6 days ago | IN | 0 S | 0.16792743 | ||||
Harvest | 5513455 | 6 days ago | IN | 0 S | 0.16790851 | ||||
Harvest | 5502931 | 6 days ago | IN | 0 S | 0.16790851 | ||||
Harvest | 5492833 | 6 days ago | IN | 0 S | 0.16953915 | ||||
Harvest | 5483576 | 6 days ago | IN | 0 S | 0.16954168 | ||||
Harvest | 5474333 | 6 days ago | IN | 0 S | 0.16954168 | ||||
Harvest | 5465936 | 6 days ago | IN | 0 S | 0.16791335 | ||||
Harvest | 5457982 | 6 days ago | IN | 0 S | 0.16791214 |
Loading...
Loading
Contract Name:
StrategyNLP
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// Sources flattened with hardhat v2.12.2 https://hardhat.org pragma solidity ^0.8.0; interface INAVITracker { function claim(address receiver) external; function claimable(address user) external view returns (uint256); function depositBalances(address user, address token) external view returns (uint256); function stakedAmounts(address user) external view returns (uint256); } pragma solidity ^0.8.0; interface INLPManager { function vault() external view returns (address); function getAumInUsdn(bool _maximise) external view returns (uint256); function lastAddedAt(address _user) external view returns (uint256); function cooldownDuration() external view returns (uint256); } pragma solidity ^0.8.0; interface INAVIVault { function getFeeBasisPoints( address _token, uint256 _usdnDelta, uint256 _feeBasisPoints, uint256 _taxBasisPoints, bool _increment ) external view returns (uint256); function mintBurnFeeBasisPoints() external view returns (uint256); function taxBasisPoints() external view returns (uint256); function getMaxPrice(address _token) external view returns (uint256); function PRICE_PRECISION() external view returns (uint256); function getRedemptionAmount(address _token, uint256 _usdnAmount) external view returns (uint256); function adjustForDecimals( uint256 _amount, address _tokenDiv, address _tokenMul ) external view returns (uint256); function usdn() external view returns (address); } pragma solidity ^0.8.0; interface INAVIRouter { function stakeNavi(uint256 amount) external; function unstakeNavi(uint256 amount) external; function compound() external; function claimFees() external; function mintAndStakeNlp( address _token, uint256 _amount, uint256 _minUsdn, uint256 _minNlp ) external returns (uint256); function unstakeAndRedeemNlp( address _tokenOut, uint256 _nlpAmount, uint256 _minOut, address _receiver ) external returns (uint256); function feeNlpTracker() external view returns (address); function feeNaviTracker() external view returns (address); function stakedNaviTracker() external view returns (address); function nlpManager() external view returns (address); function nlp() external view returns (address); function signalTransfer(address _receiver) external; function acceptTransfer(address _sender) external; } pragma solidity ^0.8.0; interface INAVIStrategy { function acceptTransfer() external; } pragma solidity ^0.8.0; interface IMicroVault { struct StratCandidate { address implementation; uint proposedTime; } function strategy() external view returns (address); function stratCandidate() external view returns (StratCandidate memory); } pragma solidity ^0.8.0; interface IFeeConfig { struct FeeCategory { uint256 total; uint256 micro; uint256 call; uint256 strategist; string label; bool active; } struct AllFees { FeeCategory performance; uint256 deposit; uint256 withdraw; } function getFees(address strategy) external view returns (FeeCategory memory); function stratFeeId(address strategy) external view returns (uint256); function setStratFeeId(uint256 feeId) external; } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/security/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @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. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { 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()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } pragma solidity ^0.8.0; contract StratFeeManagerInitializable is OwnableUpgradeable, PausableUpgradeable { struct CommonAddresses { address vault; address unirouter; address keeper; address strategist; address microFeeRecipient; address microFeeConfig; } // common addresses for the strategy address public vault; address public unirouter; address public keeper; address public strategist; address public microFeeRecipient; IFeeConfig public microFeeConfig; uint256 constant DIVISOR = 1 ether; uint256 constant public WITHDRAWAL_FEE_CAP = 50; uint256 constant public WITHDRAWAL_MAX = 10000; uint256 internal withdrawalFee; event SetStratFeeId(uint256 feeId); event SetWithdrawalFee(uint256 withdrawalFee); event SetVault(address vault); event SetUnirouter(address unirouter); event SetKeeper(address keeper); event SetStrategist(address strategist); event SetMicroFeeRecipient(address microFeeRecipient); event SetMicroFeeConfig(address microFeeConfig); function __StratFeeManager_init(CommonAddresses calldata _commonAddresses) internal onlyInitializing { __Ownable_init(); __Pausable_init(); vault = _commonAddresses.vault; unirouter = _commonAddresses.unirouter; keeper = _commonAddresses.keeper; strategist = _commonAddresses.strategist; microFeeRecipient = _commonAddresses.microFeeRecipient; microFeeConfig = IFeeConfig(_commonAddresses.microFeeConfig); withdrawalFee = 10; } // checks that caller is either owner or keeper. modifier onlyManager() { require(msg.sender == owner() || msg.sender == keeper, "!manager"); _; } // fetch fees from config contract function getFees() internal view returns (IFeeConfig.FeeCategory memory) { return microFeeConfig.getFees(address(this)); } // fetch fees from config contract and dynamic deposit/withdraw fees function getAllFees() external view returns (IFeeConfig.AllFees memory) { return IFeeConfig.AllFees(getFees(), depositFee(), withdrawFee()); } function getStratFeeId() external view returns (uint256) { return microFeeConfig.stratFeeId(address(this)); } function setStratFeeId(uint256 _feeId) external onlyManager { microFeeConfig.setStratFeeId(_feeId); emit SetStratFeeId(_feeId); } // adjust withdrawal fee function setWithdrawalFee(uint256 _fee) public onlyManager { require(_fee <= WITHDRAWAL_FEE_CAP, "!cap"); withdrawalFee = _fee; emit SetWithdrawalFee(_fee); } // set new vault (only for strategy upgrades) function setVault(address _vault) external onlyOwner { vault = _vault; emit SetVault(_vault); } // set new unirouter function setUnirouter(address _unirouter) external onlyOwner { unirouter = _unirouter; emit SetUnirouter(_unirouter); } // set new keeper to manage strat function setKeeper(address _keeper) external onlyManager { keeper = _keeper; emit SetKeeper(_keeper); } // set new strategist address to receive strat fees function setStrategist(address _strategist) external { require(msg.sender == strategist, "!strategist"); strategist = _strategist; emit SetStrategist(_strategist); } // set new micro fee address to receive micro fees function setMicroFeeRecipient(address _microFeeRecipient) external onlyOwner { microFeeRecipient = _microFeeRecipient; emit SetMicroFeeRecipient(_microFeeRecipient); } // set new fee config address to fetch fees function setMicroFeeConfig(address _microFeeConfig) external onlyOwner { microFeeConfig = IFeeConfig(_microFeeConfig); emit SetMicroFeeConfig(_microFeeConfig); } function depositFee() public virtual view returns (uint256) { return 0; } function withdrawFee() public virtual view returns (uint256) { return paused() ? 0 : withdrawalFee; } function beforeDeposit() external virtual {} } // File @openzeppelin-4/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin-4/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin-4/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin-4/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity ^0.8.0; contract StrategyNLP is StratFeeManagerInitializable { using SafeERC20 for IERC20; // Tokens used address public want; address public native; // Third party contracts address public minter; address public chef; address public nlpRewardStorage; address public naviRewardStorage; address public nlpManager; address public naviVault; bool public harvestOnDeposit; uint256 public lastHarvest; bool public cooldown; uint256 public extraCooldownDuration = 1; event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl); event Deposit(uint256 tvl); event Withdraw(uint256 tvl); event ChargedFees(uint256 callFees, uint256 microFees, uint256 strategistFees); function initialize( address _want, address _native, address _minter, address _chef, CommonAddresses calldata _commonAddresses ) public initializer { __StratFeeManager_init(_commonAddresses); want = _want; native = _native; minter = _minter; chef = _chef; nlpRewardStorage = INAVIRouter(chef).feeNlpTracker(); naviRewardStorage = INAVIRouter(chef).feeNaviTracker(); nlpManager = INAVIRouter(minter).nlpManager(); naviVault = INLPManager(nlpManager).vault(); _giveAllowances(); } // prevent griefing by preventing deposits for longer than the cooldown period modifier whenNotCooling { if (cooldown) { require(block.timestamp >= withdrawOpen() + extraCooldownDuration, "cooldown"); } _; } // puts the funds to work function deposit() public whenNotPaused whenNotCooling { emit Deposit(balanceOf()); } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = balanceOfWant(); if (wantBal > _amount) { wantBal = _amount; } if (tx.origin != owner() && !paused()) { uint256 withdrawalFeeAmount = wantBal * withdrawalFee / WITHDRAWAL_MAX; wantBal = wantBal - withdrawalFeeAmount; } IERC20(want).safeTransfer(vault, wantBal); emit Withdraw(balanceOf()); } function beforeDeposit() external virtual override { if (harvestOnDeposit) { require(msg.sender == vault, "!vault"); _harvest(tx.origin); } } function harvest() external virtual { _harvest(tx.origin); } function harvest(address callFeeRecipient) external virtual { _harvest(callFeeRecipient); } function managerHarvest() external onlyManager { _harvest(tx.origin); } // compounds earnings and charges performance fee function _harvest(address callFeeRecipient) internal whenNotPaused { INAVIRouter(chef).compound(); // Claim and restake esNAVI and multiplier points INAVIRouter(chef).claimFees(); uint256 nativeBal = IERC20(native).balanceOf(address(this)); if (nativeBal > 0) { chargeFees(callFeeRecipient); uint256 before = balanceOfWant(); mintNlp(); uint256 wantHarvested = balanceOfWant() - before; lastHarvest = block.timestamp; emit StratHarvest(msg.sender, wantHarvested, balanceOf()); } } // performance fees function chargeFees(address callFeeRecipient) internal { IFeeConfig.FeeCategory memory fees = getFees(); uint256 feeBal = IERC20(native).balanceOf(address(this)) * fees.total / DIVISOR; uint256 callFeeAmount = feeBal * fees.call / DIVISOR; IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount); uint256 microFeeAmount = feeBal * fees.micro / DIVISOR; IERC20(native).safeTransfer(microFeeRecipient, microFeeAmount); uint256 strategistFeeAmount = feeBal * fees.strategist / DIVISOR; IERC20(native).safeTransfer(strategist, strategistFeeAmount); emit ChargedFees(callFeeAmount, microFeeAmount, strategistFeeAmount); } // mint more NLP with the ETH earned as fees function mintNlp() internal whenNotCooling { uint256 nativeBal = IERC20(native).balanceOf(address(this)); INAVIRouter(minter).mintAndStakeNlp(native, nativeBal, 0, 0); } // calculate the total underlaying 'want' held by the strat. function balanceOf() public view returns (uint256) { return balanceOfWant() + 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 pure returns (uint256) { return 0; } // returns rewards unharvested function rewardsAvailable() public view returns (uint256) { uint256 rewardNLP = INAVITracker(nlpRewardStorage).claimable(address(this)); uint256 rewardNAVI = INAVITracker(naviRewardStorage).claimable(address(this)); return rewardNLP + rewardNAVI; } // native reward amount for calling harvest function callReward() public view returns (uint256) { IFeeConfig.FeeCategory memory fees = getFees(); uint256 nativeBal = rewardsAvailable(); return nativeBal * fees.total / DIVISOR * fees.call / DIVISOR; } function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager { harvestOnDeposit = _harvestOnDeposit; if (harvestOnDeposit) { setWithdrawalFee(0); } else { setWithdrawalFee(10); } } // called as part of strat migration. Transfers all want, NLP, esNAVI and MP to new strat. function retireStrat() external { require(msg.sender == vault, "!vault"); IMicroVault.StratCandidate memory candidate = IMicroVault(vault).stratCandidate(); address stratAddress = candidate.implementation; INAVIRouter(chef).signalTransfer(stratAddress); INAVIStrategy(stratAddress).acceptTransfer(); 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(); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); } function _giveAllowances() internal { IERC20(native).safeApprove(nlpManager, type(uint).max); } function _removeAllowances() internal { IERC20(native).safeApprove(nlpManager, 0); } // timestamp at which withdrawals open again function withdrawOpen() public view returns (uint256) { return INLPManager(nlpManager).lastAddedAt(address(this)) + INLPManager(nlpManager).cooldownDuration(); } // turn on extra cooldown time to allow users to withdraw function setCooldown(bool _cooldown) external onlyManager { cooldown = _cooldown; } // set the length of cooldown time for withdrawals function setExtraCooldownDuration(uint256 _extraCooldownDuration) external onlyManager { extraCooldownDuration = _extraCooldownDuration; } function acceptTransfer() external { address prevStrat = IMicroVault(vault).strategy(); require(msg.sender == prevStrat, "!prevStrat"); INAVIRouter(chef).acceptTransfer(prevStrat); // send back 1 wei to complete upgrade IERC20(want).safeTransfer(prevStrat, 1); } }
{ "evmVersion": "shanghai", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"callFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"microFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"strategistFees","type":"uint256"}],"name":"ChargedFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"keeper","type":"address"}],"name":"SetKeeper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"microFeeConfig","type":"address"}],"name":"SetMicroFeeConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"microFeeRecipient","type":"address"}],"name":"SetMicroFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeId","type":"uint256"}],"name":"SetStratFeeId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"strategist","type":"address"}],"name":"SetStrategist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"unirouter","type":"address"}],"name":"SetUnirouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vault","type":"address"}],"name":"SetVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"withdrawalFee","type":"uint256"}],"name":"SetWithdrawalFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"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":"acceptTransfer","outputs":[],"stateMutability":"nonpayable","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":"pure","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extraCooldownDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllFees","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"micro","type":"uint256"},{"internalType":"uint256","name":"call","type":"uint256"},{"internalType":"uint256","name":"strategist","type":"uint256"},{"internalType":"string","name":"label","type":"string"},{"internalType":"bool","name":"active","type":"bool"}],"internalType":"struct IFeeConfig.FeeCategory","name":"performance","type":"tuple"},{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"withdraw","type":"uint256"}],"internalType":"struct IFeeConfig.AllFees","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStratFeeId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"address","name":"_native","type":"address"},{"internalType":"address","name":"_minter","type":"address"},{"internalType":"address","name":"_chef","type":"address"},{"components":[{"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":"microFeeRecipient","type":"address"},{"internalType":"address","name":"microFeeConfig","type":"address"}],"internalType":"struct StratFeeManagerInitializable.CommonAddresses","name":"_commonAddresses","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"microFeeConfig","outputs":[{"internalType":"contract IFeeConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"microFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"naviRewardStorage","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"naviVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nlpManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nlpRewardStorage","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_cooldown","type":"bool"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_extraCooldownDuration","type":"uint256"}],"name":"setExtraCooldownDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_microFeeConfig","type":"address"}],"name":"setMicroFeeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_microFeeRecipient","type":"address"}],"name":"setMicroFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeId","type":"uint256"}],"name":"setStratFeeId","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":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600160a855348015610014575f80fd5b50612bdc806100225f395ff3fe608060405234801561000f575f80fd5b5060043610610371575f3560e01c8063715018a6116101d4578063c1a3d44c11610109578063dd8f62ca116100a9578063f1a392da11610079578063f1a392da1461069d578063f2fde38b146106a6578063fb617787146106b9578063fbfa77cf146106c1575f80fd5b8063dd8f62ca14610672578063dfbdc43714610685578063e7a7250a1461068d578063e941fa7814610695575f80fd5b8063c83c4662116100e4578063c83c46621461063c578063d0e30db01461064f578063d801d94614610657578063d92f3d731461065f575f80fd5b8063c1a3d44c1461060e578063c1a4ee6314610616578063c7b9d53014610629575f80fd5b80638da5cb5b11610174578063ac1e50251161014f578063ac1e5025146105c0578063aced1661146105d3578063aeba1b4e146105e6578063b20feaaf146105f9575f80fd5b80638da5cb5b1461059457806397fd323d146105a5578063a1a73b69146105ad575f80fd5b8063787a08a6116101af578063787a08a6146105635780638456cb59146105705780638912cb8b146105785780638cfc02501461058c575f80fd5b8063715018a614610540578063722713f714610548578063748747e614610550575f80fd5b80633e55f932116102aa5780635779419e1161024a5780635fa584ff116102255780635fa584ff1461051157806367a52793146103f35780636817031b1461051a57806370b4be411461052d575f80fd5b80635779419e146104d45780635c975abb146104e75780635cf939a5146104fe575f80fd5b80634700d305116102855780634700d305146104b357806354518b1a146104bb578063547eeac1146104c4578063573fef0a146104cc575f80fd5b80633e55f932146104905780633f4ba83a146104a35780634641257d146104ab575f80fd5b806316d624a5116103155780631fe4a686116102f05780631fe4a6861461044f578063257ae0de146104625780632e1a7d4d14610475578063302b260e14610488575f80fd5b806316d624a5146104165780631f1fcd51146104295780631fc8bc5d1461043c575f80fd5b80630e5c011e116103505780630e5c011e146103cd5780630e8fbb5a146103e057806311588086146103f357806311b0b42d14610403575f80fd5b8062542d3f14610375578063075461721461038a5780630add4853146103ba575b5f80fd5b6103886103833660046126ba565b6106d4565b005b60a05461039d906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b60a45461039d906001600160a01b031681565b6103886103db3660046126e5565b610721565b6103886103ee36600461270d565b61072d565b5f5b6040519081526020016103b1565b609f5461039d906001600160a01b031681565b61038861042436600461270d565b6107a6565b609e5461039d906001600160a01b031681565b60a15461039d906001600160a01b031681565b609a5461039d906001600160a01b031681565b60985461039d906001600160a01b031681565b6103886104833660046126ba565b6107f8565b6103f56108e2565b61038861049e3660046126ba565b6109c6565b610388610a9a565b610388610aeb565b610388610af4565b6103f561271081565b610388610b3b565b610388610c60565b60a55461039d906001600160a01b031681565b60655460ff165b60405190151581526020016103b1565b609c5461039d906001600160a01b031681565b6103f560a85481565b6103886105283660046126e5565b610c9c565b60a35461039d906001600160a01b031681565b610388610cf2565b6103f5610d03565b61038861055e3660046126e5565b610d0d565b60a7546104ee9060ff1681565b610388610d9a565b60a5546104ee90600160a01b900460ff1681565b6103f5610de9565b6033546001600160a01b031661039d565b6103f5610e54565b6103886105bb3660046126e5565b610eb6565b6103886105ce3660046126ba565b610f0c565b60995461039d906001600160a01b031681565b609b5461039d906001600160a01b031681565b610601610fba565b6040516103b19190612775565b6103f5610fef565b6103886106243660046126e5565b61101f565b6103886106373660046126e5565b611075565b60a25461039d906001600160a01b031681565b61038861110b565b6103886111aa565b61038861066d3660046126e5565b6111e9565b6103886106803660046127f1565b61123f565b6103f5603281565b6103f561159a565b6103f5611683565b6103f560a65481565b6103886106b43660046126e5565b6116a0565b610388611716565b60975461039d906001600160a01b031681565b6033546001600160a01b03163314806106f757506099546001600160a01b031633145b61071c5760405162461bcd60e51b815260040161071390612866565b60405180910390fd5b60a855565b61072a8161193e565b50565b6033546001600160a01b031633148061075057506099546001600160a01b031633145b61076c5760405162461bcd60e51b815260040161071390612866565b60a5805460ff60a01b1916600160a01b8315158102919091179182905560ff9104161561079c5761072a5f610f0c565b61072a600a610f0c565b6033546001600160a01b03163314806107c957506099546001600160a01b031633145b6107e55760405162461bcd60e51b815260040161071390612866565b60a7805460ff1916911515919091179055565b6097546001600160a01b031633146108225760405162461bcd60e51b815260040161071390612888565b5f61082b610fef565b9050818111156108385750805b6033546001600160a01b03163214801590610856575060655460ff16155b15610887575f612710609d548361086d91906128bc565b61087791906128d9565b905061088381836128f8565b9150505b609754609e546108a4916001600160a01b03918216911683611afe565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d6108cd610d03565b60405190815260200160405180910390a15050565b60a45460408051633526931560e01b815290515f926001600160a01b03169163352693159160048083019260209291908290030181865afa158015610929573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094d919061290b565b60a454604051638b770e1160e01b81523060048201526001600160a01b0390911690638b770e1190602401602060405180830381865afa158015610993573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b7919061290b565b6109c19190612922565b905090565b6033546001600160a01b03163314806109e957506099546001600160a01b031633145b610a055760405162461bcd60e51b815260040161071390612866565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f932906024015f604051808303815f87803b158015610a48575f80fd5b505af1158015610a5a573d5f803e3d5ffd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f81604051610a8f91815260200190565b60405180910390a150565b6033546001600160a01b0316331480610abd57506099546001600160a01b031633145b610ad95760405162461bcd60e51b815260040161071390612866565b610ae1611b66565b610ae9611bb3565b565b610ae93261193e565b6033546001600160a01b0316331480610b1757506099546001600160a01b031633145b610b335760405162461bcd60e51b815260040161071390612866565b610ae9610d9a565b60975460408051635463173b60e11b815290515f926001600160a01b03169163a8c62e769160048083019260209291908290030181865afa158015610b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba69190612935565b9050336001600160a01b03821614610bed5760405162461bcd60e51b815260206004820152600a602482015269085c1c995d94dd1c985d60b21b6044820152606401610713565b60a15460405163195580e960e21b81526001600160a01b0383811660048301529091169063655603a4906024015f604051808303815f87803b158015610c31575f80fd5b505af1158015610c43573d5f803e3d5ffd5b5050609e5461072a92506001600160a01b03169050826001611afe565b60a554600160a01b900460ff1615610ae9576097546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161071390612888565b610ca4611bd1565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f3090602001610a8f565b610cfa611bd1565b610ae95f611c2b565b5f806109b7610fef565b6033546001600160a01b0316331480610d3057506099546001600160a01b031633145b610d4c5760405162461bcd60e51b815260040161071390612866565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b90602001610a8f565b6033546001600160a01b0316331480610dbd57506099546001600160a01b031633145b610dd95760405162461bcd60e51b815260040161071390612866565b610de1611c7c565b610ae9611cb9565b609c54604051636788231160e11b81523060048201525f916001600160a01b03169063cf104622906024015b602060405180830381865afa158015610e30573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c1919061290b565b5f80610e5e611cd6565b90505f610e6961159a565b9050670de0b6b3a76400008260400151670de0b6b3a7640000845f015184610e9191906128bc565b610e9b91906128d9565b610ea591906128bc565b610eaf91906128d9565b9250505090565b610ebe611bd1565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f10b27d1d2aab7110d42aa46a4218c5b6f5055cdf67eb46be2c8b7b80d090d94c90602001610a8f565b6033546001600160a01b0316331480610f2f57506099546001600160a01b031633145b610f4b5760405162461bcd60e51b815260040161071390612866565b6032811115610f855760405162461bcd60e51b8152600401610713906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af90602001610a8f565b610fc2612667565b6040518060600160405280610fd5611cd6565b81526020015f8152602001610fe8611683565b9052919050565b609e546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401610e15565b611027611bd1565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527fcbaa840dcc43d218404573a46c9fadb04c37f54be6191ee2a8c01d0f55d9d0b690602001610a8f565b609a546001600160a01b031633146110bd5760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b6044820152606401610713565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec541290602001610a8f565b611113611d78565b60a75460ff161561116d5760a8546111296108e2565b6111339190612922565b42101561116d5760405162461bcd60e51b815260206004820152600860248201526731b7b7b63237bbb760c11b6044820152606401610713565b7f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611196610d03565b6040519081526020015b60405180910390a1565b6033546001600160a01b03163314806111cd57506099546001600160a01b031633145b610aeb5760405162461bcd60e51b815260040161071390612866565b6111f1611bd1565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa90602001610a8f565b5f54610100900460ff161580801561125d57505f54600160ff909116105b806112765750303b15801561127657505f5460ff166001145b6112d95760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610713565b5f805460ff1916600117905580156112fa575f805461ff0019166101001790555b61130382611dbe565b609e80546001600160a01b038089166001600160a01b031992831617909255609f805488841690831617905560a0805487841690831617905560a180549286169290911682179055604080516397b756e760e01b815290516397b756e7916004808201926020929091908290030181865afa158015611384573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a89190612935565b60a280546001600160a01b0319166001600160a01b0392831617905560a15460408051631344437960e31b815290519190921691639a221bc89160048083019260209291908290030181865afa158015611404573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114289190612935565b60a380546001600160a01b0319166001600160a01b0392831617905560a05460408051630add485360e01b815290519190921691630add48539160048083019260209291908290030181865afa158015611484573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a89190612935565b60a480546001600160a01b0319166001600160a01b039290921691821790556040805163fbfa77cf60e01b8152905163fbfa77cf916004808201926020929091908290030181865afa158015611500573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115249190612935565b60a580546001600160a01b0319166001600160a01b039290921691909117905561154c611bb3565b8015611592575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15b505050505050565b60a25460405163402914f560e01b81523060048201525f9182916001600160a01b039091169063402914f590602401602060405180830381865afa1580156115e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611608919061290b565b60a35460405163402914f560e01b81523060048201529192505f916001600160a01b039091169063402914f590602401602060405180830381865afa158015611653573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611677919061290b565b9050610eaf8183612922565b5f61169060655460ff1690565b61169b5750609d5490565b505f90565b6116a8611bd1565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610713565b61072a81611c2b565b6097546001600160a01b031633146117405760405162461bcd60e51b815260040161071390612888565b60975460408051630edbf57760e31b815281515f936001600160a01b0316926376dfabb892600480820193918290030181865afa158015611783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a791906129be565b805160a15460405163ef9aacfd60e01b81526001600160a01b0380841660048301529394509192169063ef9aacfd906024015f604051808303815f87803b1580156117f0575f80fd5b505af1158015611802573d5f803e3d5ffd5b50505050806001600160a01b031663547eeac16040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561183e575f80fd5b505af1158015611850573d5f803e3d5ffd5b5050609e546040516370a0823160e01b81523060048201525f93506001600160a01b0390911691506370a0823190602401602060405180830381865afa15801561189c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c0919061290b565b609e5460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303815f875af1158015611914573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119389190612a24565b50505050565b611946611d78565b60a15f9054906101000a90046001600160a01b03166001600160a01b031663f69e20466040518163ffffffff1660e01b81526004015f604051808303815f87803b158015611992575f80fd5b505af11580156119a4573d5f803e3d5ffd5b5050505060a15f9054906101000a90046001600160a01b03166001600160a01b031663d294f0936040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156119f4575f80fd5b505af1158015611a06573d5f803e3d5ffd5b5050609f546040516370a0823160e01b81523060048201525f93506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015611a52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a76919061290b565b90508015611afa57611a8782611f19565b5f611a90610fef565b9050611a9a6120b6565b5f81611aa4610fef565b611aae91906128f8565b4260a6559050337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611adf610d03565b6040805192835260208301919091520160405180910390a250505b5050565b6040516001600160a01b038316602482015260448101829052611b6190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526121ff565b505050565b611b6e6122d0565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b0390911681526020016111a0565b60a454609f54610ae9916001600160a01b0391821691165f19612319565b6033546001600160a01b03163314610ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610713565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b611c84611d78565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b9b3390565b60a454609f54610ae9916001600160a01b0391821691165f612319565b611d0c6040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c9906024015f60405180830381865afa158015611d51573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109c19190810190612a3f565b60655460ff1615610ae95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610713565b5f54610100900460ff16611de45760405162461bcd60e51b815260040161071390612b2e565b611dec61242c565b611df461245a565b611e0160208201826126e5565b609780546001600160a01b0319166001600160a01b0392909216919091179055611e3160408201602083016126e5565b609880546001600160a01b0319166001600160a01b0392909216919091179055611e6160608201604083016126e5565b609980546001600160a01b0319166001600160a01b0392909216919091179055611e9160808201606083016126e5565b609a80546001600160a01b0319166001600160a01b0392909216919091179055611ec160a08201608083016126e5565b609b80546001600160a01b0319166001600160a01b0392909216919091179055611ef160c0820160a083016126e5565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b5f611f22611cd6565b8051609f546040516370a0823160e01b81523060048201529293505f92670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa158015611f78573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9c919061290b565b611fa691906128bc565b611fb091906128d9565b90505f670de0b6b3a7640000836040015183611fcc91906128bc565b611fd691906128d9565b609f54909150611ff0906001600160a01b03168583611afe565b5f670de0b6b3a764000084602001518461200a91906128bc565b61201491906128d9565b609b54609f54919250612034916001600160a01b03908116911683611afe565b5f670de0b6b3a764000085606001518561204e91906128bc565b61205891906128d9565b609a54609f54919250612078916001600160a01b03908116911683611afe565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a90606001611589565b60a75460ff16156121105760a8546120cc6108e2565b6120d69190612922565b4210156121105760405162461bcd60e51b815260206004820152600860248201526731b7b7b63237bbb760c11b6044820152606401610713565b609f546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015612156573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061217a919061290b565b60a054609f54604051636617c36760e11b81526001600160a01b039182166004820152602481018490525f604482018190526064820152929350169063cc2f86ce906084016020604051808303815f875af11580156121db573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611afa919061290b565b5f612253826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166124889092919063ffffffff16565b805190915015611b6157808060200190518101906122719190612a24565b611b615760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610713565b60655460ff16610ae95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610713565b8015806123915750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561236b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238f919061290b565b155b6123fc5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610713565b6040516001600160a01b038316602482015260448101829052611b6190849063095ea7b360e01b90606401611b2a565b5f54610100900460ff166124525760405162461bcd60e51b815260040161071390612b2e565b610ae96124a0565b5f54610100900460ff166124805760405162461bcd60e51b815260040161071390612b2e565b610ae96124cf565b606061249684845f85612501565b90505b9392505050565b5f54610100900460ff166124c65760405162461bcd60e51b815260040161071390612b2e565b610ae933611c2b565b5f54610100900460ff166124f55760405162461bcd60e51b815260040161071390612b2e565b6065805460ff19169055565b6060824710156125625760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610713565b6001600160a01b0385163b6125b95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610713565b5f80866001600160a01b031685876040516125d49190612b79565b5f6040518083038185875af1925050503d805f811461260e576040519150601f19603f3d011682016040523d82523d5f602084013e612613565b606091505b509150915061262382828661262e565b979650505050505050565b6060831561263d575081612499565b82511561264d5782518084602001fd5b8160405162461bcd60e51b81526004016107139190612b94565b60405180606001604052806126a86040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b81526020015f81526020015f81525090565b5f602082840312156126ca575f80fd5b5035919050565b6001600160a01b038116811461072a575f80fd5b5f602082840312156126f5575f80fd5b8135612499816126d1565b801515811461072a575f80fd5b5f6020828403121561271d575f80fd5b813561249981612700565b5f5b8381101561274257818101518382015260200161272a565b50505f910152565b5f8151808452612761816020860160208601612728565b601f01601f19169290920160200192915050565b602081525f82516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526127c361014085018261274a565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b5f805f805f858703610140811215612807575f80fd5b8635612812816126d1565b95506020870135612822816126d1565b94506040870135612832816126d1565b93506060870135612842816126d1565b925060c0607f1982011215612855575f80fd5b506080860190509295509295909350565b60208082526008908201526710b6b0b730b3b2b960c11b604082015260600190565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176128d3576128d36128a8565b92915050565b5f826128f357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156128d3576128d36128a8565b5f6020828403121561291b575f80fd5b5051919050565b808201808211156128d3576128d36128a8565b5f60208284031215612945575f80fd5b8151612499816126d1565b634e487b7160e01b5f52604160045260245ffd5b60405160c0810167ffffffffffffffff8111828210171561298757612987612950565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156129b6576129b6612950565b604052919050565b5f604082840312156129ce575f80fd5b6040516040810181811067ffffffffffffffff821117156129f1576129f1612950565b60405282516129ff816126d1565b81526020928301519281019290925250919050565b8051612a1f81612700565b919050565b5f60208284031215612a34575f80fd5b815161249981612700565b5f6020808385031215612a50575f80fd5b825167ffffffffffffffff80821115612a67575f80fd5b9084019060c08287031215612a7a575f80fd5b612a82612964565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115612ab3575f80fd5b8301601f81018813612ac3575f80fd5b805183811115612ad557612ad5612950565b612ae7601f8201601f1916870161298d565b93508084528886828401011115612afc575f80fd5b612b0b81878601888501612728565b5050816080820152612b1f60a08401612a14565b60a08201529695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b5f8251612b8a818460208701612728565b9190910192915050565b602081525f612499602083018461274a56fea2646970667358221220df24d167378aa0f58526b6b0c60fad2f53cfc5b87ef2dfc928ae6592fb8821bd64736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610371575f3560e01c8063715018a6116101d4578063c1a3d44c11610109578063dd8f62ca116100a9578063f1a392da11610079578063f1a392da1461069d578063f2fde38b146106a6578063fb617787146106b9578063fbfa77cf146106c1575f80fd5b8063dd8f62ca14610672578063dfbdc43714610685578063e7a7250a1461068d578063e941fa7814610695575f80fd5b8063c83c4662116100e4578063c83c46621461063c578063d0e30db01461064f578063d801d94614610657578063d92f3d731461065f575f80fd5b8063c1a3d44c1461060e578063c1a4ee6314610616578063c7b9d53014610629575f80fd5b80638da5cb5b11610174578063ac1e50251161014f578063ac1e5025146105c0578063aced1661146105d3578063aeba1b4e146105e6578063b20feaaf146105f9575f80fd5b80638da5cb5b1461059457806397fd323d146105a5578063a1a73b69146105ad575f80fd5b8063787a08a6116101af578063787a08a6146105635780638456cb59146105705780638912cb8b146105785780638cfc02501461058c575f80fd5b8063715018a614610540578063722713f714610548578063748747e614610550575f80fd5b80633e55f932116102aa5780635779419e1161024a5780635fa584ff116102255780635fa584ff1461051157806367a52793146103f35780636817031b1461051a57806370b4be411461052d575f80fd5b80635779419e146104d45780635c975abb146104e75780635cf939a5146104fe575f80fd5b80634700d305116102855780634700d305146104b357806354518b1a146104bb578063547eeac1146104c4578063573fef0a146104cc575f80fd5b80633e55f932146104905780633f4ba83a146104a35780634641257d146104ab575f80fd5b806316d624a5116103155780631fe4a686116102f05780631fe4a6861461044f578063257ae0de146104625780632e1a7d4d14610475578063302b260e14610488575f80fd5b806316d624a5146104165780631f1fcd51146104295780631fc8bc5d1461043c575f80fd5b80630e5c011e116103505780630e5c011e146103cd5780630e8fbb5a146103e057806311588086146103f357806311b0b42d14610403575f80fd5b8062542d3f14610375578063075461721461038a5780630add4853146103ba575b5f80fd5b6103886103833660046126ba565b6106d4565b005b60a05461039d906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b60a45461039d906001600160a01b031681565b6103886103db3660046126e5565b610721565b6103886103ee36600461270d565b61072d565b5f5b6040519081526020016103b1565b609f5461039d906001600160a01b031681565b61038861042436600461270d565b6107a6565b609e5461039d906001600160a01b031681565b60a15461039d906001600160a01b031681565b609a5461039d906001600160a01b031681565b60985461039d906001600160a01b031681565b6103886104833660046126ba565b6107f8565b6103f56108e2565b61038861049e3660046126ba565b6109c6565b610388610a9a565b610388610aeb565b610388610af4565b6103f561271081565b610388610b3b565b610388610c60565b60a55461039d906001600160a01b031681565b60655460ff165b60405190151581526020016103b1565b609c5461039d906001600160a01b031681565b6103f560a85481565b6103886105283660046126e5565b610c9c565b60a35461039d906001600160a01b031681565b610388610cf2565b6103f5610d03565b61038861055e3660046126e5565b610d0d565b60a7546104ee9060ff1681565b610388610d9a565b60a5546104ee90600160a01b900460ff1681565b6103f5610de9565b6033546001600160a01b031661039d565b6103f5610e54565b6103886105bb3660046126e5565b610eb6565b6103886105ce3660046126ba565b610f0c565b60995461039d906001600160a01b031681565b609b5461039d906001600160a01b031681565b610601610fba565b6040516103b19190612775565b6103f5610fef565b6103886106243660046126e5565b61101f565b6103886106373660046126e5565b611075565b60a25461039d906001600160a01b031681565b61038861110b565b6103886111aa565b61038861066d3660046126e5565b6111e9565b6103886106803660046127f1565b61123f565b6103f5603281565b6103f561159a565b6103f5611683565b6103f560a65481565b6103886106b43660046126e5565b6116a0565b610388611716565b60975461039d906001600160a01b031681565b6033546001600160a01b03163314806106f757506099546001600160a01b031633145b61071c5760405162461bcd60e51b815260040161071390612866565b60405180910390fd5b60a855565b61072a8161193e565b50565b6033546001600160a01b031633148061075057506099546001600160a01b031633145b61076c5760405162461bcd60e51b815260040161071390612866565b60a5805460ff60a01b1916600160a01b8315158102919091179182905560ff9104161561079c5761072a5f610f0c565b61072a600a610f0c565b6033546001600160a01b03163314806107c957506099546001600160a01b031633145b6107e55760405162461bcd60e51b815260040161071390612866565b60a7805460ff1916911515919091179055565b6097546001600160a01b031633146108225760405162461bcd60e51b815260040161071390612888565b5f61082b610fef565b9050818111156108385750805b6033546001600160a01b03163214801590610856575060655460ff16155b15610887575f612710609d548361086d91906128bc565b61087791906128d9565b905061088381836128f8565b9150505b609754609e546108a4916001600160a01b03918216911683611afe565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d6108cd610d03565b60405190815260200160405180910390a15050565b60a45460408051633526931560e01b815290515f926001600160a01b03169163352693159160048083019260209291908290030181865afa158015610929573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094d919061290b565b60a454604051638b770e1160e01b81523060048201526001600160a01b0390911690638b770e1190602401602060405180830381865afa158015610993573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b7919061290b565b6109c19190612922565b905090565b6033546001600160a01b03163314806109e957506099546001600160a01b031633145b610a055760405162461bcd60e51b815260040161071390612866565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f932906024015f604051808303815f87803b158015610a48575f80fd5b505af1158015610a5a573d5f803e3d5ffd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f81604051610a8f91815260200190565b60405180910390a150565b6033546001600160a01b0316331480610abd57506099546001600160a01b031633145b610ad95760405162461bcd60e51b815260040161071390612866565b610ae1611b66565b610ae9611bb3565b565b610ae93261193e565b6033546001600160a01b0316331480610b1757506099546001600160a01b031633145b610b335760405162461bcd60e51b815260040161071390612866565b610ae9610d9a565b60975460408051635463173b60e11b815290515f926001600160a01b03169163a8c62e769160048083019260209291908290030181865afa158015610b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba69190612935565b9050336001600160a01b03821614610bed5760405162461bcd60e51b815260206004820152600a602482015269085c1c995d94dd1c985d60b21b6044820152606401610713565b60a15460405163195580e960e21b81526001600160a01b0383811660048301529091169063655603a4906024015f604051808303815f87803b158015610c31575f80fd5b505af1158015610c43573d5f803e3d5ffd5b5050609e5461072a92506001600160a01b03169050826001611afe565b60a554600160a01b900460ff1615610ae9576097546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161071390612888565b610ca4611bd1565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f3090602001610a8f565b610cfa611bd1565b610ae95f611c2b565b5f806109b7610fef565b6033546001600160a01b0316331480610d3057506099546001600160a01b031633145b610d4c5760405162461bcd60e51b815260040161071390612866565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b90602001610a8f565b6033546001600160a01b0316331480610dbd57506099546001600160a01b031633145b610dd95760405162461bcd60e51b815260040161071390612866565b610de1611c7c565b610ae9611cb9565b609c54604051636788231160e11b81523060048201525f916001600160a01b03169063cf104622906024015b602060405180830381865afa158015610e30573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c1919061290b565b5f80610e5e611cd6565b90505f610e6961159a565b9050670de0b6b3a76400008260400151670de0b6b3a7640000845f015184610e9191906128bc565b610e9b91906128d9565b610ea591906128bc565b610eaf91906128d9565b9250505090565b610ebe611bd1565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f10b27d1d2aab7110d42aa46a4218c5b6f5055cdf67eb46be2c8b7b80d090d94c90602001610a8f565b6033546001600160a01b0316331480610f2f57506099546001600160a01b031633145b610f4b5760405162461bcd60e51b815260040161071390612866565b6032811115610f855760405162461bcd60e51b8152600401610713906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af90602001610a8f565b610fc2612667565b6040518060600160405280610fd5611cd6565b81526020015f8152602001610fe8611683565b9052919050565b609e546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401610e15565b611027611bd1565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527fcbaa840dcc43d218404573a46c9fadb04c37f54be6191ee2a8c01d0f55d9d0b690602001610a8f565b609a546001600160a01b031633146110bd5760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b6044820152606401610713565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec541290602001610a8f565b611113611d78565b60a75460ff161561116d5760a8546111296108e2565b6111339190612922565b42101561116d5760405162461bcd60e51b815260206004820152600860248201526731b7b7b63237bbb760c11b6044820152606401610713565b7f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611196610d03565b6040519081526020015b60405180910390a1565b6033546001600160a01b03163314806111cd57506099546001600160a01b031633145b610aeb5760405162461bcd60e51b815260040161071390612866565b6111f1611bd1565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa90602001610a8f565b5f54610100900460ff161580801561125d57505f54600160ff909116105b806112765750303b15801561127657505f5460ff166001145b6112d95760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610713565b5f805460ff1916600117905580156112fa575f805461ff0019166101001790555b61130382611dbe565b609e80546001600160a01b038089166001600160a01b031992831617909255609f805488841690831617905560a0805487841690831617905560a180549286169290911682179055604080516397b756e760e01b815290516397b756e7916004808201926020929091908290030181865afa158015611384573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a89190612935565b60a280546001600160a01b0319166001600160a01b0392831617905560a15460408051631344437960e31b815290519190921691639a221bc89160048083019260209291908290030181865afa158015611404573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114289190612935565b60a380546001600160a01b0319166001600160a01b0392831617905560a05460408051630add485360e01b815290519190921691630add48539160048083019260209291908290030181865afa158015611484573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a89190612935565b60a480546001600160a01b0319166001600160a01b039290921691821790556040805163fbfa77cf60e01b8152905163fbfa77cf916004808201926020929091908290030181865afa158015611500573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115249190612935565b60a580546001600160a01b0319166001600160a01b039290921691909117905561154c611bb3565b8015611592575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15b505050505050565b60a25460405163402914f560e01b81523060048201525f9182916001600160a01b039091169063402914f590602401602060405180830381865afa1580156115e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611608919061290b565b60a35460405163402914f560e01b81523060048201529192505f916001600160a01b039091169063402914f590602401602060405180830381865afa158015611653573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611677919061290b565b9050610eaf8183612922565b5f61169060655460ff1690565b61169b5750609d5490565b505f90565b6116a8611bd1565b6001600160a01b03811661170d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610713565b61072a81611c2b565b6097546001600160a01b031633146117405760405162461bcd60e51b815260040161071390612888565b60975460408051630edbf57760e31b815281515f936001600160a01b0316926376dfabb892600480820193918290030181865afa158015611783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a791906129be565b805160a15460405163ef9aacfd60e01b81526001600160a01b0380841660048301529394509192169063ef9aacfd906024015f604051808303815f87803b1580156117f0575f80fd5b505af1158015611802573d5f803e3d5ffd5b50505050806001600160a01b031663547eeac16040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561183e575f80fd5b505af1158015611850573d5f803e3d5ffd5b5050609e546040516370a0823160e01b81523060048201525f93506001600160a01b0390911691506370a0823190602401602060405180830381865afa15801561189c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c0919061290b565b609e5460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303815f875af1158015611914573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119389190612a24565b50505050565b611946611d78565b60a15f9054906101000a90046001600160a01b03166001600160a01b031663f69e20466040518163ffffffff1660e01b81526004015f604051808303815f87803b158015611992575f80fd5b505af11580156119a4573d5f803e3d5ffd5b5050505060a15f9054906101000a90046001600160a01b03166001600160a01b031663d294f0936040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156119f4575f80fd5b505af1158015611a06573d5f803e3d5ffd5b5050609f546040516370a0823160e01b81523060048201525f93506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015611a52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a76919061290b565b90508015611afa57611a8782611f19565b5f611a90610fef565b9050611a9a6120b6565b5f81611aa4610fef565b611aae91906128f8565b4260a6559050337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611adf610d03565b6040805192835260208301919091520160405180910390a250505b5050565b6040516001600160a01b038316602482015260448101829052611b6190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526121ff565b505050565b611b6e6122d0565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b0390911681526020016111a0565b60a454609f54610ae9916001600160a01b0391821691165f19612319565b6033546001600160a01b03163314610ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610713565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b611c84611d78565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b9b3390565b60a454609f54610ae9916001600160a01b0391821691165f612319565b611d0c6040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c9906024015f60405180830381865afa158015611d51573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109c19190810190612a3f565b60655460ff1615610ae95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610713565b5f54610100900460ff16611de45760405162461bcd60e51b815260040161071390612b2e565b611dec61242c565b611df461245a565b611e0160208201826126e5565b609780546001600160a01b0319166001600160a01b0392909216919091179055611e3160408201602083016126e5565b609880546001600160a01b0319166001600160a01b0392909216919091179055611e6160608201604083016126e5565b609980546001600160a01b0319166001600160a01b0392909216919091179055611e9160808201606083016126e5565b609a80546001600160a01b0319166001600160a01b0392909216919091179055611ec160a08201608083016126e5565b609b80546001600160a01b0319166001600160a01b0392909216919091179055611ef160c0820160a083016126e5565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b5f611f22611cd6565b8051609f546040516370a0823160e01b81523060048201529293505f92670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa158015611f78573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9c919061290b565b611fa691906128bc565b611fb091906128d9565b90505f670de0b6b3a7640000836040015183611fcc91906128bc565b611fd691906128d9565b609f54909150611ff0906001600160a01b03168583611afe565b5f670de0b6b3a764000084602001518461200a91906128bc565b61201491906128d9565b609b54609f54919250612034916001600160a01b03908116911683611afe565b5f670de0b6b3a764000085606001518561204e91906128bc565b61205891906128d9565b609a54609f54919250612078916001600160a01b03908116911683611afe565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a90606001611589565b60a75460ff16156121105760a8546120cc6108e2565b6120d69190612922565b4210156121105760405162461bcd60e51b815260206004820152600860248201526731b7b7b63237bbb760c11b6044820152606401610713565b609f546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015612156573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061217a919061290b565b60a054609f54604051636617c36760e11b81526001600160a01b039182166004820152602481018490525f604482018190526064820152929350169063cc2f86ce906084016020604051808303815f875af11580156121db573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611afa919061290b565b5f612253826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166124889092919063ffffffff16565b805190915015611b6157808060200190518101906122719190612a24565b611b615760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610713565b60655460ff16610ae95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610713565b8015806123915750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561236b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238f919061290b565b155b6123fc5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610713565b6040516001600160a01b038316602482015260448101829052611b6190849063095ea7b360e01b90606401611b2a565b5f54610100900460ff166124525760405162461bcd60e51b815260040161071390612b2e565b610ae96124a0565b5f54610100900460ff166124805760405162461bcd60e51b815260040161071390612b2e565b610ae96124cf565b606061249684845f85612501565b90505b9392505050565b5f54610100900460ff166124c65760405162461bcd60e51b815260040161071390612b2e565b610ae933611c2b565b5f54610100900460ff166124f55760405162461bcd60e51b815260040161071390612b2e565b6065805460ff19169055565b6060824710156125625760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610713565b6001600160a01b0385163b6125b95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610713565b5f80866001600160a01b031685876040516125d49190612b79565b5f6040518083038185875af1925050503d805f811461260e576040519150601f19603f3d011682016040523d82523d5f602084013e612613565b606091505b509150915061262382828661262e565b979650505050505050565b6060831561263d575081612499565b82511561264d5782518084602001fd5b8160405162461bcd60e51b81526004016107139190612b94565b60405180606001604052806126a86040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b81526020015f81526020015f81525090565b5f602082840312156126ca575f80fd5b5035919050565b6001600160a01b038116811461072a575f80fd5b5f602082840312156126f5575f80fd5b8135612499816126d1565b801515811461072a575f80fd5b5f6020828403121561271d575f80fd5b813561249981612700565b5f5b8381101561274257818101518382015260200161272a565b50505f910152565b5f8151808452612761816020860160208601612728565b601f01601f19169290920160200192915050565b602081525f82516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526127c361014085018261274a565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b5f805f805f858703610140811215612807575f80fd5b8635612812816126d1565b95506020870135612822816126d1565b94506040870135612832816126d1565b93506060870135612842816126d1565b925060c0607f1982011215612855575f80fd5b506080860190509295509295909350565b60208082526008908201526710b6b0b730b3b2b960c11b604082015260600190565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176128d3576128d36128a8565b92915050565b5f826128f357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156128d3576128d36128a8565b5f6020828403121561291b575f80fd5b5051919050565b808201808211156128d3576128d36128a8565b5f60208284031215612945575f80fd5b8151612499816126d1565b634e487b7160e01b5f52604160045260245ffd5b60405160c0810167ffffffffffffffff8111828210171561298757612987612950565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156129b6576129b6612950565b604052919050565b5f604082840312156129ce575f80fd5b6040516040810181811067ffffffffffffffff821117156129f1576129f1612950565b60405282516129ff816126d1565b81526020928301519281019290925250919050565b8051612a1f81612700565b919050565b5f60208284031215612a34575f80fd5b815161249981612700565b5f6020808385031215612a50575f80fd5b825167ffffffffffffffff80821115612a67575f80fd5b9084019060c08287031215612a7a575f80fd5b612a82612964565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115612ab3575f80fd5b8301601f81018813612ac3575f80fd5b805183811115612ad557612ad5612950565b612ae7601f8201601f1916870161298d565b93508084528886828401011115612afc575f80fd5b612b0b81878601888501612728565b5050816080820152612b1f60a08401612a14565b60a08201529695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b5f8251612b8a818460208701612728565b9190910192915050565b602081525f612499602083018461274a56fea2646970667358221220df24d167378aa0f58526b6b0c60fad2f53cfc5b87ef2dfc928ae6592fb8821bd64736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.