Overview
ETH Balance
0 ETH
ETH Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Sponsored
Latest 25 from a total of 69 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Harvest | 126390079 | 6 hrs ago | IN | 0 ETH | 0.000000511981 | ||||
Harvest | 126384790 | 9 hrs ago | IN | 0 ETH | 0.000000296224 | ||||
Harvest | 126383229 | 9 hrs ago | IN | 0 ETH | 0.000000350468 | ||||
Harvest | 126382617 | 10 hrs ago | IN | 0 ETH | 0.000000325681 | ||||
Harvest | 126378364 | 12 hrs ago | IN | 0 ETH | 0.000000473527 | ||||
Harvest | 126365614 | 19 hrs ago | IN | 0 ETH | 0.000006730764 | ||||
Harvest | 126353334 | 26 hrs ago | IN | 0 ETH | 0.000001671722 | ||||
Harvest | 126347366 | 29 hrs ago | IN | 0 ETH | 0.000000493657 | ||||
Harvest | 126346541 | 30 hrs ago | IN | 0 ETH | 0.000000299126 | ||||
Harvest | 126344378 | 31 hrs ago | IN | 0 ETH | 0.000000319191 | ||||
Harvest | 126342372 | 32 hrs ago | IN | 0 ETH | 0.000000355538 | ||||
Harvest | 126339928 | 33 hrs ago | IN | 0 ETH | 0.000000499077 | ||||
Harvest | 126337467 | 35 hrs ago | IN | 0 ETH | 0.000001513564 | ||||
Harvest | 126329984 | 39 hrs ago | IN | 0 ETH | 0.000000900689 | ||||
Harvest | 126308531 | 2 days ago | IN | 0 ETH | 0.00000047862 | ||||
Harvest | 126307752 | 2 days ago | IN | 0 ETH | 0.000000504462 | ||||
Harvest | 126306264 | 2 days ago | IN | 0 ETH | 0.000000225305 | ||||
Harvest | 126305242 | 2 days ago | IN | 0 ETH | 0.000000229572 | ||||
Harvest | 126301746 | 2 days ago | IN | 0 ETH | 0.000000187072 | ||||
Harvest | 126291572 | 2 days ago | IN | 0 ETH | 0.000000301518 | ||||
Harvest | 126290803 | 2 days ago | IN | 0 ETH | 0.000000265018 | ||||
Harvest | 126290345 | 2 days ago | IN | 0 ETH | 0.000000334863 | ||||
Harvest | 126177109 | 5 days ago | IN | 0 ETH | 0.000000918723 | ||||
Harvest | 126122010 | 6 days ago | IN | 0 ETH | 0.000000617147 | ||||
Harvest | 126047381 | 8 days ago | IN | 0 ETH | 0.000000474584 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
StrategyStargateV2
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol"; import "../../interfaces/stargate/IStargateV2Chef.sol"; import "../../interfaces/stargate/IStargateV2Router.sol"; import "../../interfaces/common/IWrappedNative.sol"; import "../../interfaces/common/IERC20Extended.sol"; import "../../interfaces/beefy/IBeefySwapper.sol"; import "../Common/StratFeeManagerInitializable.sol"; contract StrategyStargateV2 is StratFeeManagerInitializable { using SafeERC20 for IERC20; address[] public rewards; mapping(address => uint) public minAmounts; // tokens minimum amount to be swapped address public want; address public native; address public lpToken; address[] internal lpTokens; uint256 public lastHarvest; uint256 public totalLocked; uint256 public lockDuration; bool public harvestOnDeposit; event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl); event Deposit(uint256 tvl); event Withdraw(uint256 tvl); event ChargedFees(uint256 callFees, uint256 beefyFees, uint256 strategistFees); // Third party contracts address public chef; address public stargateRouter; uint256 public convertRate; function initialize( address _chef, address _stargateRouter, address _native, address[] calldata _rewards, CommonAddresses calldata _commonAddresses ) external initializer { __StratFeeManager_init(_commonAddresses); chef = _chef; stargateRouter = _stargateRouter; want = IStargateV2Router(stargateRouter).token(); lpToken = IStargateV2Router(stargateRouter).lpToken(); lpTokens.push(lpToken); convertRate = 10 ** uint256(IERC20Extended(want).decimals() - IStargateV2Router(stargateRouter).sharedDecimals()); native = _native; lockDuration = 1 days; for (uint i; i < _rewards.length; i++) { addReward(_rewards[i]); } setWithdrawalFee(0); _giveAllowances(); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = balanceOfWant(); if (wantBal > 0) { uint256 amount = (wantBal / convertRate) * convertRate; if (amount > 0) { IStargateV2Router(stargateRouter).deposit(address(this), amount); IStargateV2Chef(chef).deposit(lpToken, amount); emit Deposit(balanceOf()); } } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = balanceOfWant(); if (wantBal < _amount) { uint256 amount = ((_amount - wantBal) / convertRate) * convertRate; IStargateV2Chef(chef).withdraw(lpToken, amount); IStargateV2Router(stargateRouter).redeem(amount, address(this)); 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 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); } // compounds earnings and charges performance fee function _harvest(address callFeeRecipient) internal whenNotPaused { uint256 beforeBal = balanceOfWant(); IStargateV2Chef(chef).claim(lpTokens); _swapRewardsToNative(); uint256 nativeBal = IERC20(native).balanceOf(address(this)); if (nativeBal > 0) { _chargeFees(callFeeRecipient); _swap(native, want); uint256 wantHarvested = balanceOfWant() - beforeBal; totalLocked = wantHarvested + lockedProfit(); lastHarvest = block.timestamp; deposit(); emit StratHarvest(msg.sender, wantHarvested, balanceOf()); } } function _swapRewardsToNative() internal virtual { for (uint i; i < rewards.length; ++i) { address token = rewards[i]; uint256 amount = IERC20(token).balanceOf(address(this)); if (amount > minAmounts[token]) { IBeefySwapper(unirouter).swap(token, native, amount); } } } // performance fees function _chargeFees(address callFeeRecipient) internal { IFeeConfig.FeeCategory memory fees = getFees(); uint256 nativeBal = IERC20(native).balanceOf(address(this)) * fees.total / DIVISOR; uint256 callFeeAmount = nativeBal * fees.call / DIVISOR; IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount); uint256 beefyFeeAmount = nativeBal * fees.beefy / DIVISOR; IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount); uint256 strategistFeeAmount = nativeBal * fees.strategist / DIVISOR; IERC20(native).safeTransfer(strategist, strategistFeeAmount); emit ChargedFees(callFeeAmount, beefyFeeAmount, strategistFeeAmount); } function _swap(address tokenFrom, address tokenTo) internal { uint bal = IERC20(tokenFrom).balanceOf(address(this)); IBeefySwapper(unirouter).swap(tokenFrom, tokenTo, bal); } function rewardsLength() external view returns (uint) { return rewards.length; } function addReward(address _token) public onlyManager { require(_token != want, "!want"); require(_token != native, "!native"); require(_token != lpToken, "!lpToken"); rewards.push(_token); _approve(_token, unirouter, 0); _approve(_token, unirouter, type(uint).max); } function removeReward(uint i) external onlyManager { rewards[i] = rewards[rewards.length - 1]; rewards.pop(); } function resetRewards() external onlyManager { for (uint i; i < rewards.length; ++i) { _approve(rewards[i], unirouter, 0); } delete rewards; } function updateUnirouter(address _unirouter) external onlyOwner { for (uint i; i < rewards.length; ++i) { address token = rewards[i]; _approve(token, unirouter, 0); _approve(token, _unirouter, 0); _approve(token, _unirouter, type(uint).max); } _approve(native, unirouter, 0); _approve(native, _unirouter, 0); _approve(native, _unirouter, type(uint).max); unirouter = _unirouter; emit SetUnirouter(_unirouter); } function setRewardMinAmount(address token, uint minAmount) external onlyManager { minAmounts[token] = minAmount; } function lockedProfit() public view returns (uint256) { if (lockDuration == 0) return 0; uint256 elapsed = block.timestamp - lastHarvest; uint256 remaining = elapsed < lockDuration ? lockDuration - elapsed : 0; return totalLocked * remaining / lockDuration; } // calculate the total underlaying 'want' held by the strat. function balanceOf() public view returns (uint256) { return balanceOfWant() + balanceOfPool() - lockedProfit(); } // it calculates how much 'want' this contract holds. function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } function balanceOfPool() public view returns (uint256) { return IStargateV2Chef(chef).balanceOf(lpToken, address(this)); } function setHarvestOnDeposit(bool _harvestOnDeposit) public onlyManager { harvestOnDeposit = _harvestOnDeposit; if (harvestOnDeposit) { lockDuration = 0; } else { lockDuration = 1 days; } } function setLockDuration(uint _duration) external onlyManager { lockDuration = _duration; } function rewardsAvailable() external view virtual returns (uint) { return 0; } function callReward() external view virtual returns (uint) { return 0; } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); IStargateV2Chef(chef).emergencyWithdraw(lpToken); IStargateV2Router(stargateRouter).redeem(IERC20(lpToken).balanceOf(address(this)), address(this)); IERC20(want).transfer(vault, balanceOfWant()); } // pauses deposits and withdraws all funds from third party systems. function panic() public onlyManager { pause(); IStargateV2Chef(chef).emergencyWithdraw(lpToken); IStargateV2Router(stargateRouter).redeem(IERC20(lpToken).balanceOf(address(this)), address(this)); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _approve(address _token, address _spender, uint amount) internal { IERC20(_token).safeApprove(_spender, amount); } function _giveAllowances() internal { IERC20(want).safeApprove(stargateRouter, type(uint256).max); IERC20(lpToken).safeApprove(chef, type(uint256).max); IERC20(native).safeApprove(unirouter, type(uint256).max); for (uint i; i < rewards.length; i++) { IERC20(rewards[i]).safeApprove(unirouter, 0); IERC20(rewards[i]).safeApprove(unirouter, type(uint256).max); } } function _removeAllowances() internal { IERC20(want).safeApprove(stargateRouter, 0); IERC20(lpToken).safeApprove(chef, 0); IERC20(native).safeApprove(unirouter, 0); for (uint i; i < rewards.length; i++) { IERC20(rewards[i]).safeApprove(unirouter, 0); } } receive() external payable { if (msg.sender != native) IWrappedNative(native).deposit{value: address(this).balance}(); } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @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"); } } }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @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] * ```solidity * 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. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ 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. * * 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. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * 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. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ 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. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IBeefySwapper { function swap( address fromToken, address toToken, uint256 amountIn ) external returns (uint256 amountOut); function swap( address fromToken, address toToken, uint256 amountIn, uint256 minAmountOut ) external returns (uint256 amountOut); function getAmountOut( address _fromToken, address _toToken, uint256 _amountIn ) external view returns (uint256 amountOut); struct SwapInfo { address router; bytes data; uint256 amountIndex; uint256 minIndex; int8 minAmountSign; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20Extended { function symbol() external view returns (string memory); function decimals() external view returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IFeeConfig { struct FeeCategory { uint256 total; uint256 beefy; 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; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IWrappedNative { function deposit() external payable; function withdraw(uint256 wad) external; }
// SPDX-License-Identifier: MIT pragma solidity >0.6.0; interface IStargateV2Chef { function deposit(address token, uint256 amount) external; function withdraw(address token, uint256 _amount) external; function emergencyWithdraw(address token) external; function balanceOf(address token, address user) external view returns (uint256); function claim(address[] calldata lpTokens) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IStargateV2Router { function token() external view returns (address); function lpToken() external view returns (address); function deposit(address receiver, uint256 amount) external payable returns (uint256); function redeem(uint256 amount, address receiver) external returns (uint256); function sharedDecimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "../../interfaces/common/IFeeConfig.sol"; contract StratFeeManagerInitializable is OwnableUpgradeable, PausableUpgradeable { struct CommonAddresses { address vault; address unirouter; address keeper; address strategist; address beefyFeeRecipient; address beefyFeeConfig; } // common addresses for the strategy address public vault; address public unirouter; address public keeper; address public strategist; address public beefyFeeRecipient; IFeeConfig public beefyFeeConfig; 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 SetBeefyFeeRecipient(address beefyFeeRecipient); event SetBeefyFeeConfig(address beefyFeeConfig); function __StratFeeManager_init(CommonAddresses calldata _commonAddresses) internal onlyInitializing { __Ownable_init(); __Pausable_init(); vault = _commonAddresses.vault; unirouter = _commonAddresses.unirouter; keeper = _commonAddresses.keeper; strategist = _commonAddresses.strategist; beefyFeeRecipient = _commonAddresses.beefyFeeRecipient; beefyFeeConfig = IFeeConfig(_commonAddresses.beefyFeeConfig); withdrawalFee = 10; } // checks that caller is either owner or keeper. modifier onlyManager() { _checkManager(); _; } function _checkManager() internal view { require(msg.sender == owner() || msg.sender == keeper, "!manager"); } // fetch fees from config contract function getFees() internal view returns (IFeeConfig.FeeCategory memory) { return beefyFeeConfig.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 beefyFeeConfig.stratFeeId(address(this)); } function setStratFeeId(uint256 _feeId) external onlyManager { beefyFeeConfig.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 beefy fee address to receive beefy fees function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner { beefyFeeRecipient = _beefyFeeRecipient; emit SetBeefyFeeRecipient(_beefyFeeRecipient); } // set new fee config address to fetch fees function setBeefyFeeConfig(address _beefyFeeConfig) external onlyOwner { beefyFeeConfig = IFeeConfig(_beefyFeeConfig); emit SetBeefyFeeConfig(_beefyFeeConfig); } function depositFee() public virtual view returns (uint256) { return 0; } function withdrawFee() public virtual view returns (uint256) { return paused() ? 0 : withdrawalFee; } function beforeDeposit() external virtual {} }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"beefyFees","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":"beefyFeeConfig","type":"address"}],"name":"SetBeefyFeeConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"beefyFeeRecipient","type":"address"}],"name":"SetBeefyFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"keeper","type":"address"}],"name":"SetKeeper","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":[{"internalType":"address","name":"_token","type":"address"}],"name":"addReward","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":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeConfig","outputs":[{"internalType":"contract IFeeConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"convertRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"getAllFees","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"beefy","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":"_chef","type":"address"},{"internalType":"address","name":"_stargateRouter","type":"address"},{"internalType":"address","name":"_native","type":"address"},{"internalType":"address[]","name":"_rewards","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":"beefyFeeRecipient","type":"address"},{"internalType":"address","name":"beefyFeeConfig","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":"lockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedProfit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"native","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":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"removeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeConfig","type":"address"}],"name":"setBeefyFeeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","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":"uint256","name":"_duration","type":"uint256"}],"name":"setLockDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"minAmount","type":"uint256"}],"name":"setRewardMinAmount","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":"stargateRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"updateUnirouter","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561000f575f80fd5b506135618061001d5f395ff3fe60806040526004361061038a575f3560e01c80638912cb8b116101d3578063bbb356d5116100fd578063e7a7250a1161009d578063f301af421161006d578063f301af42146109eb578063fb61778714610a0a578063fbfa77cf14610a1e578063feb56b1514610a3d575f80fd5b8063e7a7250a146106c8578063e941fa78146109a3578063f1a392da146109b7578063f2fde38b146109cc575f80fd5b8063c7b9d530116100d8578063c7b9d5301461093d578063d0e30db01461095c578063d92f3d7314610970578063dfbdc4371461098f575f80fd5b8063bbb356d5146108f6578063c1a3d44c1461090a578063c553173f1461091e575f80fd5b8063a68833e511610173578063aced166111610143578063aced166114610883578063ad29f5da146108a2578063b20feaaf146108b6578063bbb19a58146108d7575f80fd5b8063a68833e514610807578063a7e9ca8214610826578063a9e56f3c14610845578063ac1e502514610864575f80fd5b80638e145459116101ae5780638e1454591461079e57806397fd323d146106c85780639c5e52d5146107bd5780639c9b2e21146107e8575f80fd5b80638912cb8b146107545780638cfc02501461076d5780638da5cb5b14610781575f80fd5b80634641257d116102b45780635c975abb11610254578063715018a611610224578063715018a6146106f9578063722713f71461070d578063748747e6146107215780638456cb5914610740575f80fd5b80635c975abb146106865780635fcbd285146106a957806367a52793146106c85780636817031b146106da575f80fd5b80634eb665af1161028f5780634eb665af1461062957806354518b1a14610648578063568914121461065d578063573fef0a14610672575f80fd5b80634641257d146105e25780634700d305146105f65780634746fb551461060a575f80fd5b80631f1fcd511161032a5780632e1a7d4d116102fa5780632e1a7d4d1461057c5780633e55f9321461059b5780633f4ba83a146105ba57806344b81396146105ce575f80fd5b80631f1fcd51146104fb5780631fc8bc5d1461051a5780631fe4a6861461053e578063257ae0de1461055d575f80fd5b8063106fdbd011610365578063106fdbd014610472578063115880861461049157806311b0b42d146104a55780631aacb838146104dc575f80fd5b8063045544431461040c5780630e5c011e146104345780630e8fbb5a14610453575f80fd5b366104085760a1546001600160a01b031633146104065760a15f9054906101000a90046001600160a01b03166001600160a01b031663d0e30db0476040518263ffffffff1660e01b81526004015f604051808303818588803b1580156103ee575f80fd5b505af1158015610400573d5f803e3d5ffd5b50505050505b005b5f80fd5b348015610417575f80fd5b5061042160a65481565b6040519081526020015b60405180910390f35b34801561043f575f80fd5b5061040661044e366004612ec7565b610a52565b34801561045e575f80fd5b5061040661046d366004612eef565b610a5e565b34801561047d575f80fd5b5061040661048c366004612ec7565b610a90565b34801561049c575f80fd5b50610421610aed565b3480156104b0575f80fd5b5060a1546104c4906001600160a01b031681565b6040516001600160a01b03909116815260200161042b565b3480156104e7575f80fd5b506104066104f6366004612f20565b610b6f565b348015610506575f80fd5b5060a0546104c4906001600160a01b031681565b348015610525575f80fd5b5060a7546104c49061010090046001600160a01b031681565b348015610549575f80fd5b50609a546104c4906001600160a01b031681565b348015610568575f80fd5b506098546104c4906001600160a01b031681565b348015610587575f80fd5b50610406610596366004612fd7565b610f5f565b3480156105a6575f80fd5b506104066105b5366004612fd7565b61115f565b3480156105c5575f80fd5b506104066111f1565b3480156105d9575f80fd5b50610421611213565b3480156105ed575f80fd5b50610406611275565b348015610601575f80fd5b5061040661127e565b348015610615575f80fd5b50609c546104c4906001600160a01b031681565b348015610634575f80fd5b50610406610643366004612fd7565b6113ca565b348015610653575f80fd5b5061042161271081565b348015610668575f80fd5b5061042160a55481565b34801561067d575f80fd5b506104066113d7565b348015610691575f80fd5b5060655460ff165b604051901515815260200161042b565b3480156106b4575f80fd5b5060a2546104c4906001600160a01b031681565b3480156106d3575f80fd5b505f610421565b3480156106e5575f80fd5b506104066106f4366004612ec7565b61140c565b348015610704575f80fd5b50610406611462565b348015610718575f80fd5b50610421611473565b34801561072c575f80fd5b5061040661073b366004612ec7565b6114a0565b34801561074b575f80fd5b506104066114f6565b34801561075f575f80fd5b5060a7546106999060ff1681565b348015610778575f80fd5b5061042161150e565b34801561078c575f80fd5b506033546001600160a01b03166104c4565b3480156107a9575f80fd5b50609b546104c4906001600160a01b031681565b3480156107c8575f80fd5b506104216107d7366004612ec7565b609f6020525f908152604090205481565b3480156107f3575f80fd5b50610406610802366004612ec7565b61153e565b348015610812575f80fd5b50610406610821366004612ec7565b611697565b348015610831575f80fd5b50610406610840366004612fee565b6116ed565b348015610850575f80fd5b5060a8546104c4906001600160a01b031681565b34801561086f575f80fd5b5061040661087e366004612fd7565b611710565b34801561088e575f80fd5b506099546104c4906001600160a01b031681565b3480156108ad575f80fd5b50610406611787565b3480156108c1575f80fd5b506108ca6117e6565b60405161042b9190613065565b3480156108e2575f80fd5b506104066108f1366004612ec7565b61181b565b348015610901575f80fd5b50609e54610421565b348015610915575f80fd5b50610421611927565b348015610929575f80fd5b50610406610938366004612fd7565b611957565b348015610948575f80fd5b50610406610957366004612ec7565b611a09565b348015610967575f80fd5b50610406611a9f565b34801561097b575f80fd5b5061040661098a366004612ec7565b611be1565b34801561099a575f80fd5b50610421603281565b3480156109ae575f80fd5b50610421611be9565b3480156109c2575f80fd5b5061042160a45481565b3480156109d7575f80fd5b506104066109e6366004612ec7565b611c06565b3480156109f6575f80fd5b506104c4610a05366004612fd7565b611c7c565b348015610a15575f80fd5b50610406611ca4565b348015610a29575f80fd5b506097546104c4906001600160a01b031681565b348015610a48575f80fd5b5061042160a95481565b610a5b81611e98565b50565b610a6661202d565b60a7805460ff191682151590811790915560ff1615610a86575f60a65550565b6201518060a65550565b610a98612087565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a75460a254604051633de222bb60e21b81526001600160a01b0391821660048201523060248201525f9261010090049091169063f7888aec906044015b602060405180830381865afa158015610b46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6a91906130e1565b905090565b5f54610100900460ff1615808015610b8d57505f54600160ff909116105b80610ba65750303b158015610ba657505f5460ff166001145b610c0e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b5f805460ff191660011790558015610c2f575f805461ff0019166101001790555b610c38826120e1565b60a780546001600160a01b03808a1661010002610100600160a81b03199092169190911790915560a880549188166001600160a01b03199092168217905560408051637e062a3560e11b8152905163fc0c546a916004808201926020929091908290030181865afa158015610caf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd391906130f8565b60a080546001600160a01b0319166001600160a01b0392831617905560a85460408051635fcbd28560e01b815290519190921691635fcbd2859160048083019260209291908290030181865afa158015610d2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d5391906130f8565b60a280546001600160a01b039283166001600160a01b0319918216811790925560a380546001810182555f919091527f60859188cffe297f44dde29f2d2865634621f26215049caeb304ccba566a8b17018054909116909117905560a85460408051630857749b60e41b81529051919092169163857749b09160048083019260209291908290030181865afa158015610dee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e129190613113565b60ff1660a05f9054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8991906130e1565b610e939190613147565b610e9e90600a613240565b60a95560a180546001600160a01b0319166001600160a01b0387161790556201518060a6555f5b83811015610eff57610ef7858583818110610ee257610ee261324b565b90506020020160208101906108029190612ec7565b600101610ec5565b50610f095f611710565b610f1161223c565b8015610f56575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050565b6097546001600160a01b03163314610f895760405162461bcd60e51b8152600401610c059061325f565b5f610f92611927565b9050818110156110aa5760a9545f9080610fac8486613147565b610fb6919061327f565b610fc0919061329e565b60a75460a25460405163f3fef3a360e01b81526001600160a01b03918216600482015260248101849052929350610100909104169063f3fef3a3906044015f604051808303815f87803b158015611015575f80fd5b505af1158015611027573d5f803e3d5ffd5b505060a854604051633def417960e11b8152600481018590523060248201526001600160a01b039091169250637bde82f291506044016020604051808303815f875af1158015611079573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109d91906130e1565b506110a6611927565b9150505b818111156110b55750805b6033546001600160a01b031632148015906110d3575060655460ff16155b15611104575f612710609d54836110ea919061329e565b6110f4919061327f565b90506111008183613147565b9150505b60975460a054611121916001600160a01b0391821691168361231a565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d61114a611473565b60405190815260200160405180910390a15050565b61116761202d565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f932906024015f604051808303815f87803b1580156111aa575f80fd5b505af11580156111bc573d5f803e3d5ffd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f81604051610ae291815260200190565b6111f961202d565b61120161237d565b61120961223c565b611211611a9f565b565b5f60a6545f0361122257505f90565b5f60a454426112319190613147565b90505f60a6548210611243575f611251565b8160a6546112519190613147565b905060a6548160a554611264919061329e565b61126e919061327f565b9250505090565b61121132611e98565b61128661202d565b61128e6114f6565b60a75460a254604051631bfc726f60e21b81526001600160a01b0391821660048201526101009092041690636ff1c9bc906024015f604051808303815f87803b1580156112d9575f80fd5b505af11580156112eb573d5f803e3d5ffd5b505060a85460a2546040516370a0823160e01b81523060048201526001600160a01b039283169450637bde82f293509116906370a0823190602401602060405180830381865afa158015611341573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136591906130e1565b6040516001600160e01b031960e084901b16815260048101919091523060248201526044016020604051808303815f875af11580156113a6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5b91906130e1565b6113d261202d565b60a655565b60a75460ff1615611211576097546001600160a01b031633146112755760405162461bcd60e51b8152600401610c059061325f565b611414612087565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f3090602001610ae2565b61146a612087565b6112115f6123cf565b5f61147c611213565b611484610aed565b61148c611927565b61149691906132b5565b610b6a9190613147565b6114a861202d565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b90602001610ae2565b6114fe61202d565b611506612420565b61121161245d565b609c54604051636788231160e11b81523060048201525f916001600160a01b03169063cf10462290602401610b2b565b61154661202d565b60a0546001600160a01b039081169082160361158c5760405162461bcd60e51b8152602060048201526005602482015264085dd85b9d60da1b6044820152606401610c05565b60a1546001600160a01b03908116908216036115d45760405162461bcd60e51b8152602060048201526007602482015266216e617469766560c81b6044820152606401610c05565b60a2546001600160a01b039081169082160361161d5760405162461bcd60e51b815260206004820152600860248201526710b6382a37b5b2b760c11b6044820152606401610c05565b609e80546001810182555f9182527fcfe2a20ff701a1f3e14f63bd70d6c6bc6fba8172ec6d5a505cdab3927c0a9de60180546001600160a01b0319166001600160a01b038481169190911790915560985461167e92849291909116906124f5565b609854610a5b9082906001600160a01b03165f196124f5565b61169f612087565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac8590602001610ae2565b6116f561202d565b6001600160a01b039091165f908152609f6020526040902055565b61171861202d565b60328111156117525760405162461bcd60e51b8152600401610c05906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af90602001610ae2565b61178f61202d565b5f5b609e548110156117da576117d2609e82815481106117b1576117b161324b565b5f9182526020822001546098546001600160a01b03918216929116906124f5565b600101611791565b50611211609e5f612e2d565b6117ee612e48565b6040518060600160405280611801612509565b81526020015f8152602001611814611be9565b9052919050565b611823612087565b5f5b609e5481101561188c575f609e82815481106118435761184361324b565b5f9182526020822001546098546001600160a01b03918216935061186c928492909116906124f5565b61187781845f6124f5565b61188381845f196124f5565b50600101611825565b5060a1546098546118aa916001600160a01b0390811691165f6124f5565b60a1546118c1906001600160a01b0316825f6124f5565b60a1546118d9906001600160a01b0316825f196124f5565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa90602001610ae2565b60a0546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401610b2b565b61195f61202d565b609e805461196f90600190613147565b8154811061197f5761197f61324b565b5f91825260209091200154609e80546001600160a01b0390921691839081106119aa576119aa61324b565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550609e8054806119e6576119e66132c8565b5f8281526020902081015f1990810180546001600160a01b031916905501905550565b609a546001600160a01b03163314611a515760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b6044820152606401610c05565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec541290602001610ae2565b611aa76125ab565b5f611ab0611927565b90508015610a5b5760a9545f90611ac7818461327f565b611ad1919061329e565b90508015611bdd5760a8546040516311f9fbc960e21b8152306004820152602481018390526001600160a01b03909116906347e7ef24906044016020604051808303815f875af1158015611b27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4b91906130e1565b5060a75460a2546040516311f9fbc960e21b81526001600160a01b0391821660048201526024810184905261010090920416906347e7ef24906044015f604051808303815f87803b158015611b9e575f80fd5b505af1158015611bb0573d5f803e3d5ffd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661114a611473565b5050565b6118d9612087565b5f611bf660655460ff1690565b611c015750609d5490565b505f90565b611c0e612087565b6001600160a01b038116611c735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c05565b610a5b816123cf565b609e8181548110611c8b575f80fd5b5f918252602090912001546001600160a01b0316905081565b6097546001600160a01b03163314611cce5760405162461bcd60e51b8152600401610c059061325f565b60a75460a254604051631bfc726f60e21b81526001600160a01b0391821660048201526101009092041690636ff1c9bc906024015f604051808303815f87803b158015611d19575f80fd5b505af1158015611d2b573d5f803e3d5ffd5b505060a85460a2546040516370a0823160e01b81523060048201526001600160a01b039283169450637bde82f293509116906370a0823190602401602060405180830381865afa158015611d81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da591906130e1565b6040516001600160e01b031960e084901b16815260048101919091523060248201526044016020604051808303815f875af1158015611de6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0a91906130e1565b5060a0546097546001600160a01b039182169163a9059cbb9116611e2c611927565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015611e74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5b91906132ec565b611ea06125ab565b5f611ea9611927565b60a75460405163318d9e5d60e01b815291925061010090046001600160a01b03169063318d9e5d90611ee09060a390600401613307565b5f604051808303815f87803b158015611ef7575f80fd5b505af1158015611f09573d5f803e3d5ffd5b50505050611f156125f1565b60a1546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611f5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7f91906130e1565b9050801561202857611f9083612731565b60a15460a054611fac916001600160a01b0390811691166128d9565b5f82611fb6611927565b611fc09190613147565b9050611fca611213565b611fd490826132b5565b60a5554260a455611fe3611a9f565b337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f924108261200e611473565b6040805192835260208301919091520160405180910390a2505b505050565b6033546001600160a01b031633148061205057506099546001600160a01b031633145b6112115760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b6044820152606401610c05565b6033546001600160a01b031633146112115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c05565b5f54610100900460ff166121075760405162461bcd60e51b8152600401610c0590613356565b61210f6129c5565b6121176129f3565b6121246020820182612ec7565b609780546001600160a01b0319166001600160a01b03929092169190911790556121546040820160208301612ec7565b609880546001600160a01b0319166001600160a01b03929092169190911790556121846060820160408301612ec7565b609980546001600160a01b0319166001600160a01b03929092169190911790556121b46080820160608301612ec7565b609a80546001600160a01b0319166001600160a01b03929092169190911790556121e460a0820160808301612ec7565b609b80546001600160a01b0319166001600160a01b039290921691909117905561221460c0820160a08301612ec7565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b60a85460a05461225a916001600160a01b0391821691165f19612a21565b60a75460a25461227e916001600160a01b0391821691610100909104165f19612a21565b60985460a15461229c916001600160a01b0391821691165f19612a21565b5f5b609e54811015610a5b57609854609e80546122ea926001600160a01b0316915f91859081106122cf576122cf61324b565b5f918252602090912001546001600160a01b03169190612a21565b609854609e8054612312926001600160a01b0316915f1991859081106122cf576122cf61324b565b60010161229e565b6040516001600160a01b03831660248201526044810182905261202890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612b34565b612385612c05565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6124286125ab565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123b23390565b60a85460a05461247a916001600160a01b0391821691165f612a21565b60a75460a25461249d916001600160a01b0391821691610100909104165f612a21565b60985460a1546124ba916001600160a01b0391821691165f612a21565b5f5b609e54811015610a5b57609854609e80546124ed926001600160a01b0316915f91859081106122cf576122cf61324b565b6001016124bc565b6120286001600160a01b0384168383612a21565b61253f6040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c9906024015f60405180830381865afa158015612584573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610b6a919081019061340f565b60655460ff16156112115760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c05565b5f5b609e54811015610a5b575f609e82815481106126115761261161324b565b5f9182526020822001546040516370a0823160e01b81523060048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015612661573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061268591906130e1565b6001600160a01b0383165f908152609f60205260409020549091508111156127275760985460a154604051630df791e560e41b81526001600160a01b03858116600483015291821660248201526044810184905291169063df791e50906064016020604051808303815f875af1158015612701573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272591906130e1565b505b50506001016125f3565b5f61273a612509565b805160a1546040516370a0823160e01b81523060048201529293505f92670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa158015612790573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b491906130e1565b6127be919061329e565b6127c8919061327f565b90505f670de0b6b3a76400008360400151836127e4919061329e565b6127ee919061327f565b60a154909150612808906001600160a01b0316858361231a565b5f670de0b6b3a7640000846020015184612822919061329e565b61282c919061327f565b609b5460a15491925061284c916001600160a01b0390811691168361231a565b5f670de0b6b3a7640000856060015185612866919061329e565b612870919061327f565b609a5460a154919250612890916001600160a01b0390811691168361231a565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600160405180910390a1505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561291d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061294191906130e1565b609854604051630df791e560e41b81526001600160a01b03868116600483015285811660248301526044820184905292935091169063df791e50906064016020604051808303815f875af115801561299b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129bf91906130e1565b50505050565b5f54610100900460ff166129eb5760405162461bcd60e51b8152600401610c0590613356565b611211612c4e565b5f54610100900460ff16612a195760405162461bcd60e51b8152600401610c0590613356565b611211612c7d565b801580612a995750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612a73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9791906130e1565b155b612b045760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610c05565b6040516001600160a01b03831660248201526044810182905261202890849063095ea7b360e01b90606401612346565b5f612b88826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612caf9092919063ffffffff16565b8051909150156120285780806020019051810190612ba691906132ec565b6120285760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c05565b60655460ff166112115760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c05565b5f54610100900460ff16612c745760405162461bcd60e51b8152600401610c0590613356565b611211336123cf565b5f54610100900460ff16612ca35760405162461bcd60e51b8152600401610c0590613356565b6065805460ff19169055565b6060612cbd84845f85612cc7565b90505b9392505050565b606082471015612d285760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c05565b6001600160a01b0385163b612d7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c05565b5f80866001600160a01b03168587604051612d9a91906134fe565b5f6040518083038185875af1925050503d805f8114612dd4576040519150601f19603f3d011682016040523d82523d5f602084013e612dd9565b606091505b5091509150612de9828286612df4565b979650505050505050565b60608315612e03575081612cc0565b825115612e135782518084602001fd5b8160405162461bcd60e51b8152600401610c059190613519565b5080545f8255905f5260205f2090810190610a5b9190612e9b565b6040518060600160405280612e896040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b81526020015f81526020015f81525090565b5b80821115612eaf575f8155600101612e9c565b5090565b6001600160a01b0381168114610a5b575f80fd5b5f60208284031215612ed7575f80fd5b8135612cc081612eb3565b8015158114610a5b575f80fd5b5f60208284031215612eff575f80fd5b8135612cc081612ee2565b5f60c08284031215612f1a575f80fd5b50919050565b5f805f805f806101408789031215612f36575f80fd5b8635612f4181612eb3565b95506020870135612f5181612eb3565b94506040870135612f6181612eb3565b9350606087013567ffffffffffffffff80821115612f7d575f80fd5b818901915089601f830112612f90575f80fd5b813581811115612f9e575f80fd5b8a60208260051b8501011115612fb2575f80fd5b602083019550809450505050612fcb8860808901612f0a565b90509295509295509295565b5f60208284031215612fe7575f80fd5b5035919050565b5f8060408385031215612fff575f80fd5b823561300a81612eb3565b946020939093013593505050565b5f5b8381101561303257818101518382015260200161301a565b50505f910152565b5f8151808452613051816020860160208601613018565b601f01601f19169290920160200192915050565b602081525f82516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526130b361014085018261303a565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b5f602082840312156130f1575f80fd5b5051919050565b5f60208284031215613108575f80fd5b8151612cc081612eb3565b5f60208284031215613123575f80fd5b815160ff81168114612cc0575f80fd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561315a5761315a613133565b92915050565b600181815b8085111561319a57815f190482111561318057613180613133565b8085161561318d57918102915b93841c9390800290613165565b509250929050565b5f826131b05750600161315a565b816131bc57505f61315a565b81600181146131d257600281146131dc576131f8565b600191505061315a565b60ff8411156131ed576131ed613133565b50506001821b61315a565b5060208310610133831016604e8410600b841016171561321b575081810a61315a565b6132258383613160565b805f190482111561323857613238613133565b029392505050565b5f612cc083836131a2565b634e487b7160e01b5f52603260045260245ffd5b602080825260069082015265085d985d5b1d60d21b604082015260600190565b5f8261329957634e487b7160e01b5f52601260045260245ffd5b500490565b808202811582820484141761315a5761315a613133565b8082018082111561315a5761315a613133565b634e487b7160e01b5f52603160045260245ffd5b80516132e781612ee2565b919050565b5f602082840312156132fc575f80fd5b8151612cc081612ee2565b602080825282548282018190525f8481528281209092916040850190845b8181101561334a5783546001600160a01b031683526001938401939285019201613325565b50909695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b5f52604160045260245ffd5b60405160c0810167ffffffffffffffff811182821017156133d8576133d86133a1565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613407576134076133a1565b604052919050565b5f6020808385031215613420575f80fd5b825167ffffffffffffffff80821115613437575f80fd5b9084019060c0828703121561344a575f80fd5b6134526133b5565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115613483575f80fd5b8301601f81018813613493575f80fd5b8051838111156134a5576134a56133a1565b6134b7601f8201601f191687016133de565b935080845288868284010111156134cc575f80fd5b6134db81878601888501613018565b50508160808201526134ef60a084016132dc565b60a08201529695505050505050565b5f825161350f818460208701613018565b9190910192915050565b602081525f612cc0602083018461303a56fea26469706673582212209d0b7df1be038c4f80cc7ab14d58c89c83a2fdfadf651efbe3e2d771699daf0164736f6c63430008170033
Deployed Bytecode
0x60806040526004361061038a575f3560e01c80638912cb8b116101d3578063bbb356d5116100fd578063e7a7250a1161009d578063f301af421161006d578063f301af42146109eb578063fb61778714610a0a578063fbfa77cf14610a1e578063feb56b1514610a3d575f80fd5b8063e7a7250a146106c8578063e941fa78146109a3578063f1a392da146109b7578063f2fde38b146109cc575f80fd5b8063c7b9d530116100d8578063c7b9d5301461093d578063d0e30db01461095c578063d92f3d7314610970578063dfbdc4371461098f575f80fd5b8063bbb356d5146108f6578063c1a3d44c1461090a578063c553173f1461091e575f80fd5b8063a68833e511610173578063aced166111610143578063aced166114610883578063ad29f5da146108a2578063b20feaaf146108b6578063bbb19a58146108d7575f80fd5b8063a68833e514610807578063a7e9ca8214610826578063a9e56f3c14610845578063ac1e502514610864575f80fd5b80638e145459116101ae5780638e1454591461079e57806397fd323d146106c85780639c5e52d5146107bd5780639c9b2e21146107e8575f80fd5b80638912cb8b146107545780638cfc02501461076d5780638da5cb5b14610781575f80fd5b80634641257d116102b45780635c975abb11610254578063715018a611610224578063715018a6146106f9578063722713f71461070d578063748747e6146107215780638456cb5914610740575f80fd5b80635c975abb146106865780635fcbd285146106a957806367a52793146106c85780636817031b146106da575f80fd5b80634eb665af1161028f5780634eb665af1461062957806354518b1a14610648578063568914121461065d578063573fef0a14610672575f80fd5b80634641257d146105e25780634700d305146105f65780634746fb551461060a575f80fd5b80631f1fcd511161032a5780632e1a7d4d116102fa5780632e1a7d4d1461057c5780633e55f9321461059b5780633f4ba83a146105ba57806344b81396146105ce575f80fd5b80631f1fcd51146104fb5780631fc8bc5d1461051a5780631fe4a6861461053e578063257ae0de1461055d575f80fd5b8063106fdbd011610365578063106fdbd014610472578063115880861461049157806311b0b42d146104a55780631aacb838146104dc575f80fd5b8063045544431461040c5780630e5c011e146104345780630e8fbb5a14610453575f80fd5b366104085760a1546001600160a01b031633146104065760a15f9054906101000a90046001600160a01b03166001600160a01b031663d0e30db0476040518263ffffffff1660e01b81526004015f604051808303818588803b1580156103ee575f80fd5b505af1158015610400573d5f803e3d5ffd5b50505050505b005b5f80fd5b348015610417575f80fd5b5061042160a65481565b6040519081526020015b60405180910390f35b34801561043f575f80fd5b5061040661044e366004612ec7565b610a52565b34801561045e575f80fd5b5061040661046d366004612eef565b610a5e565b34801561047d575f80fd5b5061040661048c366004612ec7565b610a90565b34801561049c575f80fd5b50610421610aed565b3480156104b0575f80fd5b5060a1546104c4906001600160a01b031681565b6040516001600160a01b03909116815260200161042b565b3480156104e7575f80fd5b506104066104f6366004612f20565b610b6f565b348015610506575f80fd5b5060a0546104c4906001600160a01b031681565b348015610525575f80fd5b5060a7546104c49061010090046001600160a01b031681565b348015610549575f80fd5b50609a546104c4906001600160a01b031681565b348015610568575f80fd5b506098546104c4906001600160a01b031681565b348015610587575f80fd5b50610406610596366004612fd7565b610f5f565b3480156105a6575f80fd5b506104066105b5366004612fd7565b61115f565b3480156105c5575f80fd5b506104066111f1565b3480156105d9575f80fd5b50610421611213565b3480156105ed575f80fd5b50610406611275565b348015610601575f80fd5b5061040661127e565b348015610615575f80fd5b50609c546104c4906001600160a01b031681565b348015610634575f80fd5b50610406610643366004612fd7565b6113ca565b348015610653575f80fd5b5061042161271081565b348015610668575f80fd5b5061042160a55481565b34801561067d575f80fd5b506104066113d7565b348015610691575f80fd5b5060655460ff165b604051901515815260200161042b565b3480156106b4575f80fd5b5060a2546104c4906001600160a01b031681565b3480156106d3575f80fd5b505f610421565b3480156106e5575f80fd5b506104066106f4366004612ec7565b61140c565b348015610704575f80fd5b50610406611462565b348015610718575f80fd5b50610421611473565b34801561072c575f80fd5b5061040661073b366004612ec7565b6114a0565b34801561074b575f80fd5b506104066114f6565b34801561075f575f80fd5b5060a7546106999060ff1681565b348015610778575f80fd5b5061042161150e565b34801561078c575f80fd5b506033546001600160a01b03166104c4565b3480156107a9575f80fd5b50609b546104c4906001600160a01b031681565b3480156107c8575f80fd5b506104216107d7366004612ec7565b609f6020525f908152604090205481565b3480156107f3575f80fd5b50610406610802366004612ec7565b61153e565b348015610812575f80fd5b50610406610821366004612ec7565b611697565b348015610831575f80fd5b50610406610840366004612fee565b6116ed565b348015610850575f80fd5b5060a8546104c4906001600160a01b031681565b34801561086f575f80fd5b5061040661087e366004612fd7565b611710565b34801561088e575f80fd5b506099546104c4906001600160a01b031681565b3480156108ad575f80fd5b50610406611787565b3480156108c1575f80fd5b506108ca6117e6565b60405161042b9190613065565b3480156108e2575f80fd5b506104066108f1366004612ec7565b61181b565b348015610901575f80fd5b50609e54610421565b348015610915575f80fd5b50610421611927565b348015610929575f80fd5b50610406610938366004612fd7565b611957565b348015610948575f80fd5b50610406610957366004612ec7565b611a09565b348015610967575f80fd5b50610406611a9f565b34801561097b575f80fd5b5061040661098a366004612ec7565b611be1565b34801561099a575f80fd5b50610421603281565b3480156109ae575f80fd5b50610421611be9565b3480156109c2575f80fd5b5061042160a45481565b3480156109d7575f80fd5b506104066109e6366004612ec7565b611c06565b3480156109f6575f80fd5b506104c4610a05366004612fd7565b611c7c565b348015610a15575f80fd5b50610406611ca4565b348015610a29575f80fd5b506097546104c4906001600160a01b031681565b348015610a48575f80fd5b5061042160a95481565b610a5b81611e98565b50565b610a6661202d565b60a7805460ff191682151590811790915560ff1615610a86575f60a65550565b6201518060a65550565b610a98612087565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a75460a254604051633de222bb60e21b81526001600160a01b0391821660048201523060248201525f9261010090049091169063f7888aec906044015b602060405180830381865afa158015610b46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6a91906130e1565b905090565b5f54610100900460ff1615808015610b8d57505f54600160ff909116105b80610ba65750303b158015610ba657505f5460ff166001145b610c0e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b5f805460ff191660011790558015610c2f575f805461ff0019166101001790555b610c38826120e1565b60a780546001600160a01b03808a1661010002610100600160a81b03199092169190911790915560a880549188166001600160a01b03199092168217905560408051637e062a3560e11b8152905163fc0c546a916004808201926020929091908290030181865afa158015610caf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd391906130f8565b60a080546001600160a01b0319166001600160a01b0392831617905560a85460408051635fcbd28560e01b815290519190921691635fcbd2859160048083019260209291908290030181865afa158015610d2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d5391906130f8565b60a280546001600160a01b039283166001600160a01b0319918216811790925560a380546001810182555f919091527f60859188cffe297f44dde29f2d2865634621f26215049caeb304ccba566a8b17018054909116909117905560a85460408051630857749b60e41b81529051919092169163857749b09160048083019260209291908290030181865afa158015610dee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e129190613113565b60ff1660a05f9054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8991906130e1565b610e939190613147565b610e9e90600a613240565b60a95560a180546001600160a01b0319166001600160a01b0387161790556201518060a6555f5b83811015610eff57610ef7858583818110610ee257610ee261324b565b90506020020160208101906108029190612ec7565b600101610ec5565b50610f095f611710565b610f1161223c565b8015610f56575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050565b6097546001600160a01b03163314610f895760405162461bcd60e51b8152600401610c059061325f565b5f610f92611927565b9050818110156110aa5760a9545f9080610fac8486613147565b610fb6919061327f565b610fc0919061329e565b60a75460a25460405163f3fef3a360e01b81526001600160a01b03918216600482015260248101849052929350610100909104169063f3fef3a3906044015f604051808303815f87803b158015611015575f80fd5b505af1158015611027573d5f803e3d5ffd5b505060a854604051633def417960e11b8152600481018590523060248201526001600160a01b039091169250637bde82f291506044016020604051808303815f875af1158015611079573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109d91906130e1565b506110a6611927565b9150505b818111156110b55750805b6033546001600160a01b031632148015906110d3575060655460ff16155b15611104575f612710609d54836110ea919061329e565b6110f4919061327f565b90506111008183613147565b9150505b60975460a054611121916001600160a01b0391821691168361231a565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d61114a611473565b60405190815260200160405180910390a15050565b61116761202d565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f932906024015f604051808303815f87803b1580156111aa575f80fd5b505af11580156111bc573d5f803e3d5ffd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f81604051610ae291815260200190565b6111f961202d565b61120161237d565b61120961223c565b611211611a9f565b565b5f60a6545f0361122257505f90565b5f60a454426112319190613147565b90505f60a6548210611243575f611251565b8160a6546112519190613147565b905060a6548160a554611264919061329e565b61126e919061327f565b9250505090565b61121132611e98565b61128661202d565b61128e6114f6565b60a75460a254604051631bfc726f60e21b81526001600160a01b0391821660048201526101009092041690636ff1c9bc906024015f604051808303815f87803b1580156112d9575f80fd5b505af11580156112eb573d5f803e3d5ffd5b505060a85460a2546040516370a0823160e01b81523060048201526001600160a01b039283169450637bde82f293509116906370a0823190602401602060405180830381865afa158015611341573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136591906130e1565b6040516001600160e01b031960e084901b16815260048101919091523060248201526044016020604051808303815f875af11580156113a6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5b91906130e1565b6113d261202d565b60a655565b60a75460ff1615611211576097546001600160a01b031633146112755760405162461bcd60e51b8152600401610c059061325f565b611414612087565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f3090602001610ae2565b61146a612087565b6112115f6123cf565b5f61147c611213565b611484610aed565b61148c611927565b61149691906132b5565b610b6a9190613147565b6114a861202d565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b90602001610ae2565b6114fe61202d565b611506612420565b61121161245d565b609c54604051636788231160e11b81523060048201525f916001600160a01b03169063cf10462290602401610b2b565b61154661202d565b60a0546001600160a01b039081169082160361158c5760405162461bcd60e51b8152602060048201526005602482015264085dd85b9d60da1b6044820152606401610c05565b60a1546001600160a01b03908116908216036115d45760405162461bcd60e51b8152602060048201526007602482015266216e617469766560c81b6044820152606401610c05565b60a2546001600160a01b039081169082160361161d5760405162461bcd60e51b815260206004820152600860248201526710b6382a37b5b2b760c11b6044820152606401610c05565b609e80546001810182555f9182527fcfe2a20ff701a1f3e14f63bd70d6c6bc6fba8172ec6d5a505cdab3927c0a9de60180546001600160a01b0319166001600160a01b038481169190911790915560985461167e92849291909116906124f5565b609854610a5b9082906001600160a01b03165f196124f5565b61169f612087565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac8590602001610ae2565b6116f561202d565b6001600160a01b039091165f908152609f6020526040902055565b61171861202d565b60328111156117525760405162461bcd60e51b8152600401610c05906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af90602001610ae2565b61178f61202d565b5f5b609e548110156117da576117d2609e82815481106117b1576117b161324b565b5f9182526020822001546098546001600160a01b03918216929116906124f5565b600101611791565b50611211609e5f612e2d565b6117ee612e48565b6040518060600160405280611801612509565b81526020015f8152602001611814611be9565b9052919050565b611823612087565b5f5b609e5481101561188c575f609e82815481106118435761184361324b565b5f9182526020822001546098546001600160a01b03918216935061186c928492909116906124f5565b61187781845f6124f5565b61188381845f196124f5565b50600101611825565b5060a1546098546118aa916001600160a01b0390811691165f6124f5565b60a1546118c1906001600160a01b0316825f6124f5565b60a1546118d9906001600160a01b0316825f196124f5565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa90602001610ae2565b60a0546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401610b2b565b61195f61202d565b609e805461196f90600190613147565b8154811061197f5761197f61324b565b5f91825260209091200154609e80546001600160a01b0390921691839081106119aa576119aa61324b565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550609e8054806119e6576119e66132c8565b5f8281526020902081015f1990810180546001600160a01b031916905501905550565b609a546001600160a01b03163314611a515760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b6044820152606401610c05565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec541290602001610ae2565b611aa76125ab565b5f611ab0611927565b90508015610a5b5760a9545f90611ac7818461327f565b611ad1919061329e565b90508015611bdd5760a8546040516311f9fbc960e21b8152306004820152602481018390526001600160a01b03909116906347e7ef24906044016020604051808303815f875af1158015611b27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4b91906130e1565b5060a75460a2546040516311f9fbc960e21b81526001600160a01b0391821660048201526024810184905261010090920416906347e7ef24906044015f604051808303815f87803b158015611b9e575f80fd5b505af1158015611bb0573d5f803e3d5ffd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661114a611473565b5050565b6118d9612087565b5f611bf660655460ff1690565b611c015750609d5490565b505f90565b611c0e612087565b6001600160a01b038116611c735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c05565b610a5b816123cf565b609e8181548110611c8b575f80fd5b5f918252602090912001546001600160a01b0316905081565b6097546001600160a01b03163314611cce5760405162461bcd60e51b8152600401610c059061325f565b60a75460a254604051631bfc726f60e21b81526001600160a01b0391821660048201526101009092041690636ff1c9bc906024015f604051808303815f87803b158015611d19575f80fd5b505af1158015611d2b573d5f803e3d5ffd5b505060a85460a2546040516370a0823160e01b81523060048201526001600160a01b039283169450637bde82f293509116906370a0823190602401602060405180830381865afa158015611d81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da591906130e1565b6040516001600160e01b031960e084901b16815260048101919091523060248201526044016020604051808303815f875af1158015611de6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0a91906130e1565b5060a0546097546001600160a01b039182169163a9059cbb9116611e2c611927565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015611e74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5b91906132ec565b611ea06125ab565b5f611ea9611927565b60a75460405163318d9e5d60e01b815291925061010090046001600160a01b03169063318d9e5d90611ee09060a390600401613307565b5f604051808303815f87803b158015611ef7575f80fd5b505af1158015611f09573d5f803e3d5ffd5b50505050611f156125f1565b60a1546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015611f5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7f91906130e1565b9050801561202857611f9083612731565b60a15460a054611fac916001600160a01b0390811691166128d9565b5f82611fb6611927565b611fc09190613147565b9050611fca611213565b611fd490826132b5565b60a5554260a455611fe3611a9f565b337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f924108261200e611473565b6040805192835260208301919091520160405180910390a2505b505050565b6033546001600160a01b031633148061205057506099546001600160a01b031633145b6112115760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b6044820152606401610c05565b6033546001600160a01b031633146112115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c05565b5f54610100900460ff166121075760405162461bcd60e51b8152600401610c0590613356565b61210f6129c5565b6121176129f3565b6121246020820182612ec7565b609780546001600160a01b0319166001600160a01b03929092169190911790556121546040820160208301612ec7565b609880546001600160a01b0319166001600160a01b03929092169190911790556121846060820160408301612ec7565b609980546001600160a01b0319166001600160a01b03929092169190911790556121b46080820160608301612ec7565b609a80546001600160a01b0319166001600160a01b03929092169190911790556121e460a0820160808301612ec7565b609b80546001600160a01b0319166001600160a01b039290921691909117905561221460c0820160a08301612ec7565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b60a85460a05461225a916001600160a01b0391821691165f19612a21565b60a75460a25461227e916001600160a01b0391821691610100909104165f19612a21565b60985460a15461229c916001600160a01b0391821691165f19612a21565b5f5b609e54811015610a5b57609854609e80546122ea926001600160a01b0316915f91859081106122cf576122cf61324b565b5f918252602090912001546001600160a01b03169190612a21565b609854609e8054612312926001600160a01b0316915f1991859081106122cf576122cf61324b565b60010161229e565b6040516001600160a01b03831660248201526044810182905261202890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612b34565b612385612c05565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6124286125ab565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123b23390565b60a85460a05461247a916001600160a01b0391821691165f612a21565b60a75460a25461249d916001600160a01b0391821691610100909104165f612a21565b60985460a1546124ba916001600160a01b0391821691165f612a21565b5f5b609e54811015610a5b57609854609e80546124ed926001600160a01b0316915f91859081106122cf576122cf61324b565b6001016124bc565b6120286001600160a01b0384168383612a21565b61253f6040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c9906024015f60405180830381865afa158015612584573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610b6a919081019061340f565b60655460ff16156112115760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c05565b5f5b609e54811015610a5b575f609e82815481106126115761261161324b565b5f9182526020822001546040516370a0823160e01b81523060048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015612661573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061268591906130e1565b6001600160a01b0383165f908152609f60205260409020549091508111156127275760985460a154604051630df791e560e41b81526001600160a01b03858116600483015291821660248201526044810184905291169063df791e50906064016020604051808303815f875af1158015612701573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272591906130e1565b505b50506001016125f3565b5f61273a612509565b805160a1546040516370a0823160e01b81523060048201529293505f92670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa158015612790573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b491906130e1565b6127be919061329e565b6127c8919061327f565b90505f670de0b6b3a76400008360400151836127e4919061329e565b6127ee919061327f565b60a154909150612808906001600160a01b0316858361231a565b5f670de0b6b3a7640000846020015184612822919061329e565b61282c919061327f565b609b5460a15491925061284c916001600160a01b0390811691168361231a565b5f670de0b6b3a7640000856060015185612866919061329e565b612870919061327f565b609a5460a154919250612890916001600160a01b0390811691168361231a565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600160405180910390a1505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561291d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061294191906130e1565b609854604051630df791e560e41b81526001600160a01b03868116600483015285811660248301526044820184905292935091169063df791e50906064016020604051808303815f875af115801561299b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129bf91906130e1565b50505050565b5f54610100900460ff166129eb5760405162461bcd60e51b8152600401610c0590613356565b611211612c4e565b5f54610100900460ff16612a195760405162461bcd60e51b8152600401610c0590613356565b611211612c7d565b801580612a995750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612a73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9791906130e1565b155b612b045760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610c05565b6040516001600160a01b03831660248201526044810182905261202890849063095ea7b360e01b90606401612346565b5f612b88826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612caf9092919063ffffffff16565b8051909150156120285780806020019051810190612ba691906132ec565b6120285760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c05565b60655460ff166112115760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c05565b5f54610100900460ff16612c745760405162461bcd60e51b8152600401610c0590613356565b611211336123cf565b5f54610100900460ff16612ca35760405162461bcd60e51b8152600401610c0590613356565b6065805460ff19169055565b6060612cbd84845f85612cc7565b90505b9392505050565b606082471015612d285760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c05565b6001600160a01b0385163b612d7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c05565b5f80866001600160a01b03168587604051612d9a91906134fe565b5f6040518083038185875af1925050503d805f8114612dd4576040519150601f19603f3d011682016040523d82523d5f602084013e612dd9565b606091505b5091509150612de9828286612df4565b979650505050505050565b60608315612e03575081612cc0565b825115612e135782518084602001fd5b8160405162461bcd60e51b8152600401610c059190613519565b5080545f8255905f5260205f2090810190610a5b9190612e9b565b6040518060600160405280612e896040518060c001604052805f81526020015f81526020015f81526020015f8152602001606081526020015f151581525090565b81526020015f81526020015f81525090565b5b80821115612eaf575f8155600101612e9c565b5090565b6001600160a01b0381168114610a5b575f80fd5b5f60208284031215612ed7575f80fd5b8135612cc081612eb3565b8015158114610a5b575f80fd5b5f60208284031215612eff575f80fd5b8135612cc081612ee2565b5f60c08284031215612f1a575f80fd5b50919050565b5f805f805f806101408789031215612f36575f80fd5b8635612f4181612eb3565b95506020870135612f5181612eb3565b94506040870135612f6181612eb3565b9350606087013567ffffffffffffffff80821115612f7d575f80fd5b818901915089601f830112612f90575f80fd5b813581811115612f9e575f80fd5b8a60208260051b8501011115612fb2575f80fd5b602083019550809450505050612fcb8860808901612f0a565b90509295509295509295565b5f60208284031215612fe7575f80fd5b5035919050565b5f8060408385031215612fff575f80fd5b823561300a81612eb3565b946020939093013593505050565b5f5b8381101561303257818101518382015260200161301a565b50505f910152565b5f8151808452613051816020860160208601613018565b601f01601f19169290920160200192915050565b602081525f82516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526130b361014085018261303a565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b5f602082840312156130f1575f80fd5b5051919050565b5f60208284031215613108575f80fd5b8151612cc081612eb3565b5f60208284031215613123575f80fd5b815160ff81168114612cc0575f80fd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561315a5761315a613133565b92915050565b600181815b8085111561319a57815f190482111561318057613180613133565b8085161561318d57918102915b93841c9390800290613165565b509250929050565b5f826131b05750600161315a565b816131bc57505f61315a565b81600181146131d257600281146131dc576131f8565b600191505061315a565b60ff8411156131ed576131ed613133565b50506001821b61315a565b5060208310610133831016604e8410600b841016171561321b575081810a61315a565b6132258383613160565b805f190482111561323857613238613133565b029392505050565b5f612cc083836131a2565b634e487b7160e01b5f52603260045260245ffd5b602080825260069082015265085d985d5b1d60d21b604082015260600190565b5f8261329957634e487b7160e01b5f52601260045260245ffd5b500490565b808202811582820484141761315a5761315a613133565b8082018082111561315a5761315a613133565b634e487b7160e01b5f52603160045260245ffd5b80516132e781612ee2565b919050565b5f602082840312156132fc575f80fd5b8151612cc081612ee2565b602080825282548282018190525f8481528281209092916040850190845b8181101561334a5783546001600160a01b031683526001938401939285019201613325565b50909695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b5f52604160045260245ffd5b60405160c0810167ffffffffffffffff811182821017156133d8576133d86133a1565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613407576134076133a1565b604052919050565b5f6020808385031215613420575f80fd5b825167ffffffffffffffff80821115613437575f80fd5b9084019060c0828703121561344a575f80fd5b6134526133b5565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115613483575f80fd5b8301601f81018813613493575f80fd5b8051838111156134a5576134a56133a1565b6134b7601f8201601f191687016133de565b935080845288868284010111156134cc575f80fd5b6134db81878601888501613018565b50508160808201526134ef60a084016132dc565b60a08201529695505050505050565b5f825161350f818460208701613018565b9190910192915050565b602081525f612cc0602083018461303a56fea26469706673582212209d0b7df1be038c4f80cc7ab14d58c89c83a2fdfadf651efbe3e2d771699daf0164736f6c63430008170033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.