Contract
0xfdc8fb38727650c76c47630f0941099f79870e2c
13
Contract Overview
Balance:
0 ETH
EtherValue:
$0.00
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
RevestA4
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import '@openzeppelin/contracts/utils/introspection/ERC165Checker.sol'; import "./interfaces/IRevest.sol"; import "./interfaces/IAddressRegistry.sol"; import "./interfaces/ILockManager.sol"; import "./interfaces/ITokenVaultV2.sol"; import "./interfaces/IRewardsHandler.sol"; import "./interfaces/IOutputReceiver.sol"; import "./interfaces/IOutputReceiverV2.sol"; import "./interfaces/IOutputReceiverV3.sol"; import "./interfaces/IAddressLock.sol"; import "./utils/RevestAccessControl.sol"; import "./utils/RevestReentrancyGuard.sol"; import "./lib/IWETH.sol"; /** * This is the entrypoint for the frontend, as well as third-party Revest integrations. * Solidity style guide ordering: receive, fallback, external, public, internal, private - within a grouping, view and pure go last - https://docs.soliditylang.org/en/latest/style-guide.html */ contract RevestA4 is IRevest, RevestAccessControl, RevestReentrancyGuard { using SafeERC20 for IERC20; using ERC165Checker for address; bytes4 public constant ADDRESS_LOCK_INTERFACE_ID = type(IAddressLock).interfaceId; bytes4 public constant OUTPUT_RECEIVER_INTERFACE_V2_ID = type(IOutputReceiverV2).interfaceId; bytes4 public constant OUTPUT_RECEIVER_INTERFACE_V3_ID = type(IOutputReceiverV3).interfaceId; address immutable WETH; /// Point at which FNFTs should point to the new token vault uint public erc20Fee; // out of 1000 uint private constant erc20multiplierPrecision = 1000; uint public flatWeiFee; uint private constant MAX_INT = 2**256 - 1; mapping(address => bool) private approved; mapping(address => bool) public whitelisted; /** * @dev Primary constructor to create the Revest controller contract */ constructor( address provider, address weth ) RevestAccessControl(provider) { WETH = weth; } // PUBLIC FUNCTIONS /** * @dev creates a single time-locked NFT with <quantity> number of copies with <amount> of <asset> stored for each copy * asset - the address of the underlying ERC20 token for this bond * amount - the amount to store per NFT if multiple NFTs of this variety are being created * unlockTime - the timestamp at which this will unlock * quantity – the number of FNFTs to create with this operation */ function mintTimeLock( uint endTime, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable override nonReentrant returns (uint) { // Get the next id uint fnftId = getFNFTHandler().getNextId(); // Get or create lock based on time, assign lock to ID { IRevest.LockParam memory timeLock; timeLock.lockType = IRevest.LockType.TimeLock; timeLock.timeLockExpiry = endTime; getLockManager().createLock(fnftId, timeLock); } doMint(recipients, quantities, fnftId, fnftConfig, msg.value); emit FNFTTimeLockMinted(fnftConfig.asset, _msgSender(), fnftId, endTime, quantities, fnftConfig); return fnftId; } function mintValueLock( address primaryAsset, address compareTo, uint unlockValue, bool unlockRisingEdge, address oracleDispatch, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable override nonReentrant returns (uint) { // copy the fnftId uint fnftId = getFNFTHandler().getNextId(); // Initialize the lock structure { IRevest.LockParam memory valueLock; valueLock.lockType = IRevest.LockType.ValueLock; valueLock.valueLock.unlockRisingEdge = unlockRisingEdge; valueLock.valueLock.unlockValue = unlockValue; valueLock.valueLock.asset = primaryAsset; valueLock.valueLock.compareTo = compareTo; valueLock.valueLock.oracle = oracleDispatch; getLockManager().createLock(fnftId, valueLock); } doMint(recipients, quantities, fnftId, fnftConfig, msg.value); emit FNFTValueLockMinted(fnftConfig.asset, _msgSender(), fnftId, compareTo, oracleDispatch, quantities, fnftConfig); return fnftId; } function mintAddressLock( address trigger, bytes memory arguments, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable override nonReentrant returns (uint) { uint fnftId = getFNFTHandler().getNextId(); { IRevest.LockParam memory addressLock; addressLock.addressLock = trigger; addressLock.lockType = IRevest.LockType.AddressLock; // Get or create lock based on address which can trigger unlock, assign lock to ID uint lockId = getLockManager().createLock(fnftId, addressLock); // The lock ID is already incremented prior to calling a method that could allow for reentry if(trigger.supportsInterface(ADDRESS_LOCK_INTERFACE_ID)) { IAddressLock(trigger).createLock(fnftId, lockId, arguments); } } // This is a public call to a third-party contract. Must be done after everything else. doMint(recipients, quantities, fnftId, fnftConfig, msg.value); emit FNFTAddressLockMinted(fnftConfig.asset, _msgSender(), fnftId, trigger, quantities, fnftConfig); return fnftId; } function withdrawFNFT(uint fnftId, uint quantity) external override nonReentrant { _withdrawFNFT(fnftId, quantity); } /// Advanced FNFT withdrawals removed for the time being – no active implementations /// Represents slightly increased surface area – may be utilized in Resolve function unlockFNFT(uint fnftId) external override nonReentrant { // Works for value locks or time locks IRevest.LockType lock = getLockManager().lockTypes(fnftId); require(lock == IRevest.LockType.AddressLock || lock == IRevest.LockType.ValueLock, "E008"); require(getLockManager().unlockFNFT(fnftId, _msgSender()), "E056"); emit FNFTUnlocked(_msgSender(), fnftId); } function splitFNFT( uint fnftId, uint[] memory proportions, uint quantity ) external override nonReentrant returns (uint[] memory) { // Splitting is entirely disabled for the time being revert("TMP_BRK"); } /// @return the FNFT ID function extendFNFTMaturity( uint fnftId, uint endTime ) external override nonReentrant returns (uint) { IFNFTHandler fnftHandler = getFNFTHandler(); uint supply = fnftHandler.getSupply(fnftId); uint balance = fnftHandler.getBalance(_msgSender(), fnftId); require(endTime > block.timestamp, 'E002'); require(fnftId < fnftHandler.getNextId(), "E007"); require(balance == supply , "E022"); IRevest.FNFTConfig memory config = getTokenVault().getFNFT(fnftId); ILockManager manager = getLockManager(); // If it can't have its maturity extended, revert // Will also return false on non-time lock locks require(config.maturityExtension && manager.lockTypes(fnftId) == IRevest.LockType.TimeLock, "E029"); // If desired maturity is below existing date, reject operation require(manager.fnftIdToLock(fnftId).timeLockExpiry < endTime, "E030"); // Update the lock IRevest.LockParam memory lock; lock.lockType = IRevest.LockType.TimeLock; lock.timeLockExpiry = endTime; manager.createLock(fnftId, lock); // Callback to IOutputReceiverV3 // NB: All IOuputReceiver systems should be either marked non-reentrant or ensure they follow checks-effects-interactions if(config.pipeToContract != address(0) && config.pipeToContract.supportsInterface(OUTPUT_RECEIVER_INTERFACE_V3_ID)) { IOutputReceiverV3(config.pipeToContract).handleTimelockExtensions(fnftId, endTime, _msgSender()); } emit FNFTMaturityExtended(_msgSender(), fnftId, endTime); return fnftId; } /** * Amount will be per FNFT. So total ERC20s needed is amount * quantity. * We don't charge an ETH fee on depositAdditional, but do take the erc20 percentage. */ function depositAdditionalToFNFT( uint fnftId, uint amount, uint quantity ) external override nonReentrant returns (uint) { address vault = addressesProvider.getTokenVault(); IRevest.FNFTConfig memory fnft = ITokenVault(vault).getFNFT(fnftId); address handler = addressesProvider.getRevestFNFT(); require(fnftId < IFNFTHandler(handler).getNextId(), "E007"); require(fnft.isMulti, "E034"); require(fnft.depositStopTime > block.timestamp || fnft.depositStopTime == 0, "E035"); require(quantity > 0, "E070"); // This line will disable all legacy FNFTs from using this function // Unless they are using it for pass-through require(fnft.depositMul == 0 || fnft.asset == address(0), 'E084'); uint supply = IFNFTHandler(handler).getSupply(fnftId); uint deposit = quantity * amount; // Future versions may reintroduce series splitting, if it is ever in demand require(quantity == supply, 'E083'); // Transfer the ERC20 fee to the admin address, leave it at that if(!whitelisted[_msgSender()]) { uint totalERC20Fee = erc20Fee * deposit / erc20multiplierPrecision; if(totalERC20Fee > 0) { // NB: The user has control of where this external call goes (fnft.asset) IERC20(fnft.asset).safeTransferFrom(_msgSender(), addressesProvider.getAdmin(), totalERC20Fee); } } // Transfer to the smart wallet if(fnft.asset != address(0)){ address smartWallet = ITokenVaultV2(vault).getFNFTAddress(fnftId); // NB: The user has control of where this external call goes (fnft.asset) IERC20(fnft.asset).safeTransferFrom(_msgSender(), smartWallet, deposit); ITokenVaultV2(vault).recordAdditionalDeposit(_msgSender(), fnftId, deposit); } if(fnft.pipeToContract != address(0) && fnft.pipeToContract.supportsInterface(OUTPUT_RECEIVER_INTERFACE_V3_ID)) { IOutputReceiverV3(fnft.pipeToContract).handleAdditionalDeposit(fnftId, amount, quantity, _msgSender()); } emit FNFTAddionalDeposited(_msgSender(), fnftId, quantity, amount); return 0; } // // INTERNAL FUNCTIONS // // Private function for use in withdrawing FNFTs, allow us to make universal use of reentrancy guard function _withdrawFNFT(uint fnftId, uint quantity) private { address fnftHandler = addressesProvider.getRevestFNFT(); // Check if this many FNFTs exist in the first place for the given ID require(quantity > 0, "E003"); // Burn the FNFTs being exchanged IFNFTHandler(fnftHandler).burn(_msgSender(), fnftId, quantity); require(getLockManager().unlockFNFT(fnftId, _msgSender()), 'E082'); address vault = addressesProvider.getTokenVault(); ITokenVault(vault).withdrawToken(fnftId, quantity, _msgSender()); emit FNFTWithdrawn(_msgSender(), fnftId, quantity); } function doMint( address[] memory recipients, uint[] memory quantities, uint fnftId, IRevest.FNFTConfig memory fnftConfig, uint weiValue ) internal { bool isSingular; uint totalQuantity = quantities[0]; { uint rec = recipients.length; uint quant = quantities.length; require(rec == quant, "recipients and quantities arrays must match"); // Calculate total quantity isSingular = rec == 1; if(!isSingular) { for(uint i = 1; i < quant; i++) { totalQuantity += quantities[i]; } } require(totalQuantity > 0, "E003"); } // Gas optimization // Will always be new token vault address vault = addressesProvider.getTokenVault(); // Take fees if(weiValue > 0) { // Immediately convert all ETH to WETH IWETH(WETH).deposit{value: weiValue}(); } // For multi-chain deployments, will relay through RewardsHandlerSimplified to end up in admin wallet // Whitelist system will charge fees on all but approved parties, who may charge them using negotiated // values with the Revest Protocol if(!whitelisted[_msgSender()]) { if(flatWeiFee > 0) { require(weiValue >= flatWeiFee, "E005"); address reward = addressesProvider.getRewardsHandler(); if(!approved[reward]) { IERC20(WETH).approve(reward, MAX_INT); approved[reward] = true; } IRewardsHandler(reward).receiveFee(WETH, flatWeiFee); } // If we aren't depositing any value, no point running this if(fnftConfig.depositAmount > 0) { uint totalERC20Fee = erc20Fee * totalQuantity * fnftConfig.depositAmount / erc20multiplierPrecision; if(totalERC20Fee > 0) { // NB: The user has control of where this external call goes (fnftConfig.asset) IERC20(fnftConfig.asset).safeTransferFrom(_msgSender(), addressesProvider.getAdmin(), totalERC20Fee); } } // If there's any leftover ETH after the flat fee, convert it to WETH weiValue -= flatWeiFee; } // Convert ETH to WETH if necessary if(weiValue > 0) { // If the asset is WETH, we also enable sending ETH to pay for the tx fee. Not required though require(fnftConfig.asset == WETH, "E053"); require(weiValue >= fnftConfig.depositAmount, "E015"); } // Create the FNFT and update accounting within TokenVault ITokenVault(vault).createFNFT(fnftId, fnftConfig, totalQuantity, _msgSender()); // Now, we move the funds to token vault from the message sender if(fnftConfig.asset != address(0)){ address smartWallet = ITokenVaultV2(vault).getFNFTAddress(fnftId); // NB: The user has control of where this external call goes (fnftConfig.asset) IERC20(fnftConfig.asset).safeTransferFrom(_msgSender(), smartWallet, totalQuantity * fnftConfig.depositAmount); } // Mint NFT // Gas optimization if(!isSingular) { getFNFTHandler().mintBatchRec(recipients, quantities, fnftId, totalQuantity, ''); } else { getFNFTHandler().mint(recipients[0], fnftId, quantities[0], ''); } } function setFlatWeiFee(uint wethFee) external override onlyOwner { flatWeiFee = wethFee; } function setERC20Fee(uint erc20) external override onlyOwner { erc20Fee = erc20; } function getFlatWeiFee() external view override returns (uint) { return flatWeiFee; } function getERC20Fee() external view override returns (uint) { return erc20Fee; } /** * @dev Returns the cached IAddressRegistry connected to this contract **/ function getAddressesProvider() external view returns (IAddressRegistry) { return addressesProvider; } /// Used to whitelist a contract for custom fee behavior function modifyWhitelist(address contra, bool listed) external onlyOwner { whitelisted[contra] = listed; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.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)); } } /** * @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 v4.4.1 (utils/introspection/ERC165Checker.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165Checker { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /** * @dev Returns true if `account` supports the {IERC165} interface, */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return _supportsERC165Interface(account, type(IERC165).interfaceId) && !_supportsERC165Interface(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && _supportsERC165Interface(account, interfaceId); } /** * @dev Returns a boolean array where each value corresponds to the * interfaces passed in and whether they're supported or not. This allows * you to batch check interfaces for a contract where your expectation * is that some interfaces may not be supported. * * See {IERC165-supportsInterface}. * * _Available since v3.4._ */ function getSupportedInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool[] memory) { // an array of booleans corresponding to interfaceIds and whether they're supported or not bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length); // query support of ERC165 itself if (supportsERC165(account)) { // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]); } } return interfaceIdsSupported; } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in _interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!_supportsERC165Interface(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * Interface identification is specified in ERC-165. */ function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) { bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId); (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams); if (result.length < 32) return false; return success && abi.decode(result, (bool)); } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IRevest { event FNFTTimeLockMinted( address indexed asset, address indexed from, uint indexed fnftId, uint endTime, uint[] quantities, FNFTConfig fnftConfig ); event FNFTValueLockMinted( address indexed asset, address indexed from, uint indexed fnftId, address compareTo, address oracleDispatch, uint[] quantities, FNFTConfig fnftConfig ); event FNFTAddressLockMinted( address indexed asset, address indexed from, uint indexed fnftId, address trigger, uint[] quantities, FNFTConfig fnftConfig ); event FNFTWithdrawn( address indexed from, uint indexed fnftId, uint indexed quantity ); event FNFTSplit( address indexed from, uint[] indexed newFNFTId, uint[] indexed proportions, uint quantity ); event FNFTUnlocked( address indexed from, uint indexed fnftId ); event FNFTMaturityExtended( address indexed from, uint indexed fnftId, uint indexed newExtendedTime ); event FNFTAddionalDeposited( address indexed from, uint indexed newFNFTId, uint indexed quantity, uint amount ); struct FNFTConfig { address asset; // The token being stored address pipeToContract; // Indicates if FNFT will pipe to another contract uint depositAmount; // How many tokens uint depositMul; // Deposit multiplier uint split; // Number of splits remaining uint depositStopTime; // bool maturityExtension; // Maturity extensions remaining bool isMulti; // bool nontransferrable; // False by default (transferrable) // } // Refers to the global balance for an ERC20, encompassing possibly many FNFTs struct TokenTracker { uint lastBalance; uint lastMul; } enum LockType { DoesNotExist, TimeLock, ValueLock, AddressLock } struct LockParam { address addressLock; uint timeLockExpiry; LockType lockType; ValueLock valueLock; } struct Lock { address addressLock; LockType lockType; ValueLock valueLock; uint timeLockExpiry; uint creationTime; bool unlocked; } struct ValueLock { address asset; address compareTo; address oracle; uint unlockValue; bool unlockRisingEdge; } function mintTimeLock( uint endTime, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function mintValueLock( address primaryAsset, address compareTo, uint unlockValue, bool unlockRisingEdge, address oracleDispatch, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function mintAddressLock( address trigger, bytes memory arguments, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function withdrawFNFT(uint tokenUID, uint quantity) external; function unlockFNFT(uint tokenUID) external; function splitFNFT( uint fnftId, uint[] memory proportions, uint quantity ) external returns (uint[] memory newFNFTIds); function depositAdditionalToFNFT( uint fnftId, uint amount, uint quantity ) external returns (uint); function extendFNFTMaturity( uint fnftId, uint endTime ) external returns (uint); function setFlatWeiFee(uint wethFee) external; function setERC20Fee(uint erc20) external; function getFlatWeiFee() external view returns (uint); function getERC20Fee() external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; /** * @title Provider interface for Revest FNFTs * @dev * */ interface IAddressRegistry { function initialize( address lock_manager_, address liquidity_, address revest_token_, address token_vault_, address revest_, address fnft_, address metadata_, address admin_, address rewards_ ) external; function getAdmin() external view returns (address); function setAdmin(address admin) external; function getLockManager() external view returns (address); function setLockManager(address manager) external; function getTokenVault() external view returns (address); function setTokenVault(address vault) external; function getRevestFNFT() external view returns (address); function setRevestFNFT(address fnft) external; function getMetadataHandler() external view returns (address); function setMetadataHandler(address metadata) external; function getRevest() external view returns (address); function setRevest(address revest) external; function getDEX(uint index) external view returns (address); function setDex(address dex) external; function getRevestToken() external view returns (address); function setRevestToken(address token) external; function getRewardsHandler() external view returns(address); function setRewardsHandler(address esc) external; function getAddress(bytes32 id) external view returns (address); function getLPs() external view returns (address); function setLPs(address liquidToken) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRevest.sol"; interface ILockManager { function createLock(uint fnftId, IRevest.LockParam memory lock) external returns (uint); function getLock(uint lockId) external view returns (IRevest.Lock memory); function fnftIdToLockId(uint fnftId) external view returns (uint); function fnftIdToLock(uint fnftId) external view returns (IRevest.Lock memory); function pointFNFTToLock(uint fnftId, uint lockId) external; function lockTypes(uint tokenId) external view returns (IRevest.LockType); function unlockFNFT(uint fnftId, address sender) external returns (bool); function getLockMaturity(uint fnftId) external view returns (bool); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./ITokenVault.sol"; interface ITokenVaultV2 is ITokenVault { /// Emitted when an FNFT is created event CreateFNFT(uint indexed fnftId, address indexed from); /// Emitted when an FNFT is redeemed event RedeemFNFT(uint indexed fnftId, address indexed from); /// Emitted when an FNFT is created to denote what tokens have been deposited event DepositERC20(address indexed token, address indexed user, uint indexed fnftId, uint tokenAmount, address smartWallet); /// Emitted when an FNFT is withdraw to denote what tokens have been withdrawn event WithdrawERC20(address indexed token, address indexed user, uint indexed fnftId, uint tokenAmount, address smartWallet); function getFNFTAddress(uint fnftId) external view returns (address smartWallet); function recordAdditionalDeposit(address user, uint fnftId, uint tokenAmount) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IRewardsHandler { struct UserBalance { uint allocPoint; // Allocation points uint lastMul; } function receiveFee(address token, uint amount) external; function updateLPShares(uint fnftId, uint newShares) external; function updateBasicShares(uint fnftId, uint newShares) external; function getAllocPoint(uint fnftId, address token, bool isBasic) external view returns (uint); function claimRewards(uint fnftId, address caller) external returns (uint); function setStakingContract(address stake) external; function getRewards(uint fnftId, address token) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRegistryProvider.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiver is IRegistryProvider, IERC165 { function receiveRevestOutput( uint fnftId, address asset, address payable owner, uint quantity ) external; function getCustomMetadata(uint fnftId) external view returns (string memory); function getValue(uint fnftId) external view returns (uint); function getAsset(uint fnftId) external view returns (address); function getOutputDisplayValues(uint fnftId) external view returns (bytes memory); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IOutputReceiver.sol"; import "./IRevest.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiverV2 is IOutputReceiver { // Future proofing for secondary callbacks during withdrawal // Could just use triggerOutputReceiverUpdate and call withdrawal function // But deliberately using reentry is poor form and reminds me too much of OAuth 2.0 function receiveSecondaryCallback( uint fnftId, address payable owner, uint quantity, IRevest.FNFTConfig memory config, bytes memory args ) external payable; // Allows for similar function to address lock, updating state while still locked // Called by the user directly function triggerOutputReceiverUpdate( uint fnftId, bytes memory args ) external; // This function should only ever be called when a split or additional deposit has occurred function handleFNFTRemaps(uint fnftId, uint[] memory newFNFTIds, address caller, bool cleanup) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IOutputReceiverV2.sol"; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiverV3 is IOutputReceiverV2 { event DepositERC20OutputReceiver(address indexed mintTo, address indexed token, uint amountTokens, uint indexed fnftId, bytes extraData); event DepositERC721OutputReceiver(address indexed mintTo, address indexed token, uint[] tokenIds, uint indexed fnftId, bytes extraData); event DepositERC1155OutputReceiver(address indexed mintTo, address indexed token, uint tokenId, uint amountTokens, uint indexed fnftId, bytes extraData); event WithdrawERC20OutputReceiver(address indexed caller, address indexed token, uint amountTokens, uint indexed fnftId, bytes extraData); event WithdrawERC721OutputReceiver(address indexed caller, address indexed token, uint[] tokenIds, uint indexed fnftId, bytes extraData); event WithdrawERC1155OutputReceiver(address indexed caller, address indexed token, uint tokenId, uint amountTokens, uint indexed fnftId, bytes extraData); function handleTimelockExtensions(uint fnftId, uint expiration, address caller) external; function handleAdditionalDeposit(uint fnftId, uint amountToDeposit, uint quantity, address caller) external; function handleSplitOperation(uint fnftId, uint[] memory proportions, uint quantity, address caller) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRegistryProvider.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs * @dev Address locks MUST be non-upgradeable to be considered for trusted status * @author Revest */ interface IAddressLock is IRegistryProvider, IERC165{ /// Creates a lock to the specified lockID /// @param fnftId the fnftId to map this lock to. Not recommended for typical locks, as it will break on splitting /// @param lockId the lockId to map this lock to. Recommended uint for storing references to lock configurations /// @param arguments an abi.encode() bytes array. Allows frontend to encode and pass in an arbitrary set of parameters /// @dev creates a lock for the specified lockId. Will be called during the creation process for address locks when the address /// of a contract implementing this interface is passed in as the "trigger" address for minting an address lock. The bytes /// representing any parameters this lock requires are passed through to this method, where abi.decode must be call on them function createLock(uint fnftId, uint lockId, bytes memory arguments) external; /// Updates a lock at the specified lockId /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @param arguments an abi.encode() bytes array. Allows frontend to encode and pass in an arbitrary set of parameters /// @dev updates a lock for the specified lockId. Will be called by the frontend from the information section if an update is requested /// can further accept and decode parameters to use in modifying the lock's config or triggering other actions /// such as triggering an on-chain oracle to update function updateLock(uint fnftId, uint lockId, bytes memory arguments) external; /// Whether or not the lock can be unlocked /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @dev this method is called during the unlocking and withdrawal processes by the Revest contract - it is also used by the frontend /// if this method is returning true and someone attempts to unlock or withdraw from an FNFT attached to the requested lock, the request will succeed /// @return whether or not this lock may be unlocked function isUnlockable(uint fnftId, uint lockId) external view returns (bool); /// Provides an encoded bytes arary that represents values this lock wants to display on the info screen /// Info to decode these values is provided in the metadata file /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @dev used by the frontend to fetch on-chain data on the state of any given lock /// @return a bytes array that represents the result of calling abi.encode on values which the developer wants to appear on the frontend function getDisplayValues(uint fnftId, uint lockId) external view returns (bytes memory); /// Maps to a URL, typically IPFS-based, that contains information on how to encode and decode paramters sent to and from this lock /// Please see additional documentation for JSON config info /// @dev this method will be called by the frontend only but is crucial to properly implement for proper minting and information workflows /// @return a URL to the JSON file containing this lock's metadata schema function getMetadata() external view returns (string memory); /// Whether or not this lock will need updates and should display the option for them /// @dev this will be called by the frontend to determine if update inputs and buttons should be displayed /// @return whether or not the locks created by this contract will need updates function needsUpdate() external view returns (bool); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IAddressRegistryV2.sol"; import "../interfaces/ILockManager.sol"; import "../interfaces/IRewardsHandler.sol"; import "../interfaces/ITokenVault.sol"; import "../interfaces/IRevestToken.sol"; import "../interfaces/IFNFTHandler.sol"; import "../lib/uniswap/IUniswapV2Factory.sol"; contract RevestAccessControl is Ownable { IAddressRegistryV2 internal addressesProvider; constructor(address provider) Ownable() { addressesProvider = IAddressRegistryV2(provider); } modifier onlyRevest() { require(_msgSender() != address(0), "E004"); require( _msgSender() == addressesProvider.getLockManager() || _msgSender() == addressesProvider.getRewardsHandler() || _msgSender() == addressesProvider.getTokenVault() || _msgSender() == addressesProvider.getRevest() || _msgSender() == addressesProvider.getRevestToken(), "E016" ); _; } modifier onlyRevestController() { require(_msgSender() != address(0), "E004"); require(_msgSender() == addressesProvider.getRevest(), "E017"); _; } modifier onlyTokenVault() { require(_msgSender() != address(0), "E004"); require(_msgSender() == addressesProvider.getTokenVault(), "E017"); _; } function setAddressRegistry(address registry) external onlyOwner { addressesProvider = IAddressRegistryV2(registry); } function getAdmin() internal view returns (address) { return addressesProvider.getAdmin(); } function getRevest() internal view returns (IRevest) { return IRevest(addressesProvider.getRevest()); } function getRevestToken() internal view returns (IRevestToken) { return IRevestToken(addressesProvider.getRevestToken()); } function getLockManager() internal view returns (ILockManager) { return ILockManager(addressesProvider.getLockManager()); } function getTokenVault() internal view returns (ITokenVault) { return ITokenVault(addressesProvider.getTokenVault()); } function getUniswapV2() internal view returns (IUniswapV2Factory) { return IUniswapV2Factory(addressesProvider.getDEX(0)); } function getFNFTHandler() internal view returns (IFNFTHandler) { return IFNFTHandler(addressesProvider.getRevestFNFT()); } function getRewardsHandler() internal view returns (IRewardsHandler) { return IRewardsHandler(addressesProvider.getRewardsHandler()); } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract RevestReentrancyGuard is ReentrancyGuard { // Used to avoid reentrancy uint private constant MAX_INT = 0xFFFFFFFFFFFFFFFF; uint private currentId = MAX_INT; modifier revestNonReentrant(uint fnftId) { // On the first call to nonReentrant, _notEntered will be true require(fnftId != currentId, "E052"); // Any calls to nonReentrant after this point will fail currentId = fnftId; _; currentId = MAX_INT; } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; // Introduced later in development function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 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/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRevest.sol"; interface ITokenVault { function createFNFT( uint fnftId, IRevest.FNFTConfig memory fnftConfig, uint quantity, address from ) external; function withdrawToken( uint fnftId, uint quantity, address user ) external; function depositToken( uint fnftId, uint amount, uint quantity ) external; function cloneFNFTConfig(IRevest.FNFTConfig memory old) external returns (IRevest.FNFTConfig memory); function mapFNFTToToken( uint fnftId, IRevest.FNFTConfig memory fnftConfig ) external; function handleMultipleDeposits( uint fnftId, uint newFNFTId, uint amount ) external; function splitFNFT( uint fnftId, uint[] memory newFNFTIds, uint[] memory proportions, uint quantity ) external; function getFNFT(uint fnftId) external view returns (IRevest.FNFTConfig memory); function getFNFTCurrentValue(uint fnftId) external view returns (uint); function getNontransferable(uint fnftId) external view returns (bool); function getSplitsRemaining(uint fnftId) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "../interfaces/IAddressRegistry.sol"; import "../interfaces/ITokenVault.sol"; import "../interfaces/ILockManager.sol"; interface IRegistryProvider { function setAddressRegistry(address revest) external; function getAddressRegistry() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IAddressRegistry.sol"; /** * @title Provider interface for Revest FNFTs * @dev * */ interface IAddressRegistryV2 is IAddressRegistry { function initialize_with_legacy( address lock_manager_, address liquidity_, address revest_token_, address token_vault_, address legacy_vault_, address revest_, address fnft_, address metadata_, address admin_, address rewards_ ) external; function getLegacyTokenVault() external view returns (address legacy); function setLegacyTokenVault(address legacyVault) external; function breakGlass() external; function pauseToken() external; function unpauseToken() external; function modifyPauser(address pauser, bool grant) external; function modifyBreaker(address breaker, bool grant) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IRevestToken is IERC20 { }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IFNFTHandler { function mint(address account, uint id, uint amount, bytes memory data) external; function mintBatchRec(address[] memory recipients, uint[] memory quantities, uint id, uint newSupply, bytes memory data) external; function mintBatch(address to, uint[] memory ids, uint[] memory amounts, bytes memory data) external; function setURI(string memory newuri) external; function burn(address account, uint id, uint amount) external; function burnBatch(address account, uint[] memory ids, uint[] memory amounts) external; function getBalance(address tokenHolder, uint id) external view returns (uint); function getSupply(uint fnftId) external view returns (uint); function getNextId() external view returns (uint); }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
{ "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"address","name":"weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"newFNFTId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FNFTAddionalDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":false,"internalType":"address","name":"trigger","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"indexed":false,"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"FNFTAddressLockMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newExtendedTime","type":"uint256"}],"name":"FNFTMaturityExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256[]","name":"newFNFTId","type":"uint256[]"},{"indexed":true,"internalType":"uint256[]","name":"proportions","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"FNFTSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"indexed":false,"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"FNFTTimeLockMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"}],"name":"FNFTUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":false,"internalType":"address","name":"compareTo","type":"address"},{"indexed":false,"internalType":"address","name":"oracleDispatch","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"indexed":false,"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"FNFTValueLockMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"FNFTWithdrawn","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"},{"inputs":[],"name":"ADDRESS_LOCK_INTERFACE_ID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OUTPUT_RECEIVER_INTERFACE_V2_ID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OUTPUT_RECEIVER_INTERFACE_V3_ID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"depositAdditionalToFNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"extendFNFTMaturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flatWeiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAddressesProvider","outputs":[{"internalType":"contract IAddressRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getERC20Fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFlatWeiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"trigger","type":"address"},{"internalType":"bytes","name":"arguments","type":"bytes"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"mintAddressLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"mintTimeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"primaryAsset","type":"address"},{"internalType":"address","name":"compareTo","type":"address"},{"internalType":"uint256","name":"unlockValue","type":"uint256"},{"internalType":"bool","name":"unlockRisingEdge","type":"bool"},{"internalType":"address","name":"oracleDispatch","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"mintValueLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"contra","type":"address"},{"internalType":"bool","name":"listed","type":"bool"}],"name":"modifyWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"registry","type":"address"}],"name":"setAddressRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"erc20","type":"uint256"}],"name":"setERC20Fee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wethFee","type":"uint256"}],"name":"setFlatWeiFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256[]","name":"proportions","type":"uint256[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"splitFNFT","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"}],"name":"unlockFNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"withdrawFNFT","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526001600160401b036003553480156200001c57600080fd5b5060405162004492380380620044928339810160408190526200003f91620000e2565b816200004b3362000075565b600180546001600160a01b0319166001600160a01b0392831617815560025516608052506200011a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620000dd57600080fd5b919050565b60008060408385031215620000f657600080fd5b6200010183620000c5565b91506200011160208401620000c5565b90509250929050565b6080516143476200014b600039600081816125320152818161272001528181612803015261295801526143476000f3fe60806040526004361061018b5760003560e01c806393a9003c116100d6578063d936547e1161007f578063f2fde38b11610059578063f2fde38b14610488578063fccc19d0146104a8578063fe65acfe146104d557600080fd5b8063d936547e14610413578063ecea07d814610453578063f2465f091461046857600080fd5b8063bc2ab8ce116100b0578063bc2ab8ce146103ac578063bdb132d5146103cc578063d2619413146103df57600080fd5b806393a9003c14610342578063974ffdf714610362578063b3f9ff191461037857600080fd5b806358efe2011161013857806363e320ff1161011257806363e320ff14610296578063715018a6146102fb5780638da5cb5b1461031057600080fd5b806358efe201146102435780635a7c08f0146102635780635dcb7ab21461027657600080fd5b806322caa2341161016957806322caa234146101ee57806327c7812c1461020e57806342de99fe1461022e57600080fd5b806302e236bc14610190578063060d206e146101b657806307d7fb9a146101d8575b600080fd5b6101a361019e3660046138b1565b6104f3565b6040519081526020015b60405180910390f35b3480156101c257600080fd5b506101d66101d13660046139d0565b6107c0565b005b3480156101e457600080fd5b506101a360045481565b3480156101fa57600080fd5b506101d6610209366004613a09565b610863565b34801561021a57600080fd5b506101d6610229366004613a22565b610ad5565b34801561023a57600080fd5b506005546101a3565b34801561024f57600080fd5b506101d661025e366004613a09565b610b69565b6101a3610271366004613a3f565b610bc8565b34801561028257600080fd5b506101a3610291366004613abf565b610dd2565b3480156102a257600080fd5b506102ca7f4291039a0000000000000000000000000000000000000000000000000000000081565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101ad565b34801561030757600080fd5b506101d6611610565b34801561031c57600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101ad565b34801561034e57600080fd5b506101a361035d366004613aeb565b611676565b34801561036e57600080fd5b506101a360055481565b34801561038457600080fd5b506102ca7f3f8f47e80000000000000000000000000000000000000000000000000000000081565b3480156103b857600080fd5b506101d66103c7366004613a09565b611db6565b6101a36103da366004613b0d565b611e15565b3480156103eb57600080fd5b506102ca7f789bc3790000000000000000000000000000000000000000000000000000000081565b34801561041f57600080fd5b5061044361042e366004613a22565b60076020526000908152604090205460ff1681565b60405190151581526020016101ad565b34801561045f57600080fd5b506004546101a3565b34801561047457600080fd5b506101d6610483366004613aeb565b61205e565b34801561049457600080fd5b506101d66104a3366004613a22565b6120c6565b3480156104b457600080fd5b506104c86104c3366004613bd7565b6121a8565b6040516101ad9190613c62565b3480156104e157600080fd5b506001546001600160a01b031661032a565b6000600280540361054b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600280556000610559612247565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610596573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ba9190613c75565b905061060b60408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001600160a01b03881681526003604082015260006106286122d3565b6001600160a01b031663dd6aa4cf84846040518363ffffffff1660e01b8152600401610655929190613cbd565b6020604051808303816000875af1158015610674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106989190613c75565b90506106cd6001600160a01b038a167f3f8f47e800000000000000000000000000000000000000000000000000000000612336565b1561074e576040517f1c8478160000000000000000000000000000000000000000000000000000000081526001600160a01b038a1690631c8478169061071b90869085908d90600401613de3565b600060405180830381600087803b15801561073557600080fd5b505af1158015610749573d6000803e3d6000fd5b505050505b505061075d858583863461235b565b80336001600160a01b031684600001516001600160a01b03167f4ae21494ad3e589ccc04df1bff8f9eb5dc6b6e11ad0ebd2dba2cf5e76eaf99e68a88886040516107a993929190613e81565b60405180910390a460016002559695505050505050565b6000546001600160a01b0316331461081a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610542565b6001600160a01b0391909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60028054036108b45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610542565b6002805560006108c26122d3565b6001600160a01b031663fc9ec25d836040518263ffffffff1660e01b81526004016108ef91815260200190565b602060405180830381865afa15801561090c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109309190613ec3565b9050600381600381111561094657610946613c8e565b14806109635750600281600381111561096157610961613c8e565b145b6109b15760405162461bcd60e51b81526004016105429060208082526004908201527f4530303800000000000000000000000000000000000000000000000000000000604082015260600190565b6109b96122d3565b6001600160a01b031663fb68480583336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b031660248201526044016020604051808303816000875af1158015610a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a519190613ee9565b610a9f5760405162461bcd60e51b81526004016105429060208082526004908201527f4530353600000000000000000000000000000000000000000000000000000000604082015260600190565b604051829033907f11a58cb8f90fd3e7ea138c2320c5a4ccd5a9317f2599991807e69647c00c3c3b90600090a350506001600255565b6000546001600160a01b03163314610b2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610542565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610bc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610542565b600555565b60006002805403610c1b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610542565b600280556000610c29612247565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8a9190613c75565b9050610cdb60408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001604082015260208101879052610cf16122d3565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401610d1e929190613cbd565b6020604051808303816000875af1158015610d3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d619190613c75565b5050610d70858583863461235b565b80336001600160a01b031684600001516001600160a01b03167f17cd459969a386aa6bf71b546af420a11ab0c72b7cd33a2186c67ab60467e7ce898888604051610dbc93929190613f06565b60405180910390a4600160025595945050505050565b60006002805403610e255760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610542565b60028055600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb09190613f2b565b6040517f522f9b37000000000000000000000000000000000000000000000000000000008152600481018790529091506000906001600160a01b0383169063522f9b379060240161012060405180830381865afa158015610f15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f399190613f48565b90506000600160009054906101000a90046001600160a01b03166001600160a01b031663d59e296e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb49190613f2b565b9050806001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110189190613c75565b87106110685760405162461bcd60e51b81526004016105429060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8160e001516110bb5760405162461bcd60e51b81526004016105429060208082526004908201527f4530333400000000000000000000000000000000000000000000000000000000604082015260600190565b428260a0015111806110cf575060a0820151155b61111d5760405162461bcd60e51b81526004016105429060208082526004908201527f4530333500000000000000000000000000000000000000000000000000000000604082015260600190565b6000851161116f5760405162461bcd60e51b81526004016105429060208082526004908201527f4530373000000000000000000000000000000000000000000000000000000000604082015260600190565b60608201511580611188575081516001600160a01b0316155b6111d65760405162461bcd60e51b81526004016105429060208082526004908201527f4530383400000000000000000000000000000000000000000000000000000000604082015260600190565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018890526000906001600160a01b0383169063f77ee79d90602401602060405180830381865afa158015611237573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125b9190613c75565b905060006112698888614011565b90508187146112bc5760405162461bcd60e51b81526004016105429060208082526004908201527f4530383300000000000000000000000000000000000000000000000000000000604082015260600190565b3360009081526007602052604090205460ff166113885760006103e8826004546112e69190614011565b6112f0919061404e565b905080156113865761138633600160009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561134f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113739190613f2b565b87516001600160a01b0316919084612ccf565b505b83516001600160a01b0316156114c7576040517f3536cb6f000000000000000000000000000000000000000000000000000000008152600481018a90526000906001600160a01b03871690633536cb6f90602401602060405180830381865afa1580156113f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141d9190613f2b565b90506114363386516001600160a01b0316908385612ccf565b6001600160a01b03861663f636d9df336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018d905260448101859052606401600060405180830381600087803b1580156114ad57600080fd5b505af11580156114c1573d6000803e3d6000fd5b50505050505b60208401516001600160a01b03161580159061151657506020840151611516906001600160a01b03167f789bc37900000000000000000000000000000000000000000000000000000000612336565b156115b75760208401516001600160a01b0316631d1457218a8a8a336040517fffffffff0000000000000000000000000000000000000000000000000000000060e087901b1681526004810194909452602484019290925260448301526001600160a01b03166064820152608401600060405180830381600087803b15801561159e57600080fd5b505af11580156115b2573d6000803e3d6000fd5b505050505b8689336001600160a01b03167f7079dc4a34ecf4aa63066fe944ac528604e4b89afbf0ceb16dae7f7ad611bfec8b6040516115f491815260200190565b60405180910390a4505060016002555060009695505050505050565b6000546001600160a01b0316331461166a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610542565b6116746000612d5d565b565b600060028054036116c95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610542565b6002805560006116d7612247565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018690529091506000906001600160a01b0383169063f77ee79d90602401602060405180830381865afa15801561173b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175f9190613c75565b905060006001600160a01b038316632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03909116600482015260248101899052604401602060405180830381865afa1580156117d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fa9190613c75565b905042851161184d5760405162461bcd60e51b81526004016105429060208082526004908201527f4530303200000000000000000000000000000000000000000000000000000000604082015260600190565b826001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa15801561188b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118af9190613c75565b86106118ff5760405162461bcd60e51b81526004016105429060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8181146119505760405162461bcd60e51b81526004016105429060208082526004908201527f4530323200000000000000000000000000000000000000000000000000000000604082015260600190565b600061195a612dc5565b6001600160a01b031663522f9b37886040518263ffffffff1660e01b815260040161198791815260200190565b61012060405180830381865afa1580156119a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c99190613f48565b905060006119d56122d3565b90508160c001518015611a7a575060016040517ffc9ec25d000000000000000000000000000000000000000000000000000000008152600481018a90526001600160a01b0383169063fc9ec25d90602401602060405180830381865afa158015611a43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a679190613ec3565b6003811115611a7857611a78613c8e565b145b611ac85760405162461bcd60e51b81526004016105429060208082526004908201527f4530323900000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f3fe8ca060000000000000000000000000000000000000000000000000000000081526004810189905287906001600160a01b03831690633fe8ca069060240161014060405180830381865afa158015611b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4d9190614089565b6060015110611ba05760405162461bcd60e51b81526004016105429060208082526004908201527f4530333000000000000000000000000000000000000000000000000000000000604082015260600190565b611bef60408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b60016040820181905250602081018890526040517fdd6aa4cf0000000000000000000000000000000000000000000000000000000081526001600160a01b0383169063dd6aa4cf90611c47908c908590600401613cbd565b6020604051808303816000875af1158015611c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8a9190613c75565b5060208301516001600160a01b031615801590611cda57506020830151611cda906001600160a01b03167f789bc37900000000000000000000000000000000000000000000000000000000612336565b15611d755760208301516001600160a01b0316631355f7ab8a8a336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b158015611d5c57600080fd5b505af1158015611d70573d6000803e3d6000fd5b505050505b60405188908a9033907fa4cbdeb0d65455aa896613c3372efe5b38b40a1e76ff76b00f14a789019a969990600090a450506001600255509495945050505050565b6000546001600160a01b03163314611e105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610542565b600455565b60006002805403611e685760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610542565b600280556000611e76612247565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed79190613c75565b9050611f2860408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6002604082810191909152606080830180518b151560809091015280519091018b905280516001600160a01b038e811690915281518d8216602091909101529051908916910152611f776122d3565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401611fa4929190613cbd565b6020604051808303816000875af1158015611fc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe79190613c75565b5050611ff6858583863461235b565b80336001600160a01b031684600001516001600160a01b03167f80ed7d5bf65bfce0365fdac589476923914d111260d5736d9bef132bdb037b8f8c8a89896040516120449493929190614187565b60405180910390a460016002559998505050505050505050565b60028054036120af5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610542565b600280556120bd8282612e28565b50506001600255565b6000546001600160a01b031633146121205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610542565b6001600160a01b03811661219c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610542565b6121a581612d5d565b50565b606060028054036121fb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610542565b6002805560405162461bcd60e51b815260206004820152600760248201527f544d505f42524b000000000000000000000000000000000000000000000000006044820152606401610542565b600154604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e9160048083019260209291908290030181865afa1580156122aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ce9190613f2b565b905090565b600154604080517f035d0c6900000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163035d0c699160048083019260209291908290030181865afa1580156122aa573d6000803e3d6000fd5b6000612341836131de565b801561235257506123528383613242565b90505b92915050565b60008085600081518110612371576123716141c4565b602002602001015190506000875190506000875190508082146123fc5760405162461bcd60e51b815260206004820152602b60248201527f726563697069656e747320616e64207175616e7469746965732061727261797360448201527f206d757374206d617463680000000000000000000000000000000000000000006064820152608401610542565b8160011493508361244d5760015b8181101561244b57888181518110612424576124246141c4565b60200260200101518461243791906141f3565b9350806124438161420b565b91505061240a565b505b6000831161249f5760405162461bcd60e51b81526004016105429060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b5050600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015612504573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125289190613f2b565b905083156125a5577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561258b57600080fd5b505af115801561259f573d6000803e3d6000fd5b50505050505b3360009081526007602052604090205460ff166129505760055415612872576005548410156126185760405162461bcd60e51b81526004016105429060208082526004908201527f4530303500000000000000000000000000000000000000000000000000000000604082015260600190565b600154604080517ff9f5e1dd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163f9f5e1dd9160048083019260209291908290030181865afa15801561267b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269f9190613f2b565b6001600160a01b03811660009081526006602052604090205490915060ff166127d0576040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015612769573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061278d9190613ee9565b506001600160a01b038116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b6005546040517f2316ad320000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482019290925290821690632316ad3290604401600060405180830381600087803b15801561285857600080fd5b505af115801561286c573d6000803e3d6000fd5b50505050505b6040850151156129405760006103e88660400151846004546128949190614011565b61289e9190614011565b6128a8919061404e565b9050801561293e5761293e33600160009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612907573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292b9190613f2b565b88516001600160a01b0316919084612ccf565b505b60055461294d9085614243565b93505b8315612a33577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031685600001516001600160a01b0316146129dd5760405162461bcd60e51b81526004016105429060208082526004908201527f4530353300000000000000000000000000000000000000000000000000000000604082015260600190565b8460400151841015612a335760405162461bcd60e51b81526004016105429060208082526004908201527f4530313500000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f8717293d0000000000000000000000000000000000000000000000000000000081526001600160a01b03821690638717293d90612a7e90899089908790339060040161425a565b600060405180830381600087803b158015612a9857600080fd5b505af1158015612aac573d6000803e3d6000fd5b505086516001600160a01b0316159150612b739050576040517f3536cb6f000000000000000000000000000000000000000000000000000000008152600481018790526000906001600160a01b03831690633536cb6f90602401602060405180830381865afa158015612b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b479190613f2b565b9050612b713382886040015186612b5e9190614011565b89516001600160a01b0316929190612ccf565b505b82612be857612b80612247565b6001600160a01b0316639a46cd5d898989866040518563ffffffff1660e01b8152600401612bb1949392919061428f565b600060405180830381600087803b158015612bcb57600080fd5b505af1158015612bdf573d6000803e3d6000fd5b50505050612cc5565b612bf0612247565b6001600160a01b031663731133e989600081518110612c1157612c116141c4565b6020026020010151888a600081518110612c2d57612c2d6141c4565b60209081029190910101516040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b03909316600484015260248301919091526044820152608060648201526000608482015260a401600060405180830381600087803b158015612cac57600080fd5b505af1158015612cc0573d6000803e3d6000fd5b505050505b5050505050505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052612d57908590613371565b50505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa1580156122aa573d6000803e3d6000fd5b600154604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e9160048083019260209291908290030181865afa158015612e8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eaf9190613f2b565b905060008211612f035760405162461bcd60e51b81526004016105429060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b6001600160a01b03811663f5298aca336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810186905260448101859052606401600060405180830381600087803b158015612f7a57600080fd5b505af1158015612f8e573d6000803e3d6000fd5b50505050612f9a6122d3565b6001600160a01b031663fb68480584336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b031660248201526044016020604051808303816000875af115801561300e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130329190613ee9565b6130805760405162461bcd60e51b81526004016105429060208082526004908201527f4530383200000000000000000000000000000000000000000000000000000000604082015260600190565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa1580156130e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131079190613f2b565b90506001600160a01b038116635d61210d8585336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b15801561318257600080fd5b505af1158015613196573d6000803e3d6000fd5b5050505082846131a33390565b6001600160a01b03167fbdf03104edebd5ecb0debd1ecd122dc6b2b8069b2c2618146c0afe468f53ee7160405160405180910390a450505050565b600061320a827f01ffc9a700000000000000000000000000000000000000000000000000000000613242565b8015612355575061323b827fffffffff00000000000000000000000000000000000000000000000000000000613242565b1592915050565b604080517fffffffff00000000000000000000000000000000000000000000000000000000831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000179052905160009190829081906001600160a01b03871690617530906132ef90869061430b565b6000604051808303818686fa925050503d806000811461332b576040519150601f19603f3d011682016040523d82523d6000602084013e613330565b606091505b509150915060208151101561334b5760009350505050612355565b8180156133675750808060200190518101906133679190613ee9565b9695505050505050565b60006133c6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661345b9092919063ffffffff16565b80519091501561345657808060200190518101906133e49190613ee9565b6134565760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610542565b505050565b606061346a8484600085613474565b90505b9392505050565b6060824710156134ec5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610542565b6001600160a01b0385163b6135435760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610542565b600080866001600160a01b0316858760405161355f919061430b565b60006040518083038185875af1925050503d806000811461359c576040519150601f19603f3d011682016040523d82523d6000602084013e6135a1565b606091505b50915091506135b18282866135be565b925050505b949350505050565b606083156135cd57508161346d565b8251156135dd5782518084602001fd5b8160405162461bcd60e51b81526004016105429190614327565b6001600160a01b03811681146121a557600080fd5b8035613617816135f7565b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051610120810167ffffffffffffffff8111828210171561366f5761366f61361c565b60405290565b60405160c0810167ffffffffffffffff8111828210171561366f5761366f61361c565b60405160a0810167ffffffffffffffff8111828210171561366f5761366f61361c565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156137025761370261361c565b604052919050565b600067ffffffffffffffff8211156137245761372461361c565b5060051b60200190565b600082601f83011261373f57600080fd5b8135602061375461374f8361370a565b6136bb565b82815260059290921b8401810191818101908684111561377357600080fd5b8286015b8481101561379757803561378a816135f7565b8352918301918301613777565b509695505050505050565b600082601f8301126137b357600080fd5b813560206137c361374f8361370a565b82815260059290921b840181019181810190868411156137e257600080fd5b8286015b8481101561379757803583529183019183016137e6565b80151581146121a557600080fd5b8035613617816137fd565b6000610120828403121561382957600080fd5b61383161364b565b905061383c8261360c565b815261384a6020830161360c565b602082015260408201356040820152606082013560608201526080820135608082015260a082013560a082015261388360c0830161380b565b60c082015261389460e0830161380b565b60e08201526101006138a781840161380b565b9082015292915050565b60008060008060006101a086880312156138ca57600080fd5b85356138d5816135f7565b945060208681013567ffffffffffffffff808211156138f357600080fd5b818901915089601f83011261390757600080fd5b8135818111156139195761391961361c565b613949847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116016136bb565b8181528b8583860101111561395d57600080fd5b81858501868301376000918101909401529195506040880135918083111561398457600080fd5b6139908a848b0161372e565b955060608901359250808311156139a657600080fd5b50506139b4888289016137a2565b9250506139c48760808801613816565b90509295509295909350565b600080604083850312156139e357600080fd5b82356139ee816135f7565b915060208301356139fe816137fd565b809150509250929050565b600060208284031215613a1b57600080fd5b5035919050565b600060208284031215613a3457600080fd5b813561346d816135f7565b6000806000806101808587031215613a5657600080fd5b84359350602085013567ffffffffffffffff80821115613a7557600080fd5b613a818883890161372e565b94506040870135915080821115613a9757600080fd5b50613aa4878288016137a2565b925050613ab48660608701613816565b905092959194509250565b600080600060608486031215613ad457600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613afe57600080fd5b50508035926020909101359150565b600080600080600080600080610200898b031215613b2a57600080fd5b8835613b35816135f7565b97506020890135613b45816135f7565b9650604089013595506060890135613b5c816137fd565b94506080890135613b6c816135f7565b935060a089013567ffffffffffffffff80821115613b8957600080fd5b613b958c838d0161372e565b945060c08b0135915080821115613bab57600080fd5b50613bb88b828c016137a2565b925050613bc88a60e08b01613816565b90509295985092959890939650565b600080600060608486031215613bec57600080fd5b83359250602084013567ffffffffffffffff811115613c0a57600080fd5b613c16868287016137a2565b925050604084013590509250925092565b600081518084526020808501945080840160005b83811015613c5757815187529582019590820190600101613c3b565b509495945050505050565b6020815260006123526020830184613c27565b600060208284031215613c8757600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000610120820190508382526001600160a01b0380845116602084015260208401516040840152604084015160048110613d20577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8060608501525060608401518181511660808501528160208201511660a08501528160408201511660c0850152606081015160e08501526080810151151561010085015250509392505050565b60005b83811015613d88578181015183820152602001613d70565b83811115612d575750506000910152565b60008151808452613db1816020860160208601613d6d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b838152826020820152606060408201526000613e026060830184613d99565b95945050505050565b6001600160a01b038082511683528060208301511660208401525060408101516040830152606081015160608301526080810151608083015260a081015160a083015260c0810151151560c083015260e0810151613e6d60e084018215159052565b506101008181015180151584830152612d57565b60006101606001600160a01b0386168352806020840152613ea481840186613c27565b9150506135b66040830184613e0b565b80516004811061361757600080fd5b600060208284031215613ed557600080fd5b61235282613eb4565b8051613617816137fd565b600060208284031215613efb57600080fd5b815161346d816137fd565b6000610160858352806020840152613ea481840186613c27565b8051613617816135f7565b600060208284031215613f3d57600080fd5b815161346d816135f7565b60006101208284031215613f5b57600080fd5b613f6361364b565b613f6c83613f20565b8152613f7a60208401613f20565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152613fb360c08401613ede565b60c0820152613fc460e08401613ede565b60e0820152610100613fd7818501613ede565b908201529392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561404957614049613fe2565b500290565b600082614084577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600081830361014081121561409d57600080fd5b6140a5613675565b83516140b0816135f7565b81526140be60208501613eb4565b602082015260a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0830112156140f357600080fd5b6140fb613698565b9150604084015161410b816135f7565b8252606084015161411b816135f7565b6020830152608084015161412e816135f7565b604083015260a0840151606083015260c084015161414b816137fd565b8060808401525081604082015260e08401516060820152610100840151608082015261417a6101208501613ede565b60a0820152949350505050565b60006101806001600160a01b0380881684528087166020850152508060408401526141b481840186613c27565b915050613e026060830184613e0b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000821982111561420657614206613fe2565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361423c5761423c613fe2565b5060010190565b60008282101561425557614255613fe2565b500390565b848152610180810161426f6020830186613e0b565b836101408301526001600160a01b03831661016083015295945050505050565b60a0808252855190820181905260009060209060c0840190828901845b828110156142d15781516001600160a01b0316845292840192908401906001016142ac565b505050838103828501526142e58188613c27565b604085019690965250606083019390935250808303608090910152600082520192915050565b6000825161431d818460208701613d6d565b9190910192915050565b6020815260006123526020830184613d9956fea164736f6c634300080d000a000000000000000000000000780ce455bc835127182809bc8ff36fffe55bc4b80000000000000000000000004200000000000000000000000000000000000006
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000780ce455bc835127182809bc8ff36fffe55bc4b80000000000000000000000004200000000000000000000000000000000000006
-----Decoded View---------------
Arg [0] : provider (address): 0x780CE455bc835127182809Bc8fF36fFfE55Bc4B8
Arg [1] : weth (address): 0x4200000000000000000000000000000000000006
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000780ce455bc835127182809bc8ff36fffe55bc4b8
Arg [1] : 0000000000000000000000004200000000000000000000000000000000000006
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.