More Info
Private Name Tags
ContractCreator
Latest 21 from a total of 21 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Panic | 128901407 | 40 days ago | IN | 0 ETH | 0.000001247061 | ||||
Harvest | 113846492 | 388 days ago | IN | 0 ETH | 0.000035080074 | ||||
Harvest | 113060339 | 407 days ago | IN | 0 ETH | 0.000096946587 | ||||
Harvest | 113000294 | 408 days ago | IN | 0 ETH | 0.000041986696 | ||||
Deposit | 113000275 | 408 days ago | IN | 0 ETH | 0.000037204222 | ||||
Harvest | 109399860 | 491 days ago | IN | 0 ETH | 0.000013673725 | ||||
Harvest | 109398051 | 491 days ago | IN | 0 ETH | 0.000013733423 | ||||
Harvest | 108875941 | 504 days ago | IN | 0 ETH | 0.000167376995 | ||||
Harvest | 108542922 | 511 days ago | IN | 0 ETH | 0.000019674803 | ||||
Harvest | 108541127 | 511 days ago | IN | 0 ETH | 0.000018216708 | ||||
Harvest | 108539340 | 511 days ago | IN | 0 ETH | 0.000019572615 | ||||
Harvest | 108537541 | 511 days ago | IN | 0 ETH | 0.000038951148 | ||||
Harvest | 108535728 | 511 days ago | IN | 0 ETH | 0.000027650628 | ||||
Transfer Ownersh... | 107918348 | 526 days ago | IN | 0 ETH | 0.00004692704 | ||||
Set Harvest On D... | 107918162 | 526 days ago | IN | 0 ETH | 0.000040840884 | ||||
Set Fast Quote | 107918159 | 526 days ago | IN | 0 ETH | 0.000040600788 | ||||
Unpause | 107918149 | 526 days ago | IN | 0 ETH | 0.000073062018 | ||||
Panic | 107918115 | 526 days ago | IN | 0 ETH | 0.000069523968 | ||||
Panic | 107918098 | 526 days ago | IN | 0 ETH | 0.000063714145 | ||||
Harvest | 107918096 | 526 days ago | IN | 0 ETH | 0.000148504543 | ||||
Initialize | 107917240 | 526 days ago | IN | 0 ETH | 0.000274750465 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StrategyUniswapGamma
Compiler Version
v0.8.19+commit.7dd6d404
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/common/ISolidlyPair.sol"; import "../../interfaces/sushi/IMiniChefV2.sol"; import "../../interfaces/sushi/IRewarder.sol"; import "../../interfaces/common/IERC20Extended.sol"; import "../Common/StratFeeManagerInitializable.sol"; import "../../utils/GasFeeThrottler.sol"; import "../../utils/UniswapV3Utils.sol"; interface IGammaUniProxy { function getDepositAmount(address pos, address token, uint _deposit) external view returns (uint amountStart, uint amountEnd); function deposit(uint deposit0, uint deposit1, address to, address pos, uint[4] memory minIn) external returns (uint shares); } interface IGammaPool { function token0() external view returns (address); function token1() external view returns (address); function pool() external view returns (address); } interface IUniswapV3Pool { function slot0() external view returns (uint160, int24, uint16, uint16, uint16, uint8, bool); } interface IUniswapQuoter { function quoteExactInput(bytes memory path, uint amountIn) external returns (uint amountOut); } interface IHypervisor { function whitelistedAddress() external view returns (address uniProxy); } contract StrategyUniswapGamma is StratFeeManagerInitializable, GasFeeThrottler { using SafeERC20 for IERC20; // Tokens used address public native; address public output; address public want; address public lpToken0; address public lpToken1; // Third party contracts address public chef; IUniswapQuoter public quoter; bool public isFastQuote; bool public harvestOnDeposit; uint256 public lastHarvest; uint256 public pid; bytes public outputToNativePath; bytes public nativeToLp0Path; bytes public nativeToLp1Path; mapping (address => bytes) public rewardsPath; address[] public rewards; 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); function initialize( address _want, address _chef, uint256 _pid, bytes calldata _outputToNativePath, bytes calldata _nativeToLp0Path, bytes calldata _nativeToLp1Path, CommonAddresses calldata _commonAddresses ) public initializer { __StratFeeManager_init(_commonAddresses); want = _want; chef = _chef; pid = _pid; lpToken0 = IGammaPool(want).token0(); lpToken1 = IGammaPool(want).token1(); address[] memory route = UniswapV3Utils.pathToRoute(_outputToNativePath); output = route[0]; native = route[route.length - 1]; setOutputToNative(_outputToNativePath); setNativeToLp0(_nativeToLp0Path); setNativeToLp1(_nativeToLp1Path); quoter = IUniswapQuoter(0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6); harvestOnDeposit = true; withdrawalFee = 0; _giveAllowances(); } // puts the funds to work function deposit() public whenNotPaused { uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal > 0) { IMiniChefV2(chef).deposit(pid, wantBal, address(this)); emit Deposit(balanceOf()); } } function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 wantBal = IERC20(want).balanceOf(address(this)); if (wantBal < _amount) { IMiniChefV2(chef).withdraw(pid, _amount - wantBal, address(this)); wantBal = IERC20(want).balanceOf(address(this)); } if (wantBal > _amount) { wantBal = _amount; } if (tx.origin != owner() && !paused()) { uint256 withdrawalFeeAmount = wantBal * withdrawalFee / WITHDRAWAL_MAX; wantBal = wantBal - withdrawalFeeAmount; } IERC20(want).safeTransfer(vault, wantBal); emit Withdraw(balanceOf()); } function beforeDeposit() external virtual override { if (harvestOnDeposit) { require(msg.sender == vault, "!vault"); _harvest(tx.origin); } } function harvest() external gasThrottle virtual { _harvest(tx.origin); } function harvest(address callFeeRecipient) external gasThrottle virtual { _harvest(callFeeRecipient); } // compounds earnings and charges performance fee function _harvest(address callFeeRecipient) internal whenNotPaused { IMiniChefV2(chef).harvest(pid, address(this)); uint256 outputBal = IERC20(output).balanceOf(address(this)); if (outputBal > 0) { swapRewardsToNative(); chargeFees(callFeeRecipient); addLiquidity(); uint256 wantHarvested = balanceOfWant(); deposit(); lastHarvest = block.timestamp; emit StratHarvest(msg.sender, wantHarvested, balanceOf()); } } function swapRewardsToNative() internal { uint bal = IERC20(output).balanceOf(address(this)); if (bal > 0) UniswapV3Utils.swap(unirouter, outputToNativePath, bal); for (uint i; i < rewards.length; ++i) { uint rewardBal = IERC20(rewards[i]).balanceOf(address(this)); if (rewardBal > 0) UniswapV3Utils.swap(unirouter, rewardsPath[rewards[i]], rewardBal); } } // 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); } // Adds liquidity to AMM and gets more LP tokens. function addLiquidity() internal { (uint toLp0, uint toLp1) = quoteAddLiquidity(); if (nativeToLp0Path.length > 0) { UniswapV3Utils.swap(unirouter, nativeToLp0Path, toLp0); } if (nativeToLp1Path.length > 0) { UniswapV3Utils.swap(unirouter, nativeToLp1Path, toLp1); } uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this)); uint256 lp1Bal = IERC20(lpToken1).balanceOf(address(this)); (uint amount1Start, uint amount1End) = gammaProxy().getDepositAmount(want, lpToken0, lp0Bal); (, uint amount0End) = gammaProxy().getDepositAmount(want, lpToken1, lp1Bal); if (lp1Bal > amount1End) { lp1Bal = amount1End; } else if (lp1Bal < amount1Start) { (, lp0Bal) = gammaProxy().getDepositAmount(want, lpToken1, lp1Bal); } if (lp0Bal > amount0End) { lp0Bal = amount0End; } uint[4] memory minIn; gammaProxy().deposit(lp0Bal, lp1Bal, address(this), want, minIn); } function quoteAddLiquidity() internal returns (uint toLp0, uint toLp1) { uint nativeBal = IERC20(native).balanceOf(address(this)); uint ratio; if (isFastQuote) { uint lp0Decimals = 10**IERC20Extended(lpToken0).decimals(); uint lp1Decimals = 10**IERC20Extended(lpToken1).decimals(); uint decimalsDiff = 1e18 * lp0Decimals / lp1Decimals; uint decimalsDenominator = decimalsDiff > 1e12 ? 1e6 : 1; (uint160 sqrtPriceX96,,,,,,) = IUniswapV3Pool(IGammaPool(want).pool()).slot0(); uint price = uint256(sqrtPriceX96) ** 2 * (decimalsDiff / decimalsDenominator) / (2 ** 192) * decimalsDenominator; (uint amountStart, uint amountEnd) = gammaProxy().getDepositAmount(want, lpToken0, lp0Decimals); uint amountB = (amountStart + amountEnd) / 2 * 1e18 / lp1Decimals; ratio = amountB * 1e18 / price; } else { uint lp0Amt = nativeBal / 2; uint lp1Amt = nativeBal - lp0Amt; uint out0 = lp0Amt; uint out1 = lp1Amt; if (nativeToLp0Path.length > 0) { out0 = quoter.quoteExactInput(nativeToLp0Path, lp0Amt); } if (nativeToLp1Path.length > 0) { out1 = quoter.quoteExactInput(nativeToLp1Path, lp1Amt); } (uint amountStart, uint amountEnd) = gammaProxy().getDepositAmount(want, lpToken0, out0); uint amountB = (amountStart + amountEnd) / 2; ratio = amountB * 1e18 / out1; } toLp0 = nativeBal * 1e18 / (ratio + 1e18); toLp1 = nativeBal - toLp0; } function setFastQuote(bool _isFastQuote) external onlyManager { isFastQuote = _isFastQuote; } function addReward(address _token, bytes calldata _path) external onlyOwner { address[] memory route = UniswapV3Utils.pathToRoute(_path); require(route[0] == _token, "!output"); require(route[route.length -1] == native, "!native"); IERC20(_token).safeApprove(unirouter, 0); IERC20(_token).safeApprove(unirouter, type(uint).max); rewards.push(_token); rewardsPath[_token] = _path; } function deleteRewards() external onlyManager { for (uint256 i; i < rewards.length; ++i) { delete rewardsPath[rewards[i]]; } delete rewards; } // calculate the total underlaying 'want' held by the strat. function balanceOf() public view returns (uint256) { return balanceOfWant() + balanceOfPool(); } // it calculates how much 'want' this contract holds. function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } // it calculates how much 'want' the strategy has working in the farm. function balanceOfPool() public view returns (uint256 amount) { (amount,) = IMiniChefV2(chef).userInfo(pid, address(this)); } // returns rewards unharvested function rewardsAvailable() public view returns (uint256) { return IMiniChefV2(chef).pendingSushi(pid, address(this)); } // native reward amount for calling harvest function callReward() public pure returns (uint256) { return 0; } function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager { harvestOnDeposit = _harvestOnDeposit; if (harvestOnDeposit) { setWithdrawalFee(0); } else { setWithdrawalFee(10); } } function setShouldGasThrottle(bool _shouldGasThrottle) external onlyManager { shouldGasThrottle = _shouldGasThrottle; } // called as part of strat migration. Sends all the available funds back to the vault. function retireStrat() external { require(msg.sender == vault, "!vault"); if (balanceOfPool() > 0) { IMiniChefV2(chef).emergencyWithdraw(pid, address(this)); } uint256 wantBal = IERC20(want).balanceOf(address(this)); IERC20(want).transfer(vault, wantBal); } // pauses deposits and withdraws all funds from third party systems. function panic() public onlyManager { pause(); IMiniChefV2(chef).emergencyWithdraw(pid, address(this)); } function pause() public onlyManager { _pause(); _removeAllowances(); } function unpause() external onlyManager { _unpause(); _giveAllowances(); deposit(); } function _giveAllowances() internal { IERC20(want).approve(chef, type(uint).max); IERC20(output).approve(unirouter, type(uint).max); IERC20(native).approve(unirouter, type(uint).max); for (uint i; i < rewards.length; ++i) { IERC20(rewards[i]).safeApprove(unirouter, 0); IERC20(rewards[i]).safeApprove(unirouter, type(uint).max); } IERC20(lpToken0).approve(want, 0); IERC20(lpToken0).approve(want, type(uint).max); IERC20(lpToken1).approve(want, 0); IERC20(lpToken1).approve(want, type(uint).max); } function _removeAllowances() internal { IERC20(want).approve(chef, 0); IERC20(output).approve(unirouter, 0); IERC20(native).approve(unirouter, 0); for (uint i; i < rewards.length; ++i) { IERC20(rewards[i]).safeApprove(unirouter, 0); } IERC20(lpToken0).approve(want, 0); IERC20(lpToken1).approve(want, 0); } function setOutputToNative(bytes calldata _outputToNativePath) public onlyOwner { if (_outputToNativePath.length > 0) { address[] memory route = UniswapV3Utils.pathToRoute(_outputToNativePath); require(route[0] == output, "!output"); } outputToNativePath = _outputToNativePath; } function setNativeToLp0(bytes calldata _nativeToLp0Path) public onlyOwner { if (_nativeToLp0Path.length > 0) { address[] memory route = UniswapV3Utils.pathToRoute(_nativeToLp0Path); require(route[0] == native, "!native"); require(route[route.length - 1] == lpToken0, "!lp0"); } nativeToLp0Path = _nativeToLp0Path; } function setNativeToLp1(bytes calldata _nativeToLp1Path) public onlyOwner { if (_nativeToLp1Path.length > 0) { address[] memory route = UniswapV3Utils.pathToRoute(_nativeToLp1Path); require(route[0] == native, "!native"); require(route[route.length - 1] == lpToken1, "!lp1"); } nativeToLp1Path = _nativeToLp1Path; } function gammaProxy() public view returns (IGammaUniProxy uniProxy) { uniProxy = IGammaUniProxy(IHypervisor(want).whitelistedAddress()); } function outputToNative() external view returns (address[] memory) { return UniswapV3Utils.pathToRoute(outputToNativePath); } function nativeToLp0() external view returns (address[] memory) { return UniswapV3Utils.pathToRoute(nativeToLp0Path); } function nativeToLp1() external view returns (address[] memory) { return UniswapV3Utils.pathToRoute(nativeToLp1Path); } function rewardsRoute(uint index) external view returns (address[] memory) { return UniswapV3Utils.pathToRoute(rewardsPath[rewards[index]]); } }
// 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.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// 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.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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.6.0 <0.9.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 ISolidlyPair { function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function burn(address to) external returns (uint amount0, uint amount1); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function stable() external view returns (bool); function getAmountOut(uint256 amountIn, address tokenIn) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; pragma experimental ABIEncoderV2; interface IUniswapRouterV3WithDeadline { struct ExactInputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; uint160 sqrtPriceLimitX96; } /// @notice Swaps `amountIn` of one token for as much as possible of another token /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata /// @return amountOut The amount of the received token function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut); struct ExactInputParams { bytes path; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; } /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata /// @return amountOut The amount of the received token function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut); struct ExactOutputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; uint160 sqrtPriceLimitX96; } /// @notice Swaps as little as possible of one token for `amountOut` of another token /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata /// @return amountIn The amount of the input token function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn); struct ExactOutputParams { bytes path; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; } /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed) /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata /// @return amountIn The amount of the input token function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn); }
// SPDX-License-Identifier: MIT pragma solidity >0.6.0 <0.9.0; interface IMiniChefV2 { function poolLength() external view returns (uint256); function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function pendingSushi(uint256 _pid, address _user) external view returns (uint256); function deposit(uint256 pid, uint256 amount, address to) external; function withdraw(uint256 pid, uint256 amount, address to) external; function harvest(uint256 pid, address to) external; function withdrawAndHarvest(uint256 pid, uint256 amount, address to) external; function emergencyWithdraw(uint256 pid, address to) external; function rewarder(uint256 pid) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity >0.6.0; interface IRewarder { function poolLength() external view returns (uint256); function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function pendingToken(uint256 _pid, address _user) external view returns (uint256); function deposit(uint256 pid, uint256 amount, address to) external; function withdraw(uint256 pid, uint256 amount, address to) external; function harvest(uint256 pid, address to) external; function withdrawAndHarvest(uint256 pid, uint256 amount, address to) external; function emergencyWithdraw(uint256 pid, address to) external; }
// 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 {} }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint24(bytes memory _bytes, uint256 _start) internal pure returns (uint24) { require(_start + 3 >= _start, 'toUint24_overflow'); require(_bytes.length >= _start + 3, 'toUint24_outOfBounds'); uint24 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x3), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin-4/contracts/utils/Address.sol"; import "./IGasPrice.sol"; contract GasFeeThrottler { bool public shouldGasThrottle = true; address public gasprice = address(0xA43509661141F254F54D9A326E8Ec851A0b95307); modifier gasThrottle() { if (shouldGasThrottle && Address.isContract(gasprice)) { require(tx.gasprice <= IGasPrice(gasprice).maxGasPrice(), "gas is too high!"); } _; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IGasPrice { function maxGasPrice() external returns (uint); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.6.0; import './BytesLib.sol'; /// @title Functions for manipulating path data for multihop swaps library Path { using BytesLib for bytes; /// @dev The length of the bytes encoded address uint256 private constant ADDR_SIZE = 20; /// @dev The length of the bytes encoded fee uint256 private constant FEE_SIZE = 3; /// @dev The offset of a single token address and pool fee uint256 private constant NEXT_OFFSET = ADDR_SIZE + FEE_SIZE; /// @dev The offset of an encoded pool key uint256 private constant POP_OFFSET = NEXT_OFFSET + ADDR_SIZE; /// @dev The minimum length of an encoding that contains 2 or more pools uint256 private constant MULTIPLE_POOLS_MIN_LENGTH = POP_OFFSET + NEXT_OFFSET; /// @notice Returns true iff the path contains two or more pools /// @param path The encoded swap path /// @return True if path contains two or more pools, otherwise false function hasMultiplePools(bytes memory path) internal pure returns (bool) { return path.length >= MULTIPLE_POOLS_MIN_LENGTH; } /// @notice Returns the number of pools in the path /// @param path The encoded swap path /// @return The number of pools in the path function numPools(bytes memory path) internal pure returns (uint256) { // Ignore the first token address. From then on every fee and token offset indicates a pool. return ((path.length - ADDR_SIZE) / NEXT_OFFSET); } /// @notice Decodes the first pool in path /// @param path The bytes encoded swap path /// @return tokenA The first token of the given pool /// @return tokenB The second token of the given pool /// @return fee The fee level of the pool function decodeFirstPool(bytes memory path) internal pure returns ( address tokenA, address tokenB, uint24 fee ) { tokenA = path.toAddress(0); fee = path.toUint24(ADDR_SIZE); tokenB = path.toAddress(NEXT_OFFSET); } /// @notice Gets the segment corresponding to the first pool in the path /// @param path The bytes encoded swap path /// @return The segment containing all data necessary to target the first pool in the path function getFirstPool(bytes memory path) internal pure returns (bytes memory) { return path.slice(0, POP_OFFSET); } /// @notice Skips a token + fee element from the buffer and returns the remainder /// @param path The swap path /// @return The remaining token + fee elements in the path function skipToken(bytes memory path) internal pure returns (bytes memory) { return path.slice(NEXT_OFFSET, path.length - NEXT_OFFSET); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './Path.sol'; import "../interfaces/common/IUniswapRouterV3WithDeadline.sol"; library UniswapV3Utils { using Path for bytes; // Swap along an encoded path using known amountIn function swap( address _router, bytes memory _path, uint256 _amountIn ) internal returns (uint256 amountOut) { IUniswapRouterV3WithDeadline.ExactInputParams memory params = IUniswapRouterV3WithDeadline.ExactInputParams({ path: _path, recipient: address(this), deadline: block.timestamp, amountIn: _amountIn, amountOutMinimum: 0 }); return IUniswapRouterV3WithDeadline(_router).exactInput(params); } // Swap along a token route using known fees and amountIn function swap( address _router, address[] memory _route, uint24[] memory _fee, uint256 _amountIn ) internal returns (uint256 amountOut) { return swap(_router, routeToPath(_route, _fee), _amountIn); } // Convert encoded path to token route function pathToRoute(bytes memory _path) internal pure returns (address[] memory) { uint256 numPools = _path.numPools(); address[] memory route = new address[](numPools + 1); for (uint256 i; i < numPools; i++) { (address tokenA, address tokenB,) = _path.decodeFirstPool(); route[i] = tokenA; route[i + 1] = tokenB; _path = _path.skipToken(); } return route; } // Convert token route to encoded path // uint24 type for fees so path is packed tightly function routeToPath( address[] memory _route, uint24[] memory _fee ) internal pure returns (bytes memory path) { path = abi.encodePacked(_route[0]); uint256 feeLength = _fee.length; for (uint256 i = 0; i < feeLength; i++) { path = abi.encodePacked(path, _fee[i], _route[i+1]); } } }
{ "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"},{"internalType":"bytes","name":"_path","type":"bytes"}],"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":"amount","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":"pure","type":"function"},{"inputs":[],"name":"chef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteRewards","outputs":[],"stateMutability":"nonpayable","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":"gammaProxy","outputs":[{"internalType":"contract IGammaUniProxy","name":"uniProxy","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasprice","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_want","type":"address"},{"internalType":"address","name":"_chef","type":"address"},{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"bytes","name":"_outputToNativePath","type":"bytes"},{"internalType":"bytes","name":"_nativeToLp0Path","type":"bytes"},{"internalType":"bytes","name":"_nativeToLp1Path","type":"bytes"},{"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":"isFastQuote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeToLp0","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeToLp0Path","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeToLp1","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeToLp1Path","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNativePath","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quoter","outputs":[{"internalType":"contract IUniswapQuoter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"address","name":"","type":"address"}],"name":"rewardsPath","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"rewardsRoute","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":"_isFastQuote","type":"bool"}],"name":"setFastQuote","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":"bytes","name":"_nativeToLp0Path","type":"bytes"}],"name":"setNativeToLp0","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_nativeToLp1Path","type":"bytes"}],"name":"setNativeToLp1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_outputToNativePath","type":"bytes"}],"name":"setOutputToNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_shouldGasThrottle","type":"bool"}],"name":"setShouldGasThrottle","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":"shouldGasThrottle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052609e80546001600160a81b03191674a43509661141f254f54d9a326e8ec851a0b953070117905534801561003757600080fd5b50615098806100476000396000f3fe608060405234801561001057600080fd5b50600436106104125760003560e01c80638da5cb5b11610220578063d0ec0ac711610130578063f1a392da116100b8578063f301af4211610087578063f301af421461080b578063fad4675e1461081e578063fb61778714610831578063fbfa77cf14610839578063fd063fde1461084c57600080fd5b8063f1a392da146107c9578063f20eaeb8146107d2578063f28045d4146107e5578063f2fde38b146107f857600080fd5b8063e7a7250a116100ff578063e7a7250a146107a0578063e941fa78146107a8578063ea82eb9e146107b0578063edfdab8f146107b8578063f1068454146107c057600080fd5b8063d0ec0ac71461076a578063d92f3d731461077d578063dfbdc43714610790578063e48f98fd1461079857600080fd5b8063bb4f5056116101b3578063c7b9d53011610182578063c7b9d53014610716578063cbd9226114610729578063cc31a2aa1461073c578063ccd2ec111461074f578063d0e30db01461076257600080fd5b8063bb4f5056146106e0578063bcb660b8146106f3578063c1a3d44c146106fb578063c6bbd5a71461070357600080fd5b8063a68833e5116101ef578063a68833e514610692578063ac1e5025146106a5578063aced1661146106b8578063b20feaaf146106cb57600080fd5b80638da5cb5b146106615780638e1454591461067257806397fd323d146105c55780639f8b5da11461068557600080fd5b80634700d305116103265780636ec232d3116102ae5780637985ee8f1161027d5780637985ee8f146106225780638456cb591461062a578063877562b6146106325780638912cb8b146106455780638cfc02501461065957600080fd5b80636ec232d3146105e7578063715018a6146105ff578063722713f714610607578063748747e61461060f57600080fd5b80635c975abb116102f55780635c975abb146105a75780635ee167c0146105b257806367a52793146105c55780636817031b146105cc5780636a62522b146105df57600080fd5b80634700d3051461057b5780634746fb551461058357806354518b1a14610596578063573fef0a1461059f57600080fd5b80631fc8bc5d116103a957806337bdd2041161037857806337bdd204146105305780633e55f932146105385780633ee070071461054b5780633f4ba83a1461056b5780634641257d1461057357600080fd5b80631fc8bc5d146104e45780631fe4a686146104f7578063257ae0de1461050a5780632e1a7d4d1461051d57600080fd5b806311b0b42d116103e557806311b0b42d1461046d57806313e120b11461049857806314582a1a146104ad5780631f1fcd51146104d157600080fd5b80630e5c011e146104175780630e8fbb5a1461042c578063106fdbd01461043f5780631158808614610452575b600080fd5b61042a610425366004614558565b61085f565b005b61042a61043a366004614583565b610952565b61042a61044d366004614558565b610995565b61045a6109f2565b6040519081526020015b60405180910390f35b609f54610480906001600160a01b031681565b6040516001600160a01b039091168152602001610464565b6104a0610a6f565b60405161046491906145a0565b60a5546104c190600160a01b900460ff1681565b6040519015158152602001610464565b60a154610480906001600160a01b031681565b60a454610480906001600160a01b031681565b609a54610480906001600160a01b031681565b609854610480906001600160a01b031681565b61042a61052b3660046145ed565b610b09565b6104a0610d4d565b61042a6105463660046145ed565b610d5f565b61055e610559366004614558565b610df6565b6040516104649190614656565b61042a610e90565b61042a610eb2565b61042a610f9d565b609c54610480906001600160a01b031681565b61045a61271081565b61042a611017565b60655460ff166104c1565b60a254610480906001600160a01b031681565b600061045a565b61042a6105da366004614558565b611053565b61055e6110a9565b609e546104809061010090046001600160a01b031681565b61042a6110b6565b61045a6110c8565b61042a61061d366004614558565b6110e4565b61042a61113a565b61042a6111b0565b60a354610480906001600160a01b031681565b60a5546104c190600160a81b900460ff1681565b61045a6111c8565b6033546001600160a01b0316610480565b609b54610480906001600160a01b031681565b609e546104c19060ff1681565b61042a6106a0366004614558565b611236565b61042a6106b33660046145ed565b61128c565b609954610480906001600160a01b031681565b6106d3611303565b6040516104649190614669565b61042a6106ee36600461472f565b611339565b610480611463565b61045a6114d1565b60a554610480906001600160a01b031681565b61042a610724366004614558565b611502565b61042a610737366004614583565b611598565b6104a061074a3660046145ed565b6115be565b61042a61075d36600461472f565b61160f565b61042a6116d8565b61042a610778366004614771565b6117fb565b61042a61078b366004614558565b6119a8565b61045a603281565b61055e6119fe565b61045a611a0b565b61045a611a47565b6104a0611a66565b61055e611a78565b61045a60a75481565b61045a60a65481565b60a054610480906001600160a01b031681565b61042a6107f33660046147d8565b611a85565b61042a610806366004614558565b611e01565b6104806108193660046145ed565b611e77565b61042a61082c366004614583565b611ea1565b61042a611ebc565b609754610480906001600160a01b031681565b61042a61085a36600461472f565b61204b565b609e5460ff1680156108815750609e5461010090046001600160a01b03163b15155b1561094657609e60019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b81526004016020604051808303816000875af11580156108db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ff91906148b3565b3a11156109465760405162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b60448201526064015b60405180910390fd5b61094f81612170565b50565b61095a6122d0565b60a5805460ff60a81b1916600160a81b8315158102919091179182905560ff9104161561098b5761094f600061128c565b61094f600a61128c565b61099d61232a565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a45460a7546040516393f1a40b60e01b815260048101919091523060248201526000916001600160a01b0316906393f1a40b906044016040805180830381865afa158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6991906148cc565b50919050565b6060610b0460a88054610a81906148f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad906148f0565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b5050505050612384565b905090565b6097546001600160a01b03163314610b335760405162461bcd60e51b815260040161093d90614924565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610b7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba091906148b3565b905081811015610c975760a45460a7546001600160a01b0390911690630ad58d2f90610bcc848661495a565b6040516001600160e01b031960e085901b16815260048101929092526024820152306044820152606401600060405180830381600087803b158015610c1057600080fd5b505af1158015610c24573d6000803e3d6000fd5b505060a1546040516370a0823160e01b81523060048201526001600160a01b0390911692506370a082319150602401602060405180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9491906148b3565b90505b81811115610ca25750805b6033546001600160a01b03163214801590610cc0575060655460ff16155b15610cf2576000612710609d5483610cd8919061496d565b610ce29190614984565b9050610cee818361495a565b9150505b60975460a154610d0f916001600160a01b03918216911683612490565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610d386110c8565b60405190815260200160405180910390a15050565b6060610b0460aa8054610a81906148f0565b610d676122d0565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b158015610dad57600080fd5b505af1158015610dc1573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f816040516109e791815260200190565b60ab6020526000908152604090208054610e0f906148f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b906148f0565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b505050505081565b610e986122d0565b610ea06124e6565b610ea8612538565b610eb06116d8565b565b609e5460ff168015610ed45750609e5461010090046001600160a01b03163b15155b15610f9457609e60019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5291906148b3565b3a1115610f945760405162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015260640161093d565b610eb032612170565b610fa56122d0565b610fad6111b0565b60a45460a7546040516302f940c760e41b815260048101919091523060248201526001600160a01b0390911690632f940c7090604401600060405180830381600087803b158015610ffd57600080fd5b505af1158015611011573d6000803e3d6000fd5b50505050565b60a554600160a81b900460ff1615610eb0576097546001600160a01b03163314610f945760405162461bcd60e51b815260040161093d90614924565b61105b61232a565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f30906020016109e7565b60a98054610e0f906148f0565b6110be61232a565b610eb06000612924565b60006110d26109f2565b6110da6114d1565b610b0491906149a6565b6110ec6122d0565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b906020016109e7565b6111426122d0565b60005b60ac548110156111a35760ab600060ac8381548110611166576111666149b9565b60009182526020808320909101546001600160a01b0316835282019290925260400181206111939161445a565b61119c816149cf565b9050611145565b50610eb060ac6000614494565b6111b86122d0565b6111c0612976565b610eb06129b3565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf104622906024015b602060405180830381865afa158015611212573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0491906148b3565b61123e61232a565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac85906020016109e7565b6112946122d0565b60328111156112ce5760405162461bcd60e51b815260040161093d906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af906020016109e7565b61130b6144b2565b604051806060016040528061131e612c1c565b815260200160008152602001611332611a47565b9052919050565b61134161232a565b801561145157600061138883838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b609f5481519192506001600160a01b03169082906000906113ab576113ab6149b9565b60200260200101516001600160a01b0316146113d95760405162461bcd60e51b815260040161093d906149e8565b60a25481516001600160a01b039091169082906113f89060019061495a565b81518110611408576114086149b9565b60200260200101516001600160a01b03161461144f5760405162461bcd60e51b815260040161093d906020808252600490820152630216c70360e41b604082015260600190565b505b60a961145e828483614a6d565b505050565b60a154604080516386a2908160e01b815290516000926001600160a01b0316916386a290819160048083019260209291908290030181865afa1580156114ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b049190614b2d565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024016111f5565b609a546001600160a01b0316331461154a5760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015260640161093d565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec5412906020016109e7565b6115a06122d0565b60a58054911515600160a01b0260ff60a01b19909216919091179055565b606061160960ab600060ac85815481106115da576115da6149b9565b60009182526020808320909101546001600160a01b0316835282019290925260400190208054610a81906148f0565b92915050565b61161761232a565b80156116cb57600061165e83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b60a05481519192506001600160a01b0316908290600090611681576116816149b9565b60200260200101516001600160a01b0316146116c95760405162461bcd60e51b8152602060048201526007602482015266085bdd5d1c1d5d60ca1b604482015260640161093d565b505b60a861145e828483614a6d565b6116e0612cc7565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174d91906148b3565b9050801561094f5760a45460a754604051638dbdbe6d60e01b81526004810191909152602481018390523060448201526001600160a01b0390911690638dbdbe6d90606401600060405180830381600087803b1580156117ac57600080fd5b505af11580156117c0573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e384266117ed6110c8565b6040519081526020016109e7565b61180361232a565b600061184483838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b9050836001600160a01b031681600081518110611863576118636149b9565b60200260200101516001600160a01b0316146118ab5760405162461bcd60e51b8152602060048201526007602482015266085bdd5d1c1d5d60ca1b604482015260640161093d565b609f5481516001600160a01b039091169082906118ca9060019061495a565b815181106118da576118da6149b9565b60200260200101516001600160a01b0316146119085760405162461bcd60e51b815260040161093d906149e8565b609854611923906001600160a01b0386811691166000612d0d565b60985461193f906001600160a01b038681169116600019612d0d565b60ac8054600181019091557f0a0a1bcadd9f6a5539376fa82276e043ae3cb4499daaaf8136572ecb1f9f0d600180546001600160a01b0319166001600160a01b038616908117909155600090815260ab602052604090206119a1838583614a6d565b5050505050565b6119b061232a565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa906020016109e7565b60a88054610e0f906148f0565b60a45460a75460405163065509bb60e21b815260048101919091523060248201526000916001600160a01b03169063195426ec906044016111f5565b6000611a5560655460ff1690565b611a605750609d5490565b50600090565b6060610b0460a98054610a81906148f0565b60aa8054610e0f906148f0565b600054610100900460ff1615808015611aa55750600054600160ff909116105b80611abf5750303b158015611abf575060005460ff166001145b611b225760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161093d565b6000805460ff191660011790558015611b45576000805461ff0019166101001790555b611b4e82612e11565b60a180546001600160a01b03808e166001600160a01b0319928316811790935560a48054918e169190921617905560a78a905560408051630dfe168160e01b81529051630dfe1681916004808201926020929091908290030181865afa158015611bbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be09190614b2d565b60a280546001600160a01b0319166001600160a01b0392831617905560a1546040805163d21220a760e01b81529051919092169163d21220a79160048083019260209291908290030181865afa158015611c3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c629190614b2d565b60a360006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000611cc989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b905080600081518110611cde57611cde6149b9565b602002602001015160a060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508060018251611d1b919061495a565b81518110611d2b57611d2b6149b9565b6020026020010151609f60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611d63898961160f565b611d6d8787611339565b611d77858561204b565b60a58054600161ff0160a01b031916750100b27308f9f90d607463bb33ea1bebb41c27ce5ab61790556000609d55611dad612538565b508015611df4576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b611e0961232a565b6001600160a01b038116611e6e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093d565b61094f81612924565b60ac8181548110611e8757600080fd5b6000918252602090912001546001600160a01b0316905081565b611ea96122d0565b609e805460ff1916911515919091179055565b6097546001600160a01b03163314611ee65760405162461bcd60e51b815260040161093d90614924565b6000611ef06109f2565b1115611f5f5760a45460a7546040516302f940c760e41b815260048101919091523060248201526001600160a01b0390911690632f940c7090604401600060405180830381600087803b158015611f4657600080fd5b505af1158015611f5a573d6000803e3d6000fd5b505050505b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611fa8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcc91906148b3565b60a15460975460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926120049216908590600401614b4a565b6020604051808303816000875af1158015612023573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120479190614b73565b5050565b61205361232a565b801561216357600061209a83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b609f5481519192506001600160a01b03169082906000906120bd576120bd6149b9565b60200260200101516001600160a01b0316146120eb5760405162461bcd60e51b815260040161093d906149e8565b60a35481516001600160a01b0390911690829061210a9060019061495a565b8151811061211a5761211a6149b9565b60200260200101516001600160a01b0316146121615760405162461bcd60e51b815260040161093d90602080825260049082015263216c703160e01b604082015260600190565b505b60aa61145e828483614a6d565b612178612cc7565b60a45460a754604051630c7e663b60e11b815260048101919091523060248201526001600160a01b03909116906318fccc7690604401600060405180830381600087803b1580156121c857600080fd5b505af11580156121dc573d6000803e3d6000fd5b505060a0546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa15801561222b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061224f91906148b3565b905080156120475761225f612f6d565b61226882613194565b612270613343565b600061227a6114d1565b90506122846116d8565b4260a655337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826122b36110c8565b6040805192835260208301919091520160405180910390a2505050565b6033546001600160a01b03163314806122f357506099546001600160a01b031633145b610eb05760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015260640161093d565b6033546001600160a01b03163314610eb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093d565b6060600061239183613778565b905060006123a08260016149a6565b67ffffffffffffffff8111156123b8576123b8614a09565b6040519080825280602002602001820160405280156123e1578160200160208202803683370190505b50905060005b82811015612488576000806123fb8761379e565b509150915081848481518110612413576124136149b9565b6001600160a01b039092166020928302919091019091015280846124388560016149a6565b81518110612448576124486149b9565b60200260200101906001600160a01b031690816001600160a01b031681525050612471876137da565b965050508080612480906149cf565b9150506123e7565b509392505050565b61145e8363a9059cbb60e01b84846040516024016124af929190614b4a565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261380b565b6124ee6138dd565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60a15460a45460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926125709291169060001990600401614b4a565b6020604051808303816000875af115801561258f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b39190614b73565b5060a05460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926125ec9291169060001990600401614b4a565b6020604051808303816000875af115801561260b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262f9190614b73565b50609f5460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926126689291169060001990600401614b4a565b6020604051808303816000875af1158015612687573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ab9190614b73565b5060005b60ac548110156127365760985460ac80546126fd926001600160a01b031691600091859081106126e1576126e16149b9565b6000918252602090912001546001600160a01b03169190612d0d565b60985460ac8054612726926001600160a01b03169160001991859081106126e1576126e16149b9565b61272f816149cf565b90506126af565b5060a25460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b39261276e92911690600090600401614b4a565b6020604051808303816000875af115801561278d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b19190614b73565b5060a25460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926127ea9291169060001990600401614b4a565b6020604051808303816000875af1158015612809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061282d9190614b73565b5060a35460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b39261286592911690600090600401614b4a565b6020604051808303816000875af1158015612884573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a89190614b73565b5060a35460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926128e19291169060001990600401614b4a565b6020604051808303816000875af1158015612900573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094f9190614b73565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61297e612cc7565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861251b3390565b60a15460a45460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926129ea92911690600090600401614b4a565b6020604051808303816000875af1158015612a09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2d9190614b73565b5060a05460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612a6592911690600090600401614b4a565b6020604051808303816000875af1158015612a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aa89190614b73565b50609f5460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612ae092911690600090600401614b4a565b6020604051808303816000875af1158015612aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b239190614b73565b5060005b60ac54811015612b695760985460ac8054612b59926001600160a01b031691600091859081106126e1576126e16149b9565b612b62816149cf565b9050612b27565b5060a25460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612ba192911690600090600401614b4a565b6020604051808303816000875af1158015612bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be49190614b73565b5060a35460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926128e192911690600090600401614b4a565b612c576040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa158015612c9f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610b049190810190614bea565b60655460ff1615610eb05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161093d565b801580612d875750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8591906148b3565b155b612df25760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161093d565b61145e8363095ea7b360e01b84846040516024016124af929190614b4a565b600054610100900460ff16612e385760405162461bcd60e51b815260040161093d90614ce0565b612e40613926565b612e48613955565b612e556020820182614558565b609780546001600160a01b0319166001600160a01b0392909216919091179055612e856040820160208301614558565b609880546001600160a01b0319166001600160a01b0392909216919091179055612eb56060820160408301614558565b609980546001600160a01b0319166001600160a01b0392909216919091179055612ee56080820160608301614558565b609a80546001600160a01b0319166001600160a01b0392909216919091179055612f1560a0820160808301614558565b609b80546001600160a01b0319166001600160a01b0392909216919091179055612f4560c0820160a08301614558565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612fb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fda91906148b3565b905080156130875760985460a88054613085926001600160a01b03169190613001906148f0565b80601f016020809104026020016040519081016040528092919081815260200182805461302d906148f0565b801561307a5780601f1061304f5761010080835404028352916020019161307a565b820191906000526020600020905b81548152906001019060200180831161305d57829003601f168201915b505050505083613984565b505b60005b60ac5481101561204757600060ac82815481106130a9576130a96149b9565b6000918252602090912001546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156130fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061311e91906148b3565b905080156131835760985460ac8054613181926001600160a01b03169160ab916000919087908110613152576131526149b9565b60009182526020808320909101546001600160a01b0316835282019290925260400190208054613001906148f0565b505b5061318d816149cf565b905061308a565b600061319e612c1c565b8051609f546040516370a0823160e01b8152306004820152929350600092670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156131f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321b91906148b3565b613225919061496d565b61322f9190614984565b90506000670de0b6b3a764000083604001518361324c919061496d565b6132569190614984565b609f54909150613270906001600160a01b03168583612490565b6000670de0b6b3a764000084602001518461328b919061496d565b6132959190614984565b609b54609f549192506132b5916001600160a01b03908116911683612490565b6000670de0b6b3a76400008560600151856132d0919061496d565b6132da9190614984565b609a54609f549192506132fa916001600160a01b03908116911683612490565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600160405180910390a1505050505050565b60008061334e613a25565b91509150600060a98054613361906148f0565b9050111561340e5760985460a9805461340c926001600160a01b03169190613388906148f0565b80601f01602080910402602001604051908101604052809291908181526020018280546133b4906148f0565b80156134015780601f106133d657610100808354040283529160200191613401565b820191906000526020600020905b8154815290600101906020018083116133e457829003601f168201915b505050505084613984565b505b600060aa805461341d906148f0565b905011156134465760985460aa8054613444926001600160a01b03169190613001906148f0565b505b60a2546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561348f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b391906148b3565b60a3546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015613501573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061352591906148b3565b9050600080613532611463565b60a15460a254604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d9361356c93908216929116908990600401614d2b565b6040805180830381865afa158015613588573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135ac91906148cc565b9150915060006135ba611463565b60a15460a354604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d936135f493908216929116908990600401614d2b565b6040805180830381865afa158015613610573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061363491906148cc565b91505081841115613647578193506136d5565b828410156136d557613657611463565b60a15460a354604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d9361369193908216929116908990600401614d2b565b6040805180830381865afa1580156136ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d191906148cc565b9550505b808511156136e1578094505b6136e961450c565b6136f1611463565b60a15460405163238f24b960e21b81526001600160a01b0392831692638e3c92e49261372a928b928b9230929116908890600401614d4f565b6020604051808303816000875af1158015613749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061376d91906148b3565b505050505050505050565b6000613786600360146149a6565b60148351613794919061495a565b6116099190614984565b600080806137ac8482614059565b92506137b98460146140be565b90506137d16137ca600360146149a6565b8590614059565b91509193909250565b60606116096137eb600360146149a6565b6137f7600360146149a6565b8451613803919061495a565b849190614169565b6000613860826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166142769092919063ffffffff16565b80519091501561145e578080602001905181019061387e9190614b73565b61145e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161093d565b60655460ff16610eb05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161093d565b600054610100900460ff1661394d5760405162461bcd60e51b815260040161093d90614ce0565b610eb061428d565b600054610100900460ff1661397c5760405162461bcd60e51b815260040161093d90614ce0565b610eb06142bd565b6040805160a081018252838152306020820152428183015260608101839052600060808201819052915163c04b8d5960e01b81526001600160a01b0386169063c04b8d59906139d7908490600401614daa565b6020604051808303816000875af11580156139f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1a91906148b3565b9150505b9392505050565b609f546040516370a0823160e01b8152306004820152600091829182916001600160a01b0316906370a0823190602401602060405180830381865afa158015613a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a9691906148b3565b60a554909150600090600160a01b900460ff1615613e095760a2546040805163313ce56760e01b815290516000926001600160a01b03169163313ce5679160048083019260209291908290030181865afa158015613af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b1c91906148b3565b613b2790600a614ee6565b9050600060a360009054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ba291906148b3565b613bad90600a614ee6565b9050600081613bc484670de0b6b3a764000061496d565b613bce9190614984565b9050600064e8d4a510008211613be5576001613bea565b620f42405b62ffffff169050600060a160009054906101000a90046001600160a01b03166001600160a01b03166316f0115b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c6a9190614b2d565b6001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e060405180830381865afa158015613ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ccb9190614f04565b5050505050509050600082600160c01b8486613ce79190614984565b613cfb60026001600160a01b038716614fa3565b613d05919061496d565b613d0f9190614984565b613d19919061496d565b9050600080613d26611463565b60a15460a254604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d93613d6093908216929116908d90600401614d2b565b6040805180830381865afa158015613d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613da091906148cc565b90925090506000876002613db484866149a6565b613dbe9190614984565b613dd090670de0b6b3a764000061496d565b613dda9190614984565b905083613def82670de0b6b3a764000061496d565b613df99190614984565b9950505050505050505050614017565b6000613e16600284614984565b90506000613e24828561495a565b60a9805491925083918391600091613e3b906148f0565b90501115613ebc5760a55460405163cdca175360e01b81526001600160a01b039091169063cdca175390613e769060a9908890600401614fb2565b6020604051808303816000875af1158015613e95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eb991906148b3565b91505b600060aa8054613ecb906148f0565b90501115613f4c5760a55460405163cdca175360e01b81526001600160a01b039091169063cdca175390613f069060aa908790600401614fb2565b6020604051808303816000875af1158015613f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f4991906148b3565b90505b600080613f57611463565b60a15460a254604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d93613f9193908216929116908990600401614d2b565b6040805180830381865afa158015613fad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd191906148cc565b909250905060006002613fe483856149a6565b613fee9190614984565b90508361400382670de0b6b3a764000061496d565b61400d9190614984565b9750505050505050505b61402981670de0b6b3a76400006149a6565b61403b83670de0b6b3a764000061496d565b6140459190614984565b9350614051848361495a565b925050509091565b60006140668260146149a6565b835110156140ae5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161093d565b500160200151600160601b900490565b6000816140cc8160036149a6565b101561410e5760405162461bcd60e51b8152602060048201526011602482015270746f55696e7432345f6f766572666c6f7760781b604482015260640161093d565b6141198260036149a6565b835110156141605760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161093d565b50016003015190565b60608161417781601f6149a6565b10156141b65760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161093d565b6141c082846149a6565b845110156142045760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161093d565b606082158015614223576040519150600082526020820160405261426d565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561425c578051835260209283019201614244565b5050858452601f01601f1916604052505b50949350505050565b606061428584846000856142f0565b949350505050565b600054610100900460ff166142b45760405162461bcd60e51b815260040161093d90614ce0565b610eb033612924565b600054610100900460ff166142e45760405162461bcd60e51b815260040161093d90614ce0565b6065805460ff19169055565b6060824710156143515760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161093d565b6001600160a01b0385163b6143a85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161093d565b600080866001600160a01b031685876040516143c49190615046565b60006040518083038185875af1925050503d8060008114614401576040519150601f19603f3d011682016040523d82523d6000602084013e614406565b606091505b5091509150614416828286614421565b979650505050505050565b60608315614430575081613a1e565b8251156144405782518084602001fd5b8160405162461bcd60e51b815260040161093d9190614656565b508054614466906148f0565b6000825580601f10614476575050565b601f01602090049060005260206000209081019061094f919061452a565b508054600082559060005260206000209081019061094f919061452a565b60405180606001604052806144f86040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b60405180608001604052806004906020820280368337509192915050565b5b8082111561453f576000815560010161452b565b5090565b6001600160a01b038116811461094f57600080fd5b60006020828403121561456a57600080fd5b8135613a1e81614543565b801515811461094f57600080fd5b60006020828403121561459557600080fd5b8135613a1e81614575565b6020808252825182820181905260009190848201906040850190845b818110156145e15783516001600160a01b0316835292840192918401916001016145bc565b50909695505050505050565b6000602082840312156145ff57600080fd5b5035919050565b60005b83811015614621578181015183820152602001614609565b50506000910152565b60008151808452614642816020860160208601614606565b601f01601f19169290920160200192915050565b602081526000613a1e602083018461462a565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526146b861014085018261462a565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b60008083601f8401126146f857600080fd5b50813567ffffffffffffffff81111561471057600080fd5b60208301915083602082850101111561472857600080fd5b9250929050565b6000806020838503121561474257600080fd5b823567ffffffffffffffff81111561475957600080fd5b614765858286016146e6565b90969095509350505050565b60008060006040848603121561478657600080fd5b833561479181614543565b9250602084013567ffffffffffffffff8111156147ad57600080fd5b6147b9868287016146e6565b9497909650939450505050565b600060c08284031215610a6957600080fd5b6000806000806000806000806000806101808b8d0312156147f857600080fd5b8a3561480381614543565b995060208b013561481381614543565b985060408b0135975060608b013567ffffffffffffffff8082111561483757600080fd5b6148438e838f016146e6565b909950975060808d013591508082111561485c57600080fd5b6148688e838f016146e6565b909750955060a08d013591508082111561488157600080fd5b5061488e8d828e016146e6565b90945092506148a290508c60c08d016147c6565b90509295989b9194979a5092959850565b6000602082840312156148c557600080fd5b5051919050565b600080604083850312156148df57600080fd5b505080516020909101519092909150565b600181811c9082168061490457607f821691505b602082108103610a6957634e487b7160e01b600052602260045260246000fd5b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561160957611609614944565b808202811582820484141761160957611609614944565b6000826149a157634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561160957611609614944565b634e487b7160e01b600052603260045260246000fd5b6000600182016149e1576149e1614944565b5060010190565b602080825260079082015266216e617469766560c81b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b601f82111561145e57600081815260208120601f850160051c81016020861015614a465750805b601f850160051c820191505b81811015614a6557828155600101614a52565b505050505050565b67ffffffffffffffff831115614a8557614a85614a09565b614a9983614a9383546148f0565b83614a1f565b6000601f841160018114614acd5760008515614ab55750838201355b600019600387901b1c1916600186901b1783556119a1565b600083815260209020601f19861690835b82811015614afe5786850135825560209485019460019092019101614ade565b5086821015614b1b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600060208284031215614b3f57600080fd5b8151613a1e81614543565b6001600160a01b03929092168252602082015260400190565b8051614b6e81614575565b919050565b600060208284031215614b8557600080fd5b8151613a1e81614575565b60405160c0810167ffffffffffffffff81118282101715614bb357614bb3614a09565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614be257614be2614a09565b604052919050565b60006020808385031215614bfd57600080fd5b825167ffffffffffffffff80821115614c1557600080fd5b9084019060c08287031215614c2957600080fd5b614c31614b90565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115614c6357600080fd5b8301601f81018813614c7457600080fd5b805183811115614c8657614c86614a09565b614c98601f8201601f19168701614bb9565b93508084528886828401011115614cae57600080fd5b614cbd81878601888501614606565b5050816080820152614cd160a08401614b63565b60a08201529695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b85815260208082018690526001600160a01b03858116604084015284166060830152610100820190608083018460005b6004811015614d9c57815183529183019190830190600101614d7f565b505050509695505050505050565b602081526000825160a06020840152614dc660c084018261462a565b905060018060a01b0360208501511660408401526040840151606084015260608401516080840152608084015160a08401528091505092915050565b600181815b80851115614e3d578160001904821115614e2357614e23614944565b80851615614e3057918102915b93841c9390800290614e07565b509250929050565b600082614e5457506001611609565b81614e6157506000611609565b8160018114614e775760028114614e8157614e9d565b6001915050611609565b60ff841115614e9257614e92614944565b50506001821b611609565b5060208310610133831016604e8410600b8410161715614ec0575081810a611609565b614eca8383614e02565b8060001904821115614ede57614ede614944565b029392505050565b6000613a1e8383614e45565b805161ffff81168114614b6e57600080fd5b600080600080600080600060e0888a031215614f1f57600080fd5b8751614f2a81614543565b8097505060208801518060020b8114614f4257600080fd5b9550614f5060408901614ef2565b9450614f5e60608901614ef2565b9350614f6c60808901614ef2565b925060a088015160ff81168114614f8257600080fd5b60c0890151909250614f9381614575565b8091505092959891949750929550565b6000613a1e60ff841683614e45565b604081526000808454614fc4816148f0565b8060408601526060600180841660008114614fe6576001811461500057615031565b60ff1985168884015283151560051b880183019550615031565b8960005260208060002060005b868110156150285781548b820187015290840190820161500d565b8a018501975050505b50505050506020929092019290925292915050565b60008251615058818460208701614606565b919091019291505056fea2646970667358221220fea2410ada60ce5d3cc1c63c7fa46ec4ce4f3c912148283014abccc11ddbd49b64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104125760003560e01c80638da5cb5b11610220578063d0ec0ac711610130578063f1a392da116100b8578063f301af4211610087578063f301af421461080b578063fad4675e1461081e578063fb61778714610831578063fbfa77cf14610839578063fd063fde1461084c57600080fd5b8063f1a392da146107c9578063f20eaeb8146107d2578063f28045d4146107e5578063f2fde38b146107f857600080fd5b8063e7a7250a116100ff578063e7a7250a146107a0578063e941fa78146107a8578063ea82eb9e146107b0578063edfdab8f146107b8578063f1068454146107c057600080fd5b8063d0ec0ac71461076a578063d92f3d731461077d578063dfbdc43714610790578063e48f98fd1461079857600080fd5b8063bb4f5056116101b3578063c7b9d53011610182578063c7b9d53014610716578063cbd9226114610729578063cc31a2aa1461073c578063ccd2ec111461074f578063d0e30db01461076257600080fd5b8063bb4f5056146106e0578063bcb660b8146106f3578063c1a3d44c146106fb578063c6bbd5a71461070357600080fd5b8063a68833e5116101ef578063a68833e514610692578063ac1e5025146106a5578063aced1661146106b8578063b20feaaf146106cb57600080fd5b80638da5cb5b146106615780638e1454591461067257806397fd323d146105c55780639f8b5da11461068557600080fd5b80634700d305116103265780636ec232d3116102ae5780637985ee8f1161027d5780637985ee8f146106225780638456cb591461062a578063877562b6146106325780638912cb8b146106455780638cfc02501461065957600080fd5b80636ec232d3146105e7578063715018a6146105ff578063722713f714610607578063748747e61461060f57600080fd5b80635c975abb116102f55780635c975abb146105a75780635ee167c0146105b257806367a52793146105c55780636817031b146105cc5780636a62522b146105df57600080fd5b80634700d3051461057b5780634746fb551461058357806354518b1a14610596578063573fef0a1461059f57600080fd5b80631fc8bc5d116103a957806337bdd2041161037857806337bdd204146105305780633e55f932146105385780633ee070071461054b5780633f4ba83a1461056b5780634641257d1461057357600080fd5b80631fc8bc5d146104e45780631fe4a686146104f7578063257ae0de1461050a5780632e1a7d4d1461051d57600080fd5b806311b0b42d116103e557806311b0b42d1461046d57806313e120b11461049857806314582a1a146104ad5780631f1fcd51146104d157600080fd5b80630e5c011e146104175780630e8fbb5a1461042c578063106fdbd01461043f5780631158808614610452575b600080fd5b61042a610425366004614558565b61085f565b005b61042a61043a366004614583565b610952565b61042a61044d366004614558565b610995565b61045a6109f2565b6040519081526020015b60405180910390f35b609f54610480906001600160a01b031681565b6040516001600160a01b039091168152602001610464565b6104a0610a6f565b60405161046491906145a0565b60a5546104c190600160a01b900460ff1681565b6040519015158152602001610464565b60a154610480906001600160a01b031681565b60a454610480906001600160a01b031681565b609a54610480906001600160a01b031681565b609854610480906001600160a01b031681565b61042a61052b3660046145ed565b610b09565b6104a0610d4d565b61042a6105463660046145ed565b610d5f565b61055e610559366004614558565b610df6565b6040516104649190614656565b61042a610e90565b61042a610eb2565b61042a610f9d565b609c54610480906001600160a01b031681565b61045a61271081565b61042a611017565b60655460ff166104c1565b60a254610480906001600160a01b031681565b600061045a565b61042a6105da366004614558565b611053565b61055e6110a9565b609e546104809061010090046001600160a01b031681565b61042a6110b6565b61045a6110c8565b61042a61061d366004614558565b6110e4565b61042a61113a565b61042a6111b0565b60a354610480906001600160a01b031681565b60a5546104c190600160a81b900460ff1681565b61045a6111c8565b6033546001600160a01b0316610480565b609b54610480906001600160a01b031681565b609e546104c19060ff1681565b61042a6106a0366004614558565b611236565b61042a6106b33660046145ed565b61128c565b609954610480906001600160a01b031681565b6106d3611303565b6040516104649190614669565b61042a6106ee36600461472f565b611339565b610480611463565b61045a6114d1565b60a554610480906001600160a01b031681565b61042a610724366004614558565b611502565b61042a610737366004614583565b611598565b6104a061074a3660046145ed565b6115be565b61042a61075d36600461472f565b61160f565b61042a6116d8565b61042a610778366004614771565b6117fb565b61042a61078b366004614558565b6119a8565b61045a603281565b61055e6119fe565b61045a611a0b565b61045a611a47565b6104a0611a66565b61055e611a78565b61045a60a75481565b61045a60a65481565b60a054610480906001600160a01b031681565b61042a6107f33660046147d8565b611a85565b61042a610806366004614558565b611e01565b6104806108193660046145ed565b611e77565b61042a61082c366004614583565b611ea1565b61042a611ebc565b609754610480906001600160a01b031681565b61042a61085a36600461472f565b61204b565b609e5460ff1680156108815750609e5461010090046001600160a01b03163b15155b1561094657609e60019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b81526004016020604051808303816000875af11580156108db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ff91906148b3565b3a11156109465760405162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b60448201526064015b60405180910390fd5b61094f81612170565b50565b61095a6122d0565b60a5805460ff60a81b1916600160a81b8315158102919091179182905560ff9104161561098b5761094f600061128c565b61094f600a61128c565b61099d61232a565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a45460a7546040516393f1a40b60e01b815260048101919091523060248201526000916001600160a01b0316906393f1a40b906044016040805180830381865afa158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6991906148cc565b50919050565b6060610b0460a88054610a81906148f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad906148f0565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b5050505050612384565b905090565b6097546001600160a01b03163314610b335760405162461bcd60e51b815260040161093d90614924565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610b7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba091906148b3565b905081811015610c975760a45460a7546001600160a01b0390911690630ad58d2f90610bcc848661495a565b6040516001600160e01b031960e085901b16815260048101929092526024820152306044820152606401600060405180830381600087803b158015610c1057600080fd5b505af1158015610c24573d6000803e3d6000fd5b505060a1546040516370a0823160e01b81523060048201526001600160a01b0390911692506370a082319150602401602060405180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9491906148b3565b90505b81811115610ca25750805b6033546001600160a01b03163214801590610cc0575060655460ff16155b15610cf2576000612710609d5483610cd8919061496d565b610ce29190614984565b9050610cee818361495a565b9150505b60975460a154610d0f916001600160a01b03918216911683612490565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610d386110c8565b60405190815260200160405180910390a15050565b6060610b0460aa8054610a81906148f0565b610d676122d0565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b158015610dad57600080fd5b505af1158015610dc1573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f816040516109e791815260200190565b60ab6020526000908152604090208054610e0f906148f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b906148f0565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b505050505081565b610e986122d0565b610ea06124e6565b610ea8612538565b610eb06116d8565b565b609e5460ff168015610ed45750609e5461010090046001600160a01b03163b15155b15610f9457609e60019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5291906148b3565b3a1115610f945760405162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015260640161093d565b610eb032612170565b610fa56122d0565b610fad6111b0565b60a45460a7546040516302f940c760e41b815260048101919091523060248201526001600160a01b0390911690632f940c7090604401600060405180830381600087803b158015610ffd57600080fd5b505af1158015611011573d6000803e3d6000fd5b50505050565b60a554600160a81b900460ff1615610eb0576097546001600160a01b03163314610f945760405162461bcd60e51b815260040161093d90614924565b61105b61232a565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f30906020016109e7565b60a98054610e0f906148f0565b6110be61232a565b610eb06000612924565b60006110d26109f2565b6110da6114d1565b610b0491906149a6565b6110ec6122d0565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b906020016109e7565b6111426122d0565b60005b60ac548110156111a35760ab600060ac8381548110611166576111666149b9565b60009182526020808320909101546001600160a01b0316835282019290925260400181206111939161445a565b61119c816149cf565b9050611145565b50610eb060ac6000614494565b6111b86122d0565b6111c0612976565b610eb06129b3565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf104622906024015b602060405180830381865afa158015611212573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0491906148b3565b61123e61232a565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac85906020016109e7565b6112946122d0565b60328111156112ce5760405162461bcd60e51b815260040161093d906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af906020016109e7565b61130b6144b2565b604051806060016040528061131e612c1c565b815260200160008152602001611332611a47565b9052919050565b61134161232a565b801561145157600061138883838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b609f5481519192506001600160a01b03169082906000906113ab576113ab6149b9565b60200260200101516001600160a01b0316146113d95760405162461bcd60e51b815260040161093d906149e8565b60a25481516001600160a01b039091169082906113f89060019061495a565b81518110611408576114086149b9565b60200260200101516001600160a01b03161461144f5760405162461bcd60e51b815260040161093d906020808252600490820152630216c70360e41b604082015260600190565b505b60a961145e828483614a6d565b505050565b60a154604080516386a2908160e01b815290516000926001600160a01b0316916386a290819160048083019260209291908290030181865afa1580156114ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b049190614b2d565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024016111f5565b609a546001600160a01b0316331461154a5760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015260640161093d565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec5412906020016109e7565b6115a06122d0565b60a58054911515600160a01b0260ff60a01b19909216919091179055565b606061160960ab600060ac85815481106115da576115da6149b9565b60009182526020808320909101546001600160a01b0316835282019290925260400190208054610a81906148f0565b92915050565b61161761232a565b80156116cb57600061165e83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b60a05481519192506001600160a01b0316908290600090611681576116816149b9565b60200260200101516001600160a01b0316146116c95760405162461bcd60e51b8152602060048201526007602482015266085bdd5d1c1d5d60ca1b604482015260640161093d565b505b60a861145e828483614a6d565b6116e0612cc7565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174d91906148b3565b9050801561094f5760a45460a754604051638dbdbe6d60e01b81526004810191909152602481018390523060448201526001600160a01b0390911690638dbdbe6d90606401600060405180830381600087803b1580156117ac57600080fd5b505af11580156117c0573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e384266117ed6110c8565b6040519081526020016109e7565b61180361232a565b600061184483838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b9050836001600160a01b031681600081518110611863576118636149b9565b60200260200101516001600160a01b0316146118ab5760405162461bcd60e51b8152602060048201526007602482015266085bdd5d1c1d5d60ca1b604482015260640161093d565b609f5481516001600160a01b039091169082906118ca9060019061495a565b815181106118da576118da6149b9565b60200260200101516001600160a01b0316146119085760405162461bcd60e51b815260040161093d906149e8565b609854611923906001600160a01b0386811691166000612d0d565b60985461193f906001600160a01b038681169116600019612d0d565b60ac8054600181019091557f0a0a1bcadd9f6a5539376fa82276e043ae3cb4499daaaf8136572ecb1f9f0d600180546001600160a01b0319166001600160a01b038616908117909155600090815260ab602052604090206119a1838583614a6d565b5050505050565b6119b061232a565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa906020016109e7565b60a88054610e0f906148f0565b60a45460a75460405163065509bb60e21b815260048101919091523060248201526000916001600160a01b03169063195426ec906044016111f5565b6000611a5560655460ff1690565b611a605750609d5490565b50600090565b6060610b0460a98054610a81906148f0565b60aa8054610e0f906148f0565b600054610100900460ff1615808015611aa55750600054600160ff909116105b80611abf5750303b158015611abf575060005460ff166001145b611b225760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161093d565b6000805460ff191660011790558015611b45576000805461ff0019166101001790555b611b4e82612e11565b60a180546001600160a01b03808e166001600160a01b0319928316811790935560a48054918e169190921617905560a78a905560408051630dfe168160e01b81529051630dfe1681916004808201926020929091908290030181865afa158015611bbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be09190614b2d565b60a280546001600160a01b0319166001600160a01b0392831617905560a1546040805163d21220a760e01b81529051919092169163d21220a79160048083019260209291908290030181865afa158015611c3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c629190614b2d565b60a360006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000611cc989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b905080600081518110611cde57611cde6149b9565b602002602001015160a060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508060018251611d1b919061495a565b81518110611d2b57611d2b6149b9565b6020026020010151609f60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611d63898961160f565b611d6d8787611339565b611d77858561204b565b60a58054600161ff0160a01b031916750100b27308f9f90d607463bb33ea1bebb41c27ce5ab61790556000609d55611dad612538565b508015611df4576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b611e0961232a565b6001600160a01b038116611e6e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093d565b61094f81612924565b60ac8181548110611e8757600080fd5b6000918252602090912001546001600160a01b0316905081565b611ea96122d0565b609e805460ff1916911515919091179055565b6097546001600160a01b03163314611ee65760405162461bcd60e51b815260040161093d90614924565b6000611ef06109f2565b1115611f5f5760a45460a7546040516302f940c760e41b815260048101919091523060248201526001600160a01b0390911690632f940c7090604401600060405180830381600087803b158015611f4657600080fd5b505af1158015611f5a573d6000803e3d6000fd5b505050505b60a1546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611fa8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcc91906148b3565b60a15460975460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926120049216908590600401614b4a565b6020604051808303816000875af1158015612023573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120479190614b73565b5050565b61205361232a565b801561216357600061209a83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061238492505050565b609f5481519192506001600160a01b03169082906000906120bd576120bd6149b9565b60200260200101516001600160a01b0316146120eb5760405162461bcd60e51b815260040161093d906149e8565b60a35481516001600160a01b0390911690829061210a9060019061495a565b8151811061211a5761211a6149b9565b60200260200101516001600160a01b0316146121615760405162461bcd60e51b815260040161093d90602080825260049082015263216c703160e01b604082015260600190565b505b60aa61145e828483614a6d565b612178612cc7565b60a45460a754604051630c7e663b60e11b815260048101919091523060248201526001600160a01b03909116906318fccc7690604401600060405180830381600087803b1580156121c857600080fd5b505af11580156121dc573d6000803e3d6000fd5b505060a0546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa15801561222b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061224f91906148b3565b905080156120475761225f612f6d565b61226882613194565b612270613343565b600061227a6114d1565b90506122846116d8565b4260a655337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826122b36110c8565b6040805192835260208301919091520160405180910390a2505050565b6033546001600160a01b03163314806122f357506099546001600160a01b031633145b610eb05760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015260640161093d565b6033546001600160a01b03163314610eb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093d565b6060600061239183613778565b905060006123a08260016149a6565b67ffffffffffffffff8111156123b8576123b8614a09565b6040519080825280602002602001820160405280156123e1578160200160208202803683370190505b50905060005b82811015612488576000806123fb8761379e565b509150915081848481518110612413576124136149b9565b6001600160a01b039092166020928302919091019091015280846124388560016149a6565b81518110612448576124486149b9565b60200260200101906001600160a01b031690816001600160a01b031681525050612471876137da565b965050508080612480906149cf565b9150506123e7565b509392505050565b61145e8363a9059cbb60e01b84846040516024016124af929190614b4a565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261380b565b6124ee6138dd565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60a15460a45460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926125709291169060001990600401614b4a565b6020604051808303816000875af115801561258f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b39190614b73565b5060a05460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926125ec9291169060001990600401614b4a565b6020604051808303816000875af115801561260b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262f9190614b73565b50609f5460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926126689291169060001990600401614b4a565b6020604051808303816000875af1158015612687573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ab9190614b73565b5060005b60ac548110156127365760985460ac80546126fd926001600160a01b031691600091859081106126e1576126e16149b9565b6000918252602090912001546001600160a01b03169190612d0d565b60985460ac8054612726926001600160a01b03169160001991859081106126e1576126e16149b9565b61272f816149cf565b90506126af565b5060a25460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b39261276e92911690600090600401614b4a565b6020604051808303816000875af115801561278d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b19190614b73565b5060a25460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926127ea9291169060001990600401614b4a565b6020604051808303816000875af1158015612809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061282d9190614b73565b5060a35460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b39261286592911690600090600401614b4a565b6020604051808303816000875af1158015612884573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a89190614b73565b5060a35460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926128e19291169060001990600401614b4a565b6020604051808303816000875af1158015612900573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094f9190614b73565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61297e612cc7565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861251b3390565b60a15460a45460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926129ea92911690600090600401614b4a565b6020604051808303816000875af1158015612a09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2d9190614b73565b5060a05460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612a6592911690600090600401614b4a565b6020604051808303816000875af1158015612a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aa89190614b73565b50609f5460985460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612ae092911690600090600401614b4a565b6020604051808303816000875af1158015612aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b239190614b73565b5060005b60ac54811015612b695760985460ac8054612b59926001600160a01b031691600091859081106126e1576126e16149b9565b612b62816149cf565b9050612b27565b5060a25460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b392612ba192911690600090600401614b4a565b6020604051808303816000875af1158015612bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be49190614b73565b5060a35460a15460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926128e192911690600090600401614b4a565b612c576040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa158015612c9f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610b049190810190614bea565b60655460ff1615610eb05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161093d565b801580612d875750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8591906148b3565b155b612df25760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161093d565b61145e8363095ea7b360e01b84846040516024016124af929190614b4a565b600054610100900460ff16612e385760405162461bcd60e51b815260040161093d90614ce0565b612e40613926565b612e48613955565b612e556020820182614558565b609780546001600160a01b0319166001600160a01b0392909216919091179055612e856040820160208301614558565b609880546001600160a01b0319166001600160a01b0392909216919091179055612eb56060820160408301614558565b609980546001600160a01b0319166001600160a01b0392909216919091179055612ee56080820160608301614558565b609a80546001600160a01b0319166001600160a01b0392909216919091179055612f1560a0820160808301614558565b609b80546001600160a01b0319166001600160a01b0392909216919091179055612f4560c0820160a08301614558565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612fb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fda91906148b3565b905080156130875760985460a88054613085926001600160a01b03169190613001906148f0565b80601f016020809104026020016040519081016040528092919081815260200182805461302d906148f0565b801561307a5780601f1061304f5761010080835404028352916020019161307a565b820191906000526020600020905b81548152906001019060200180831161305d57829003601f168201915b505050505083613984565b505b60005b60ac5481101561204757600060ac82815481106130a9576130a96149b9565b6000918252602090912001546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156130fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061311e91906148b3565b905080156131835760985460ac8054613181926001600160a01b03169160ab916000919087908110613152576131526149b9565b60009182526020808320909101546001600160a01b0316835282019290925260400190208054613001906148f0565b505b5061318d816149cf565b905061308a565b600061319e612c1c565b8051609f546040516370a0823160e01b8152306004820152929350600092670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156131f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321b91906148b3565b613225919061496d565b61322f9190614984565b90506000670de0b6b3a764000083604001518361324c919061496d565b6132569190614984565b609f54909150613270906001600160a01b03168583612490565b6000670de0b6b3a764000084602001518461328b919061496d565b6132959190614984565b609b54609f549192506132b5916001600160a01b03908116911683612490565b6000670de0b6b3a76400008560600151856132d0919061496d565b6132da9190614984565b609a54609f549192506132fa916001600160a01b03908116911683612490565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600160405180910390a1505050505050565b60008061334e613a25565b91509150600060a98054613361906148f0565b9050111561340e5760985460a9805461340c926001600160a01b03169190613388906148f0565b80601f01602080910402602001604051908101604052809291908181526020018280546133b4906148f0565b80156134015780601f106133d657610100808354040283529160200191613401565b820191906000526020600020905b8154815290600101906020018083116133e457829003601f168201915b505050505084613984565b505b600060aa805461341d906148f0565b905011156134465760985460aa8054613444926001600160a01b03169190613001906148f0565b505b60a2546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561348f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b391906148b3565b60a3546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015613501573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061352591906148b3565b9050600080613532611463565b60a15460a254604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d9361356c93908216929116908990600401614d2b565b6040805180830381865afa158015613588573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135ac91906148cc565b9150915060006135ba611463565b60a15460a354604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d936135f493908216929116908990600401614d2b565b6040805180830381865afa158015613610573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061363491906148cc565b91505081841115613647578193506136d5565b828410156136d557613657611463565b60a15460a354604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d9361369193908216929116908990600401614d2b565b6040805180830381865afa1580156136ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d191906148cc565b9550505b808511156136e1578094505b6136e961450c565b6136f1611463565b60a15460405163238f24b960e21b81526001600160a01b0392831692638e3c92e49261372a928b928b9230929116908890600401614d4f565b6020604051808303816000875af1158015613749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061376d91906148b3565b505050505050505050565b6000613786600360146149a6565b60148351613794919061495a565b6116099190614984565b600080806137ac8482614059565b92506137b98460146140be565b90506137d16137ca600360146149a6565b8590614059565b91509193909250565b60606116096137eb600360146149a6565b6137f7600360146149a6565b8451613803919061495a565b849190614169565b6000613860826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166142769092919063ffffffff16565b80519091501561145e578080602001905181019061387e9190614b73565b61145e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161093d565b60655460ff16610eb05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161093d565b600054610100900460ff1661394d5760405162461bcd60e51b815260040161093d90614ce0565b610eb061428d565b600054610100900460ff1661397c5760405162461bcd60e51b815260040161093d90614ce0565b610eb06142bd565b6040805160a081018252838152306020820152428183015260608101839052600060808201819052915163c04b8d5960e01b81526001600160a01b0386169063c04b8d59906139d7908490600401614daa565b6020604051808303816000875af11580156139f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1a91906148b3565b9150505b9392505050565b609f546040516370a0823160e01b8152306004820152600091829182916001600160a01b0316906370a0823190602401602060405180830381865afa158015613a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a9691906148b3565b60a554909150600090600160a01b900460ff1615613e095760a2546040805163313ce56760e01b815290516000926001600160a01b03169163313ce5679160048083019260209291908290030181865afa158015613af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b1c91906148b3565b613b2790600a614ee6565b9050600060a360009054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ba291906148b3565b613bad90600a614ee6565b9050600081613bc484670de0b6b3a764000061496d565b613bce9190614984565b9050600064e8d4a510008211613be5576001613bea565b620f42405b62ffffff169050600060a160009054906101000a90046001600160a01b03166001600160a01b03166316f0115b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c6a9190614b2d565b6001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e060405180830381865afa158015613ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ccb9190614f04565b5050505050509050600082600160c01b8486613ce79190614984565b613cfb60026001600160a01b038716614fa3565b613d05919061496d565b613d0f9190614984565b613d19919061496d565b9050600080613d26611463565b60a15460a254604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d93613d6093908216929116908d90600401614d2b565b6040805180830381865afa158015613d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613da091906148cc565b90925090506000876002613db484866149a6565b613dbe9190614984565b613dd090670de0b6b3a764000061496d565b613dda9190614984565b905083613def82670de0b6b3a764000061496d565b613df99190614984565b9950505050505050505050614017565b6000613e16600284614984565b90506000613e24828561495a565b60a9805491925083918391600091613e3b906148f0565b90501115613ebc5760a55460405163cdca175360e01b81526001600160a01b039091169063cdca175390613e769060a9908890600401614fb2565b6020604051808303816000875af1158015613e95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eb991906148b3565b91505b600060aa8054613ecb906148f0565b90501115613f4c5760a55460405163cdca175360e01b81526001600160a01b039091169063cdca175390613f069060aa908790600401614fb2565b6020604051808303816000875af1158015613f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f4991906148b3565b90505b600080613f57611463565b60a15460a254604051635ccfb71d60e01b81526001600160a01b0393841693635ccfb71d93613f9193908216929116908990600401614d2b565b6040805180830381865afa158015613fad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd191906148cc565b909250905060006002613fe483856149a6565b613fee9190614984565b90508361400382670de0b6b3a764000061496d565b61400d9190614984565b9750505050505050505b61402981670de0b6b3a76400006149a6565b61403b83670de0b6b3a764000061496d565b6140459190614984565b9350614051848361495a565b925050509091565b60006140668260146149a6565b835110156140ae5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161093d565b500160200151600160601b900490565b6000816140cc8160036149a6565b101561410e5760405162461bcd60e51b8152602060048201526011602482015270746f55696e7432345f6f766572666c6f7760781b604482015260640161093d565b6141198260036149a6565b835110156141605760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161093d565b50016003015190565b60608161417781601f6149a6565b10156141b65760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161093d565b6141c082846149a6565b845110156142045760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161093d565b606082158015614223576040519150600082526020820160405261426d565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561425c578051835260209283019201614244565b5050858452601f01601f1916604052505b50949350505050565b606061428584846000856142f0565b949350505050565b600054610100900460ff166142b45760405162461bcd60e51b815260040161093d90614ce0565b610eb033612924565b600054610100900460ff166142e45760405162461bcd60e51b815260040161093d90614ce0565b6065805460ff19169055565b6060824710156143515760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161093d565b6001600160a01b0385163b6143a85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161093d565b600080866001600160a01b031685876040516143c49190615046565b60006040518083038185875af1925050503d8060008114614401576040519150601f19603f3d011682016040523d82523d6000602084013e614406565b606091505b5091509150614416828286614421565b979650505050505050565b60608315614430575081613a1e565b8251156144405782518084602001fd5b8160405162461bcd60e51b815260040161093d9190614656565b508054614466906148f0565b6000825580601f10614476575050565b601f01602090049060005260206000209081019061094f919061452a565b508054600082559060005260206000209081019061094f919061452a565b60405180606001604052806144f86040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b60405180608001604052806004906020820280368337509192915050565b5b8082111561453f576000815560010161452b565b5090565b6001600160a01b038116811461094f57600080fd5b60006020828403121561456a57600080fd5b8135613a1e81614543565b801515811461094f57600080fd5b60006020828403121561459557600080fd5b8135613a1e81614575565b6020808252825182820181905260009190848201906040850190845b818110156145e15783516001600160a01b0316835292840192918401916001016145bc565b50909695505050505050565b6000602082840312156145ff57600080fd5b5035919050565b60005b83811015614621578181015183820152602001614609565b50506000910152565b60008151808452614642816020860160208601614606565b601f01601f19169290920160200192915050565b602081526000613a1e602083018461462a565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526146b861014085018261462a565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b60008083601f8401126146f857600080fd5b50813567ffffffffffffffff81111561471057600080fd5b60208301915083602082850101111561472857600080fd5b9250929050565b6000806020838503121561474257600080fd5b823567ffffffffffffffff81111561475957600080fd5b614765858286016146e6565b90969095509350505050565b60008060006040848603121561478657600080fd5b833561479181614543565b9250602084013567ffffffffffffffff8111156147ad57600080fd5b6147b9868287016146e6565b9497909650939450505050565b600060c08284031215610a6957600080fd5b6000806000806000806000806000806101808b8d0312156147f857600080fd5b8a3561480381614543565b995060208b013561481381614543565b985060408b0135975060608b013567ffffffffffffffff8082111561483757600080fd5b6148438e838f016146e6565b909950975060808d013591508082111561485c57600080fd5b6148688e838f016146e6565b909750955060a08d013591508082111561488157600080fd5b5061488e8d828e016146e6565b90945092506148a290508c60c08d016147c6565b90509295989b9194979a5092959850565b6000602082840312156148c557600080fd5b5051919050565b600080604083850312156148df57600080fd5b505080516020909101519092909150565b600181811c9082168061490457607f821691505b602082108103610a6957634e487b7160e01b600052602260045260246000fd5b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561160957611609614944565b808202811582820484141761160957611609614944565b6000826149a157634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561160957611609614944565b634e487b7160e01b600052603260045260246000fd5b6000600182016149e1576149e1614944565b5060010190565b602080825260079082015266216e617469766560c81b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b601f82111561145e57600081815260208120601f850160051c81016020861015614a465750805b601f850160051c820191505b81811015614a6557828155600101614a52565b505050505050565b67ffffffffffffffff831115614a8557614a85614a09565b614a9983614a9383546148f0565b83614a1f565b6000601f841160018114614acd5760008515614ab55750838201355b600019600387901b1c1916600186901b1783556119a1565b600083815260209020601f19861690835b82811015614afe5786850135825560209485019460019092019101614ade565b5086821015614b1b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600060208284031215614b3f57600080fd5b8151613a1e81614543565b6001600160a01b03929092168252602082015260400190565b8051614b6e81614575565b919050565b600060208284031215614b8557600080fd5b8151613a1e81614575565b60405160c0810167ffffffffffffffff81118282101715614bb357614bb3614a09565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614be257614be2614a09565b604052919050565b60006020808385031215614bfd57600080fd5b825167ffffffffffffffff80821115614c1557600080fd5b9084019060c08287031215614c2957600080fd5b614c31614b90565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115614c6357600080fd5b8301601f81018813614c7457600080fd5b805183811115614c8657614c86614a09565b614c98601f8201601f19168701614bb9565b93508084528886828401011115614cae57600080fd5b614cbd81878601888501614606565b5050816080820152614cd160a08401614b63565b60a08201529695505050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b85815260208082018690526001600160a01b03858116604084015284166060830152610100820190608083018460005b6004811015614d9c57815183529183019190830190600101614d7f565b505050509695505050505050565b602081526000825160a06020840152614dc660c084018261462a565b905060018060a01b0360208501511660408401526040840151606084015260608401516080840152608084015160a08401528091505092915050565b600181815b80851115614e3d578160001904821115614e2357614e23614944565b80851615614e3057918102915b93841c9390800290614e07565b509250929050565b600082614e5457506001611609565b81614e6157506000611609565b8160018114614e775760028114614e8157614e9d565b6001915050611609565b60ff841115614e9257614e92614944565b50506001821b611609565b5060208310610133831016604e8410600b8410161715614ec0575081810a611609565b614eca8383614e02565b8060001904821115614ede57614ede614944565b029392505050565b6000613a1e8383614e45565b805161ffff81168114614b6e57600080fd5b600080600080600080600060e0888a031215614f1f57600080fd5b8751614f2a81614543565b8097505060208801518060020b8114614f4257600080fd5b9550614f5060408901614ef2565b9450614f5e60608901614ef2565b9350614f6c60808901614ef2565b925060a088015160ff81168114614f8257600080fd5b60c0890151909250614f9381614575565b8091505092959891949750929550565b6000613a1e60ff841683614e45565b604081526000808454614fc4816148f0565b8060408601526060600180841660008114614fe6576001811461500057615031565b60ff1985168884015283151560051b880183019550615031565b8960005260208060002060005b868110156150285781548b820187015290840190820161500d565b8a018501975050505b50505050506020929092019290925292915050565b60008251615058818460208701614606565b919091019291505056fea2646970667358221220fea2410ada60ce5d3cc1c63c7fa46ec4ce4f3c912148283014abccc11ddbd49b64736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.