Source Code
Latest 25 from a total of 32 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw FNFT | 9336278 | 508 days ago | IN | 0 FRAX | 0.00000105 | ||||
| Deposit Addition... | 9083624 | 514 days ago | IN | 0 FRAX | 0.00000016 | ||||
| Extend FNFT Matu... | 9083480 | 514 days ago | IN | 0 FRAX | 0.00000015 | ||||
| Extend FNFT Matu... | 9035866 | 515 days ago | IN | 0 FRAX | 0.00000019 | ||||
| Deposit Addition... | 9035844 | 515 days ago | IN | 0 FRAX | 0.00000019 | ||||
| Deposit Addition... | 9035761 | 515 days ago | IN | 0 FRAX | 0.00000018 | ||||
| Deposit Addition... | 9035657 | 515 days ago | IN | 0 FRAX | 0.00000016 | ||||
| Deposit Addition... | 9023843 | 516 days ago | IN | 0 FRAX | 0.00000043 | ||||
| Deposit Addition... | 9023667 | 516 days ago | IN | 0 FRAX | 0.00000043 | ||||
| Extend FNFT Matu... | 9023548 | 516 days ago | IN | 0 FRAX | 0.00000039 | ||||
| Deposit Addition... | 9021558 | 516 days ago | IN | 0 FRAX | 0.00000045 | ||||
| Extend FNFT Matu... | 9021205 | 516 days ago | IN | 0 FRAX | 0.00000025 | ||||
| Extend FNFT Matu... | 9020918 | 516 days ago | IN | 0 FRAX | 0.00000088 | ||||
| Extend FNFT Matu... | 9007708 | 516 days ago | IN | 0 FRAX | 0.00000015 | ||||
| Deposit Addition... | 8988014 | 516 days ago | IN | 0 FRAX | 0.00000021 | ||||
| Extend FNFT Matu... | 8987456 | 516 days ago | IN | 0 FRAX | 0.0000002 | ||||
| Extend FNFT Matu... | 8987428 | 516 days ago | IN | 0 FRAX | 0.00000019 | ||||
| Deposit Addition... | 8987406 | 516 days ago | IN | 0 FRAX | 0.00000018 | ||||
| Extend FNFT Matu... | 8948772 | 517 days ago | IN | 0 FRAX | 0.00000021 | ||||
| Deposit Addition... | 8948765 | 517 days ago | IN | 0 FRAX | 0.00000021 | ||||
| Extend FNFT Matu... | 8772754 | 521 days ago | IN | 0 FRAX | 0.00000018 | ||||
| Extend FNFT Matu... | 8772737 | 521 days ago | IN | 0 FRAX | 0.00000019 | ||||
| Extend FNFT Matu... | 8772687 | 521 days ago | IN | 0 FRAX | 0.00000018 | ||||
| Deposit Addition... | 8760790 | 522 days ago | IN | 0 FRAX | 0.00000025 | ||||
| Extend FNFT Matu... | 8704966 | 523 days ago | IN | 0 FRAX | 0.00000009 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
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 (last updated v4.9.0) (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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
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));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
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");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// 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 cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library 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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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
supportsERC165InterfaceUnchecked(account, type(IERC165).interfaceId) &&
!supportsERC165InterfaceUnchecked(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) && supportsERC165InterfaceUnchecked(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] = supportsERC165InterfaceUnchecked(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 (!supportsERC165InterfaceUnchecked(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}.
*
* Some precompiled contracts will falsely indicate support for a given interface, so caution
* should be exercised when using this function.
*
* Interface identification is specified in ERC-165.
*/
function supportsERC165InterfaceUnchecked(address account, bytes4 interfaceId) internal view returns (bool) {
// prepare call
bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);
// perform static call
bool success;
uint256 returnSize;
uint256 returnValue;
assembly {
success := staticcall(30000, account, add(encodedParams, 0x20), mload(encodedParams), 0x00, 0x20)
returnSize := returndatasize()
returnValue := mload(0x00)
}
return success && returnSize >= 0x20 && returnValue > 0;
}
}// 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 "./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;
/**
* @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 "./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;
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: 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 "./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 "../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: 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;
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 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 "./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 "./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 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: 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: 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;
}
}{
"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
Contract ABI
API[{"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
60a06040526001600160401b036003553480156200001c57600080fd5b5060405162004021380380620040218339810160408190526200003f91620000e2565b816200004b3362000075565b600180546001600160a01b0319166001600160a01b0392831617815560025516608052506200011a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620000dd57600080fd5b919050565b60008060408385031215620000f657600080fd5b6200010183620000c5565b91506200011160208401620000c5565b90509250929050565b608051613ed66200014b600039600081816121560152818161234401528181612427015261257c0152613ed66000f3fe60806040526004361061018b5760003560e01c806393a9003c116100d6578063d936547e1161007f578063f2fde38b11610059578063f2fde38b14610488578063fccc19d0146104a8578063fe65acfe146104d557600080fd5b8063d936547e14610413578063ecea07d814610453578063f2465f091461046857600080fd5b8063bc2ab8ce116100b0578063bc2ab8ce146103ac578063bdb132d5146103cc578063d2619413146103df57600080fd5b806393a9003c14610342578063974ffdf714610362578063b3f9ff191461037857600080fd5b806358efe2011161013857806363e320ff1161011257806363e320ff14610296578063715018a6146102fb5780638da5cb5b1461031057600080fd5b806358efe201146102435780635a7c08f0146102635780635dcb7ab21461027657600080fd5b806322caa2341161016957806322caa234146101ee57806327c7812c1461020e57806342de99fe1461022e57600080fd5b806302e236bc14610190578063060d206e146101b657806307d7fb9a146101d8575b600080fd5b6101a361019e366004613449565b6104f3565b6040519081526020015b60405180910390f35b3480156101c257600080fd5b506101d66101d1366004613568565b610774565b005b3480156101e457600080fd5b506101a360045481565b3480156101fa57600080fd5b506101d66102093660046135a1565b6107c5565b34801561021a57600080fd5b506101d66102293660046135ba565b6109f8565b34801561023a57600080fd5b506005546101a3565b34801561024f57600080fd5b506101d661025e3660046135a1565b610a3a565b6101a36102713660046135d7565b610a47565b34801561028257600080fd5b506101a3610291366004613657565b610c0a565b3480156102a257600080fd5b506102ca7f4291039a0000000000000000000000000000000000000000000000000000000081565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101ad565b34801561030757600080fd5b506101d6611401565b34801561031c57600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101ad565b34801561034e57600080fd5b506101a361035d366004613683565b611415565b34801561036e57600080fd5b506101a360055481565b34801561038457600080fd5b506102ca7f3f8f47e80000000000000000000000000000000000000000000000000000000081565b3480156103b857600080fd5b506101d66103c73660046135a1565b611b0f565b6101a36103da3660046136a5565b611b1c565b3480156103eb57600080fd5b506102ca7f789bc3790000000000000000000000000000000000000000000000000000000081565b34801561041f57600080fd5b5061044361042e3660046135ba565b60076020526000908152604090205460ff1681565b60405190151581526020016101ad565b34801561045f57600080fd5b506004546101a3565b34801561047457600080fd5b506101d6610483366004613683565b611d1e565b34801561049457600080fd5b506101d66104a33660046135ba565b611d3e565b3480156104b457600080fd5b506104c86104c336600461376f565b611dcb565b6040516101ad91906137fa565b3480156104e157600080fd5b506001546001600160a01b031661032a565b60006104fd611e1d565b6000610507611e74565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610544573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610568919061380d565b90506105b960408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001600160a01b03881681526003604082015260006105d6611f00565b6001600160a01b031663dd6aa4cf84846040518363ffffffff1660e01b8152600401610603929190613855565b6020604051808303816000875af1158015610622573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610646919061380d565b905061067b6001600160a01b038a167f3f8f47e800000000000000000000000000000000000000000000000000000000611f63565b156106fc576040517f1c8478160000000000000000000000000000000000000000000000000000000081526001600160a01b038a1690631c847816906106c990869085908d9060040161397b565b600060405180830381600087803b1580156106e357600080fd5b505af11580156106f7573d6000803e3d6000fd5b505050505b505061070b8585838634611f7f565b80336001600160a01b031684600001516001600160a01b03167f4ae21494ad3e589ccc04df1bff8f9eb5dc6b6e11ad0ebd2dba2cf5e76eaf99e68a888860405161075793929190613a10565b60405180910390a4905061076b6001600255565b95945050505050565b61077c6128f3565b6001600160a01b0391909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6107cd611e1d565b60006107d7611f00565b6001600160a01b031663fc9ec25d836040518263ffffffff1660e01b815260040161080491815260200190565b602060405180830381865afa158015610821573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108459190613a52565b9050600381600381111561085b5761085b613826565b14806108785750600281600381111561087657610876613826565b145b6108cf5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303800000000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390fd5b6108d7611f00565b6001600160a01b031663fb68480583336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b031660248201526044016020604051808303816000875af115801561094b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096f9190613a78565b6109bd5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530353600000000000000000000000000000000000000000000000000000000604082015260600190565b604051829033907f11a58cb8f90fd3e7ea138c2320c5a4ccd5a9317f2599991807e69647c00c3c3b90600090a3506109f56001600255565b50565b610a006128f3565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610a426128f3565b600555565b6000610a51611e1d565b6000610a5b611e74565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abc919061380d565b9050610b0d60408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001604082015260208101879052610b23611f00565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401610b50929190613855565b6020604051808303816000875af1158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b93919061380d565b5050610ba28585838634611f7f565b80336001600160a01b031684600001516001600160a01b03167f17cd459969a386aa6bf71b546af420a11ab0c72b7cd33a2186c67ab60467e7ce898888604051610bee93929190613a95565b60405180910390a49050610c026001600255565b949350505050565b6000610c14611e1d565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015610c77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9b9190613aba565b6040517f522f9b37000000000000000000000000000000000000000000000000000000008152600481018790529091506000906001600160a01b0383169063522f9b379060240161012060405180830381865afa158015610d00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d249190613ad7565b90506000600160009054906101000a90046001600160a01b03166001600160a01b031663d59e296e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f9190613aba565b9050806001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e03919061380d565b8710610e535760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8160e00151610ea65760405162461bcd60e51b81526004016108c69060208082526004908201527f4530333400000000000000000000000000000000000000000000000000000000604082015260600190565b428260a001511180610eba575060a0820151155b610f085760405162461bcd60e51b81526004016108c69060208082526004908201527f4530333500000000000000000000000000000000000000000000000000000000604082015260600190565b60008511610f5a5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530373000000000000000000000000000000000000000000000000000000000604082015260600190565b60608201511580610f73575081516001600160a01b0316155b610fc15760405162461bcd60e51b81526004016108c69060208082526004908201527f4530383400000000000000000000000000000000000000000000000000000000604082015260600190565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018890526000906001600160a01b0383169063f77ee79d90602401602060405180830381865afa158015611022573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611046919061380d565b905060006110548888613ba0565b90508187146110a75760405162461bcd60e51b81526004016108c69060208082526004908201527f4530383300000000000000000000000000000000000000000000000000000000604082015260600190565b3360009081526007602052604090205460ff166111735760006103e8826004546110d19190613ba0565b6110db9190613bdd565b905080156111715761117133600160009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561113a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115e9190613aba565b87516001600160a01b031691908461294d565b505b83516001600160a01b0316156112b2576040517f3536cb6f000000000000000000000000000000000000000000000000000000008152600481018a90526000906001600160a01b03871690633536cb6f90602401602060405180830381865afa1580156111e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112089190613aba565b90506112213386516001600160a01b031690838561294d565b6001600160a01b03861663f636d9df336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018d905260448101859052606401600060405180830381600087803b15801561129857600080fd5b505af11580156112ac573d6000803e3d6000fd5b50505050505b60208401516001600160a01b03161580159061130157506020840151611301906001600160a01b03167f789bc37900000000000000000000000000000000000000000000000000000000611f63565b156113a25760208401516001600160a01b0316631d1457218a8a8a336040517fffffffff0000000000000000000000000000000000000000000000000000000060e087901b1681526004810194909452602484019290925260448301526001600160a01b03166064820152608401600060405180830381600087803b15801561138957600080fd5b505af115801561139d573d6000803e3d6000fd5b505050505b8689336001600160a01b03167f7079dc4a34ecf4aa63066fe944ac528604e4b89afbf0ceb16dae7f7ad611bfec8b6040516113df91815260200190565b60405180910390a46000955050505050506113fa6001600255565b9392505050565b6114096128f3565b61141360006129db565b565b600061141f611e1d565b6000611429611e74565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018690529091506000906001600160a01b0383169063f77ee79d90602401602060405180830381865afa15801561148d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b1919061380d565b905060006001600160a01b038316632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03909116600482015260248101899052604401602060405180830381865afa158015611528573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154c919061380d565b905042851161159f5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303200000000000000000000000000000000000000000000000000000000604082015260600190565b826001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611601919061380d565b86106116515760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8181146116a25760405162461bcd60e51b81526004016108c69060208082526004908201527f4530323200000000000000000000000000000000000000000000000000000000604082015260600190565b60006116ac612a43565b6001600160a01b031663522f9b37886040518263ffffffff1660e01b81526004016116d991815260200190565b61012060405180830381865afa1580156116f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171b9190613ad7565b90506000611727611f00565b90508160c0015180156117cc575060016040517ffc9ec25d000000000000000000000000000000000000000000000000000000008152600481018a90526001600160a01b0383169063fc9ec25d90602401602060405180830381865afa158015611795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b99190613a52565b60038111156117ca576117ca613826565b145b61181a5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530323900000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f3fe8ca060000000000000000000000000000000000000000000000000000000081526004810189905287906001600160a01b03831690633fe8ca069060240161014060405180830381865afa15801561187b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189f9190613c18565b60600151106118f25760405162461bcd60e51b81526004016108c69060208082526004908201527f4530333000000000000000000000000000000000000000000000000000000000604082015260600190565b61194160408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b60016040820181905250602081018890526040517fdd6aa4cf0000000000000000000000000000000000000000000000000000000081526001600160a01b0383169063dd6aa4cf90611999908c908590600401613855565b6020604051808303816000875af11580156119b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119dc919061380d565b5060208301516001600160a01b031615801590611a2c57506020830151611a2c906001600160a01b03167f789bc37900000000000000000000000000000000000000000000000000000000611f63565b15611ac75760208301516001600160a01b0316631355f7ab8a8a336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b158015611aae57600080fd5b505af1158015611ac2573d6000803e3d6000fd5b505050505b60405188908a9033907fa4cbdeb0d65455aa896613c3372efe5b38b40a1e76ff76b00f14a789019a969990600090a4889650505050505050611b096001600255565b92915050565b611b176128f3565b600455565b6000611b26611e1d565b6000611b30611e74565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b91919061380d565b9050611be260408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6002604082810191909152606080830180518b151560809091015280519091018b905280516001600160a01b038e811690915281518d8216602091909101529051908916910152611c31611f00565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401611c5e929190613855565b6020604051808303816000875af1158015611c7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca1919061380d565b5050611cb08585838634611f7f565b80336001600160a01b031684600001516001600160a01b03167f80ed7d5bf65bfce0365fdac589476923914d111260d5736d9bef132bdb037b8f8c8a8989604051611cfe9493929190613d16565b60405180910390a49050611d126001600255565b98975050505050505050565b611d26611e1d565b611d308282612aa6565b611d3a6001600255565b5050565b611d466128f3565b6001600160a01b038116611dc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108c6565b6109f5816129db565b6060611dd5611e1d565b60405162461bcd60e51b815260206004820152600760248201527f544d505f42524b0000000000000000000000000000000000000000000000000060448201526064016108c6565b6002805403611e6e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c6565b60028055565b600154604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e9160048083019260209291908290030181865afa158015611ed7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efb9190613aba565b905090565b600154604080517f035d0c6900000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163035d0c699160048083019260209291908290030181865afa158015611ed7573d6000803e3d6000fd5b6000611f6e83612e5c565b80156113fa57506113fa8383612ec0565b60008085600081518110611f9557611f95613d53565b602002602001015190506000875190506000875190508082146120205760405162461bcd60e51b815260206004820152602b60248201527f726563697069656e747320616e64207175616e7469746965732061727261797360448201527f206d757374206d6174636800000000000000000000000000000000000000000060648201526084016108c6565b816001149350836120715760015b8181101561206f5788818151811061204857612048613d53565b60200260200101518461205b9190613d82565b93508061206781613d9a565b91505061202e565b505b600083116120c35760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b5050600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015612128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214c9190613aba565b905083156121c9577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b1580156121af57600080fd5b505af11580156121c3573d6000803e3d6000fd5b50505050505b3360009081526007602052604090205460ff1661257457600554156124965760055484101561223c5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303500000000000000000000000000000000000000000000000000000000604082015260600190565b600154604080517ff9f5e1dd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163f9f5e1dd9160048083019260209291908290030181865afa15801561229f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c39190613aba565b6001600160a01b03811660009081526006602052604090205490915060ff166123f4576040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af115801561238d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b19190613a78565b506001600160a01b038116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b6005546040517f2316ad320000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482019290925290821690632316ad3290604401600060405180830381600087803b15801561247c57600080fd5b505af1158015612490573d6000803e3d6000fd5b50505050505b6040850151156125645760006103e88660400151846004546124b89190613ba0565b6124c29190613ba0565b6124cc9190613bdd565b905080156125625761256233600160009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561252b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254f9190613aba565b88516001600160a01b031691908461294d565b505b6005546125719085613dd2565b93505b8315612657577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031685600001516001600160a01b0316146126015760405162461bcd60e51b81526004016108c69060208082526004908201527f4530353300000000000000000000000000000000000000000000000000000000604082015260600190565b84604001518410156126575760405162461bcd60e51b81526004016108c69060208082526004908201527f4530313500000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f8717293d0000000000000000000000000000000000000000000000000000000081526001600160a01b03821690638717293d906126a2908990899087903390600401613de9565b600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505086516001600160a01b03161591506127979050576040517f3536cb6f000000000000000000000000000000000000000000000000000000008152600481018790526000906001600160a01b03831690633536cb6f90602401602060405180830381865afa158015612747573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276b9190613aba565b905061279533828860400151866127829190613ba0565b89516001600160a01b031692919061294d565b505b8261280c576127a4611e74565b6001600160a01b0316639a46cd5d898989866040518563ffffffff1660e01b81526004016127d59493929190613e1e565b600060405180830381600087803b1580156127ef57600080fd5b505af1158015612803573d6000803e3d6000fd5b505050506128e9565b612814611e74565b6001600160a01b031663731133e98960008151811061283557612835613d53565b6020026020010151888a60008151811061285157612851613d53565b60209081029190910101516040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b03909316600484015260248301919091526044820152608060648201526000608482015260a401600060405180830381600087803b1580156128d057600080fd5b505af11580156128e4573d6000803e3d6000fd5b505050505b5050505050505050565b6000546001600160a01b031633146114135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c6565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526129d5908590612f8f565b50505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015611ed7573d6000803e3d6000fd5b600154604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e9160048083019260209291908290030181865afa158015612b09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b2d9190613aba565b905060008211612b815760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b6001600160a01b03811663f5298aca336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810186905260448101859052606401600060405180830381600087803b158015612bf857600080fd5b505af1158015612c0c573d6000803e3d6000fd5b50505050612c18611f00565b6001600160a01b031663fb68480584336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b031660248201526044016020604051808303816000875af1158015612c8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb09190613a78565b612cfe5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530383200000000000000000000000000000000000000000000000000000000604082015260600190565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015612d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d859190613aba565b90506001600160a01b038116635d61210d8585336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b158015612e0057600080fd5b505af1158015612e14573d6000803e3d6000fd5b505050508284612e213390565b6001600160a01b03167fbdf03104edebd5ecb0debd1ecd122dc6b2b8069b2c2618146c0afe468f53ee7160405160405180910390a450505050565b6000612e88827f01ffc9a700000000000000000000000000000000000000000000000000000000612ec0565b8015611b095750612eb9827fffffffff00000000000000000000000000000000000000000000000000000000612ec0565b1592915050565b604080517fffffffff000000000000000000000000000000000000000000000000000000008316602480830191909152825180830390910181526044909101909152602080820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000178152825160009392849283928392918391908a617530fa92503d91506000519050828015612f78575060208210155b8015612f845750600081115b979650505050505050565b6000612fe4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661307c9092919063ffffffff16565b90508051600014806130055750808060200190518101906130059190613a78565b6130775760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108c6565b505050565b6060610c02848460008585600080866001600160a01b031685876040516130a39190613e9a565b60006040518083038185875af1925050503d80600081146130e0576040519150601f19603f3d011682016040523d82523d6000602084013e6130e5565b606091505b5091509150612f848783838760608315613160578251600003613159576001600160a01b0385163b6131595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108c6565b5081610c02565b610c0283838151156131755781518083602001fd5b8060405162461bcd60e51b81526004016108c69190613eb6565b6001600160a01b03811681146109f557600080fd5b80356131af8161318f565b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051610120810167ffffffffffffffff81118282101715613207576132076131b4565b60405290565b60405160c0810167ffffffffffffffff81118282101715613207576132076131b4565b60405160a0810167ffffffffffffffff81118282101715613207576132076131b4565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561329a5761329a6131b4565b604052919050565b600067ffffffffffffffff8211156132bc576132bc6131b4565b5060051b60200190565b600082601f8301126132d757600080fd5b813560206132ec6132e7836132a2565b613253565b82815260059290921b8401810191818101908684111561330b57600080fd5b8286015b8481101561332f5780356133228161318f565b835291830191830161330f565b509695505050505050565b600082601f83011261334b57600080fd5b8135602061335b6132e7836132a2565b82815260059290921b8401810191818101908684111561337a57600080fd5b8286015b8481101561332f578035835291830191830161337e565b80151581146109f557600080fd5b80356131af81613395565b600061012082840312156133c157600080fd5b6133c96131e3565b90506133d4826131a4565b81526133e2602083016131a4565b602082015260408201356040820152606082013560608201526080820135608082015260a082013560a082015261341b60c083016133a3565b60c082015261342c60e083016133a3565b60e082015261010061343f8184016133a3565b9082015292915050565b60008060008060006101a0868803121561346257600080fd5b853561346d8161318f565b945060208681013567ffffffffffffffff8082111561348b57600080fd5b818901915089601f83011261349f57600080fd5b8135818111156134b1576134b16131b4565b6134e1847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613253565b8181528b858386010111156134f557600080fd5b81858501868301376000918101909401529195506040880135918083111561351c57600080fd5b6135288a848b016132c6565b9550606089013592508083111561353e57600080fd5b505061354c8882890161333a565b92505061355c87608088016133ae565b90509295509295909350565b6000806040838503121561357b57600080fd5b82356135868161318f565b9150602083013561359681613395565b809150509250929050565b6000602082840312156135b357600080fd5b5035919050565b6000602082840312156135cc57600080fd5b81356113fa8161318f565b60008060008061018085870312156135ee57600080fd5b84359350602085013567ffffffffffffffff8082111561360d57600080fd5b613619888389016132c6565b9450604087013591508082111561362f57600080fd5b5061363c8782880161333a565b92505061364c86606087016133ae565b905092959194509250565b60008060006060848603121561366c57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561369657600080fd5b50508035926020909101359150565b600080600080600080600080610200898b0312156136c257600080fd5b88356136cd8161318f565b975060208901356136dd8161318f565b96506040890135955060608901356136f481613395565b945060808901356137048161318f565b935060a089013567ffffffffffffffff8082111561372157600080fd5b61372d8c838d016132c6565b945060c08b013591508082111561374357600080fd5b506137508b828c0161333a565b9250506137608a60e08b016133ae565b90509295985092959890939650565b60008060006060848603121561378457600080fd5b83359250602084013567ffffffffffffffff8111156137a257600080fd5b6137ae8682870161333a565b925050604084013590509250925092565b600081518084526020808501945080840160005b838110156137ef578151875295820195908201906001016137d3565b509495945050505050565b6020815260006113fa60208301846137bf565b60006020828403121561381f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000610120820190508382526001600160a01b03808451166020840152602084015160408401526040840151600481106138b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8060608501525060608401518181511660808501528160208201511660a08501528160408201511660c0850152606081015160e08501526080810151151561010085015250509392505050565b60005b83811015613920578181015183820152602001613908565b838111156129d55750506000910152565b60008151808452613949816020860160208601613905565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b83815282602082015260606040820152600061076b6060830184613931565b6001600160a01b038082511683528060208301511660208401525060408101516040830152606081015160608301526080810151608083015260a081015160a083015260c0810151151560c083015260e08101516139fc60e084018215159052565b5061010081810151801515848301526129d5565b60006101606001600160a01b0386168352806020840152613a33818401866137bf565b915050610c02604083018461399a565b8051600481106131af57600080fd5b600060208284031215613a6457600080fd5b6113fa82613a43565b80516131af81613395565b600060208284031215613a8a57600080fd5b81516113fa81613395565b6000610160858352806020840152613a33818401866137bf565b80516131af8161318f565b600060208284031215613acc57600080fd5b81516113fa8161318f565b60006101208284031215613aea57600080fd5b613af26131e3565b613afb83613aaf565b8152613b0960208401613aaf565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152613b4260c08401613a6d565b60c0820152613b5360e08401613a6d565b60e0820152610100613b66818501613a6d565b908201529392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bd857613bd8613b71565b500290565b600082613c13577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000818303610140811215613c2c57600080fd5b613c3461320d565b8351613c3f8161318f565b8152613c4d60208501613a43565b602082015260a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc083011215613c8257600080fd5b613c8a613230565b91506040840151613c9a8161318f565b82526060840151613caa8161318f565b60208301526080840151613cbd8161318f565b604083015260a0840151606083015260c0840151613cda81613395565b8060808401525081604082015260e084015160608201526101008401516080820152613d096101208501613a6d565b60a0820152949350505050565b60006101806001600160a01b038088168452808716602085015250806040840152613d43818401866137bf565b91505061076b606083018461399a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008219821115613d9557613d95613b71565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dcb57613dcb613b71565b5060010190565b600082821015613de457613de4613b71565b500390565b8481526101808101613dfe602083018661399a565b836101408301526001600160a01b03831661016083015295945050505050565b60a0808252855190820181905260009060209060c0840190828901845b82811015613e605781516001600160a01b031684529284019290840190600101613e3b565b50505083810382850152613e7481886137bf565b604085019690965250606083019390935250808303608090910152600082520192915050565b60008251613eac818460208701613905565b9190910192915050565b6020815260006113fa602083018461393156fea164736f6c634300080d000a000000000000000000000000a68d2a210c29437a6fe5d5cb65f961858e20f3b7000000000000000000000000fc00000000000000000000000000000000000006
Deployed Bytecode
0x60806040526004361061018b5760003560e01c806393a9003c116100d6578063d936547e1161007f578063f2fde38b11610059578063f2fde38b14610488578063fccc19d0146104a8578063fe65acfe146104d557600080fd5b8063d936547e14610413578063ecea07d814610453578063f2465f091461046857600080fd5b8063bc2ab8ce116100b0578063bc2ab8ce146103ac578063bdb132d5146103cc578063d2619413146103df57600080fd5b806393a9003c14610342578063974ffdf714610362578063b3f9ff191461037857600080fd5b806358efe2011161013857806363e320ff1161011257806363e320ff14610296578063715018a6146102fb5780638da5cb5b1461031057600080fd5b806358efe201146102435780635a7c08f0146102635780635dcb7ab21461027657600080fd5b806322caa2341161016957806322caa234146101ee57806327c7812c1461020e57806342de99fe1461022e57600080fd5b806302e236bc14610190578063060d206e146101b657806307d7fb9a146101d8575b600080fd5b6101a361019e366004613449565b6104f3565b6040519081526020015b60405180910390f35b3480156101c257600080fd5b506101d66101d1366004613568565b610774565b005b3480156101e457600080fd5b506101a360045481565b3480156101fa57600080fd5b506101d66102093660046135a1565b6107c5565b34801561021a57600080fd5b506101d66102293660046135ba565b6109f8565b34801561023a57600080fd5b506005546101a3565b34801561024f57600080fd5b506101d661025e3660046135a1565b610a3a565b6101a36102713660046135d7565b610a47565b34801561028257600080fd5b506101a3610291366004613657565b610c0a565b3480156102a257600080fd5b506102ca7f4291039a0000000000000000000000000000000000000000000000000000000081565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101ad565b34801561030757600080fd5b506101d6611401565b34801561031c57600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101ad565b34801561034e57600080fd5b506101a361035d366004613683565b611415565b34801561036e57600080fd5b506101a360055481565b34801561038457600080fd5b506102ca7f3f8f47e80000000000000000000000000000000000000000000000000000000081565b3480156103b857600080fd5b506101d66103c73660046135a1565b611b0f565b6101a36103da3660046136a5565b611b1c565b3480156103eb57600080fd5b506102ca7f789bc3790000000000000000000000000000000000000000000000000000000081565b34801561041f57600080fd5b5061044361042e3660046135ba565b60076020526000908152604090205460ff1681565b60405190151581526020016101ad565b34801561045f57600080fd5b506004546101a3565b34801561047457600080fd5b506101d6610483366004613683565b611d1e565b34801561049457600080fd5b506101d66104a33660046135ba565b611d3e565b3480156104b457600080fd5b506104c86104c336600461376f565b611dcb565b6040516101ad91906137fa565b3480156104e157600080fd5b506001546001600160a01b031661032a565b60006104fd611e1d565b6000610507611e74565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610544573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610568919061380d565b90506105b960408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001600160a01b03881681526003604082015260006105d6611f00565b6001600160a01b031663dd6aa4cf84846040518363ffffffff1660e01b8152600401610603929190613855565b6020604051808303816000875af1158015610622573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610646919061380d565b905061067b6001600160a01b038a167f3f8f47e800000000000000000000000000000000000000000000000000000000611f63565b156106fc576040517f1c8478160000000000000000000000000000000000000000000000000000000081526001600160a01b038a1690631c847816906106c990869085908d9060040161397b565b600060405180830381600087803b1580156106e357600080fd5b505af11580156106f7573d6000803e3d6000fd5b505050505b505061070b8585838634611f7f565b80336001600160a01b031684600001516001600160a01b03167f4ae21494ad3e589ccc04df1bff8f9eb5dc6b6e11ad0ebd2dba2cf5e76eaf99e68a888860405161075793929190613a10565b60405180910390a4905061076b6001600255565b95945050505050565b61077c6128f3565b6001600160a01b0391909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6107cd611e1d565b60006107d7611f00565b6001600160a01b031663fc9ec25d836040518263ffffffff1660e01b815260040161080491815260200190565b602060405180830381865afa158015610821573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108459190613a52565b9050600381600381111561085b5761085b613826565b14806108785750600281600381111561087657610876613826565b145b6108cf5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303800000000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390fd5b6108d7611f00565b6001600160a01b031663fb68480583336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b031660248201526044016020604051808303816000875af115801561094b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096f9190613a78565b6109bd5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530353600000000000000000000000000000000000000000000000000000000604082015260600190565b604051829033907f11a58cb8f90fd3e7ea138c2320c5a4ccd5a9317f2599991807e69647c00c3c3b90600090a3506109f56001600255565b50565b610a006128f3565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610a426128f3565b600555565b6000610a51611e1d565b6000610a5b611e74565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abc919061380d565b9050610b0d60408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001604082015260208101879052610b23611f00565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401610b50929190613855565b6020604051808303816000875af1158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b93919061380d565b5050610ba28585838634611f7f565b80336001600160a01b031684600001516001600160a01b03167f17cd459969a386aa6bf71b546af420a11ab0c72b7cd33a2186c67ab60467e7ce898888604051610bee93929190613a95565b60405180910390a49050610c026001600255565b949350505050565b6000610c14611e1d565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015610c77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9b9190613aba565b6040517f522f9b37000000000000000000000000000000000000000000000000000000008152600481018790529091506000906001600160a01b0383169063522f9b379060240161012060405180830381865afa158015610d00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d249190613ad7565b90506000600160009054906101000a90046001600160a01b03166001600160a01b031663d59e296e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f9190613aba565b9050806001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e03919061380d565b8710610e535760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8160e00151610ea65760405162461bcd60e51b81526004016108c69060208082526004908201527f4530333400000000000000000000000000000000000000000000000000000000604082015260600190565b428260a001511180610eba575060a0820151155b610f085760405162461bcd60e51b81526004016108c69060208082526004908201527f4530333500000000000000000000000000000000000000000000000000000000604082015260600190565b60008511610f5a5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530373000000000000000000000000000000000000000000000000000000000604082015260600190565b60608201511580610f73575081516001600160a01b0316155b610fc15760405162461bcd60e51b81526004016108c69060208082526004908201527f4530383400000000000000000000000000000000000000000000000000000000604082015260600190565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018890526000906001600160a01b0383169063f77ee79d90602401602060405180830381865afa158015611022573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611046919061380d565b905060006110548888613ba0565b90508187146110a75760405162461bcd60e51b81526004016108c69060208082526004908201527f4530383300000000000000000000000000000000000000000000000000000000604082015260600190565b3360009081526007602052604090205460ff166111735760006103e8826004546110d19190613ba0565b6110db9190613bdd565b905080156111715761117133600160009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561113a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115e9190613aba565b87516001600160a01b031691908461294d565b505b83516001600160a01b0316156112b2576040517f3536cb6f000000000000000000000000000000000000000000000000000000008152600481018a90526000906001600160a01b03871690633536cb6f90602401602060405180830381865afa1580156111e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112089190613aba565b90506112213386516001600160a01b031690838561294d565b6001600160a01b03861663f636d9df336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018d905260448101859052606401600060405180830381600087803b15801561129857600080fd5b505af11580156112ac573d6000803e3d6000fd5b50505050505b60208401516001600160a01b03161580159061130157506020840151611301906001600160a01b03167f789bc37900000000000000000000000000000000000000000000000000000000611f63565b156113a25760208401516001600160a01b0316631d1457218a8a8a336040517fffffffff0000000000000000000000000000000000000000000000000000000060e087901b1681526004810194909452602484019290925260448301526001600160a01b03166064820152608401600060405180830381600087803b15801561138957600080fd5b505af115801561139d573d6000803e3d6000fd5b505050505b8689336001600160a01b03167f7079dc4a34ecf4aa63066fe944ac528604e4b89afbf0ceb16dae7f7ad611bfec8b6040516113df91815260200190565b60405180910390a46000955050505050506113fa6001600255565b9392505050565b6114096128f3565b61141360006129db565b565b600061141f611e1d565b6000611429611e74565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018690529091506000906001600160a01b0383169063f77ee79d90602401602060405180830381865afa15801561148d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b1919061380d565b905060006001600160a01b038316632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03909116600482015260248101899052604401602060405180830381865afa158015611528573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154c919061380d565b905042851161159f5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303200000000000000000000000000000000000000000000000000000000604082015260600190565b826001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611601919061380d565b86106116515760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8181146116a25760405162461bcd60e51b81526004016108c69060208082526004908201527f4530323200000000000000000000000000000000000000000000000000000000604082015260600190565b60006116ac612a43565b6001600160a01b031663522f9b37886040518263ffffffff1660e01b81526004016116d991815260200190565b61012060405180830381865afa1580156116f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171b9190613ad7565b90506000611727611f00565b90508160c0015180156117cc575060016040517ffc9ec25d000000000000000000000000000000000000000000000000000000008152600481018a90526001600160a01b0383169063fc9ec25d90602401602060405180830381865afa158015611795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b99190613a52565b60038111156117ca576117ca613826565b145b61181a5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530323900000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f3fe8ca060000000000000000000000000000000000000000000000000000000081526004810189905287906001600160a01b03831690633fe8ca069060240161014060405180830381865afa15801561187b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189f9190613c18565b60600151106118f25760405162461bcd60e51b81526004016108c69060208082526004908201527f4530333000000000000000000000000000000000000000000000000000000000604082015260600190565b61194160408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b60016040820181905250602081018890526040517fdd6aa4cf0000000000000000000000000000000000000000000000000000000081526001600160a01b0383169063dd6aa4cf90611999908c908590600401613855565b6020604051808303816000875af11580156119b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119dc919061380d565b5060208301516001600160a01b031615801590611a2c57506020830151611a2c906001600160a01b03167f789bc37900000000000000000000000000000000000000000000000000000000611f63565b15611ac75760208301516001600160a01b0316631355f7ab8a8a336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b158015611aae57600080fd5b505af1158015611ac2573d6000803e3d6000fd5b505050505b60405188908a9033907fa4cbdeb0d65455aa896613c3372efe5b38b40a1e76ff76b00f14a789019a969990600090a4889650505050505050611b096001600255565b92915050565b611b176128f3565b600455565b6000611b26611e1d565b6000611b30611e74565b6001600160a01b031663bc9683266040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b91919061380d565b9050611be260408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6002604082810191909152606080830180518b151560809091015280519091018b905280516001600160a01b038e811690915281518d8216602091909101529051908916910152611c31611f00565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401611c5e929190613855565b6020604051808303816000875af1158015611c7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca1919061380d565b5050611cb08585838634611f7f565b80336001600160a01b031684600001516001600160a01b03167f80ed7d5bf65bfce0365fdac589476923914d111260d5736d9bef132bdb037b8f8c8a8989604051611cfe9493929190613d16565b60405180910390a49050611d126001600255565b98975050505050505050565b611d26611e1d565b611d308282612aa6565b611d3a6001600255565b5050565b611d466128f3565b6001600160a01b038116611dc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108c6565b6109f5816129db565b6060611dd5611e1d565b60405162461bcd60e51b815260206004820152600760248201527f544d505f42524b0000000000000000000000000000000000000000000000000060448201526064016108c6565b6002805403611e6e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c6565b60028055565b600154604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e9160048083019260209291908290030181865afa158015611ed7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efb9190613aba565b905090565b600154604080517f035d0c6900000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163035d0c699160048083019260209291908290030181865afa158015611ed7573d6000803e3d6000fd5b6000611f6e83612e5c565b80156113fa57506113fa8383612ec0565b60008085600081518110611f9557611f95613d53565b602002602001015190506000875190506000875190508082146120205760405162461bcd60e51b815260206004820152602b60248201527f726563697069656e747320616e64207175616e7469746965732061727261797360448201527f206d757374206d6174636800000000000000000000000000000000000000000060648201526084016108c6565b816001149350836120715760015b8181101561206f5788818151811061204857612048613d53565b60200260200101518461205b9190613d82565b93508061206781613d9a565b91505061202e565b505b600083116120c35760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b5050600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015612128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214c9190613aba565b905083156121c9577f000000000000000000000000fc000000000000000000000000000000000000066001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b1580156121af57600080fd5b505af11580156121c3573d6000803e3d6000fd5b50505050505b3360009081526007602052604090205460ff1661257457600554156124965760055484101561223c5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303500000000000000000000000000000000000000000000000000000000604082015260600190565b600154604080517ff9f5e1dd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163f9f5e1dd9160048083019260209291908290030181865afa15801561229f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c39190613aba565b6001600160a01b03811660009081526006602052604090205490915060ff166123f4576040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301527f000000000000000000000000fc00000000000000000000000000000000000006169063095ea7b3906044016020604051808303816000875af115801561238d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b19190613a78565b506001600160a01b038116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b6005546040517f2316ad320000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000fc0000000000000000000000000000000000000681166004830152602482019290925290821690632316ad3290604401600060405180830381600087803b15801561247c57600080fd5b505af1158015612490573d6000803e3d6000fd5b50505050505b6040850151156125645760006103e88660400151846004546124b89190613ba0565b6124c29190613ba0565b6124cc9190613bdd565b905080156125625761256233600160009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561252b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254f9190613aba565b88516001600160a01b031691908461294d565b505b6005546125719085613dd2565b93505b8315612657577f000000000000000000000000fc000000000000000000000000000000000000066001600160a01b031685600001516001600160a01b0316146126015760405162461bcd60e51b81526004016108c69060208082526004908201527f4530353300000000000000000000000000000000000000000000000000000000604082015260600190565b84604001518410156126575760405162461bcd60e51b81526004016108c69060208082526004908201527f4530313500000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f8717293d0000000000000000000000000000000000000000000000000000000081526001600160a01b03821690638717293d906126a2908990899087903390600401613de9565b600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505086516001600160a01b03161591506127979050576040517f3536cb6f000000000000000000000000000000000000000000000000000000008152600481018790526000906001600160a01b03831690633536cb6f90602401602060405180830381865afa158015612747573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276b9190613aba565b905061279533828860400151866127829190613ba0565b89516001600160a01b031692919061294d565b505b8261280c576127a4611e74565b6001600160a01b0316639a46cd5d898989866040518563ffffffff1660e01b81526004016127d59493929190613e1e565b600060405180830381600087803b1580156127ef57600080fd5b505af1158015612803573d6000803e3d6000fd5b505050506128e9565b612814611e74565b6001600160a01b031663731133e98960008151811061283557612835613d53565b6020026020010151888a60008151811061285157612851613d53565b60209081029190910101516040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b03909316600484015260248301919091526044820152608060648201526000608482015260a401600060405180830381600087803b1580156128d057600080fd5b505af11580156128e4573d6000803e3d6000fd5b505050505b5050505050505050565b6000546001600160a01b031633146114135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c6565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526129d5908590612f8f565b50505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015611ed7573d6000803e3d6000fd5b600154604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e9160048083019260209291908290030181865afa158015612b09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b2d9190613aba565b905060008211612b815760405162461bcd60e51b81526004016108c69060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b6001600160a01b03811663f5298aca336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810186905260448101859052606401600060405180830381600087803b158015612bf857600080fd5b505af1158015612c0c573d6000803e3d6000fd5b50505050612c18611f00565b6001600160a01b031663fb68480584336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b031660248201526044016020604051808303816000875af1158015612c8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb09190613a78565b612cfe5760405162461bcd60e51b81526004016108c69060208082526004908201527f4530383200000000000000000000000000000000000000000000000000000000604082015260600190565b600154604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af9160048083019260209291908290030181865afa158015612d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d859190613aba565b90506001600160a01b038116635d61210d8585336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b158015612e0057600080fd5b505af1158015612e14573d6000803e3d6000fd5b505050508284612e213390565b6001600160a01b03167fbdf03104edebd5ecb0debd1ecd122dc6b2b8069b2c2618146c0afe468f53ee7160405160405180910390a450505050565b6000612e88827f01ffc9a700000000000000000000000000000000000000000000000000000000612ec0565b8015611b095750612eb9827fffffffff00000000000000000000000000000000000000000000000000000000612ec0565b1592915050565b604080517fffffffff000000000000000000000000000000000000000000000000000000008316602480830191909152825180830390910181526044909101909152602080820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000178152825160009392849283928392918391908a617530fa92503d91506000519050828015612f78575060208210155b8015612f845750600081115b979650505050505050565b6000612fe4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661307c9092919063ffffffff16565b90508051600014806130055750808060200190518101906130059190613a78565b6130775760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108c6565b505050565b6060610c02848460008585600080866001600160a01b031685876040516130a39190613e9a565b60006040518083038185875af1925050503d80600081146130e0576040519150601f19603f3d011682016040523d82523d6000602084013e6130e5565b606091505b5091509150612f848783838760608315613160578251600003613159576001600160a01b0385163b6131595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108c6565b5081610c02565b610c0283838151156131755781518083602001fd5b8060405162461bcd60e51b81526004016108c69190613eb6565b6001600160a01b03811681146109f557600080fd5b80356131af8161318f565b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051610120810167ffffffffffffffff81118282101715613207576132076131b4565b60405290565b60405160c0810167ffffffffffffffff81118282101715613207576132076131b4565b60405160a0810167ffffffffffffffff81118282101715613207576132076131b4565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561329a5761329a6131b4565b604052919050565b600067ffffffffffffffff8211156132bc576132bc6131b4565b5060051b60200190565b600082601f8301126132d757600080fd5b813560206132ec6132e7836132a2565b613253565b82815260059290921b8401810191818101908684111561330b57600080fd5b8286015b8481101561332f5780356133228161318f565b835291830191830161330f565b509695505050505050565b600082601f83011261334b57600080fd5b8135602061335b6132e7836132a2565b82815260059290921b8401810191818101908684111561337a57600080fd5b8286015b8481101561332f578035835291830191830161337e565b80151581146109f557600080fd5b80356131af81613395565b600061012082840312156133c157600080fd5b6133c96131e3565b90506133d4826131a4565b81526133e2602083016131a4565b602082015260408201356040820152606082013560608201526080820135608082015260a082013560a082015261341b60c083016133a3565b60c082015261342c60e083016133a3565b60e082015261010061343f8184016133a3565b9082015292915050565b60008060008060006101a0868803121561346257600080fd5b853561346d8161318f565b945060208681013567ffffffffffffffff8082111561348b57600080fd5b818901915089601f83011261349f57600080fd5b8135818111156134b1576134b16131b4565b6134e1847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613253565b8181528b858386010111156134f557600080fd5b81858501868301376000918101909401529195506040880135918083111561351c57600080fd5b6135288a848b016132c6565b9550606089013592508083111561353e57600080fd5b505061354c8882890161333a565b92505061355c87608088016133ae565b90509295509295909350565b6000806040838503121561357b57600080fd5b82356135868161318f565b9150602083013561359681613395565b809150509250929050565b6000602082840312156135b357600080fd5b5035919050565b6000602082840312156135cc57600080fd5b81356113fa8161318f565b60008060008061018085870312156135ee57600080fd5b84359350602085013567ffffffffffffffff8082111561360d57600080fd5b613619888389016132c6565b9450604087013591508082111561362f57600080fd5b5061363c8782880161333a565b92505061364c86606087016133ae565b905092959194509250565b60008060006060848603121561366c57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561369657600080fd5b50508035926020909101359150565b600080600080600080600080610200898b0312156136c257600080fd5b88356136cd8161318f565b975060208901356136dd8161318f565b96506040890135955060608901356136f481613395565b945060808901356137048161318f565b935060a089013567ffffffffffffffff8082111561372157600080fd5b61372d8c838d016132c6565b945060c08b013591508082111561374357600080fd5b506137508b828c0161333a565b9250506137608a60e08b016133ae565b90509295985092959890939650565b60008060006060848603121561378457600080fd5b83359250602084013567ffffffffffffffff8111156137a257600080fd5b6137ae8682870161333a565b925050604084013590509250925092565b600081518084526020808501945080840160005b838110156137ef578151875295820195908201906001016137d3565b509495945050505050565b6020815260006113fa60208301846137bf565b60006020828403121561381f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000610120820190508382526001600160a01b03808451166020840152602084015160408401526040840151600481106138b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8060608501525060608401518181511660808501528160208201511660a08501528160408201511660c0850152606081015160e08501526080810151151561010085015250509392505050565b60005b83811015613920578181015183820152602001613908565b838111156129d55750506000910152565b60008151808452613949816020860160208601613905565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b83815282602082015260606040820152600061076b6060830184613931565b6001600160a01b038082511683528060208301511660208401525060408101516040830152606081015160608301526080810151608083015260a081015160a083015260c0810151151560c083015260e08101516139fc60e084018215159052565b5061010081810151801515848301526129d5565b60006101606001600160a01b0386168352806020840152613a33818401866137bf565b915050610c02604083018461399a565b8051600481106131af57600080fd5b600060208284031215613a6457600080fd5b6113fa82613a43565b80516131af81613395565b600060208284031215613a8a57600080fd5b81516113fa81613395565b6000610160858352806020840152613a33818401866137bf565b80516131af8161318f565b600060208284031215613acc57600080fd5b81516113fa8161318f565b60006101208284031215613aea57600080fd5b613af26131e3565b613afb83613aaf565b8152613b0960208401613aaf565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152613b4260c08401613a6d565b60c0820152613b5360e08401613a6d565b60e0820152610100613b66818501613a6d565b908201529392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bd857613bd8613b71565b500290565b600082613c13577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000818303610140811215613c2c57600080fd5b613c3461320d565b8351613c3f8161318f565b8152613c4d60208501613a43565b602082015260a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc083011215613c8257600080fd5b613c8a613230565b91506040840151613c9a8161318f565b82526060840151613caa8161318f565b60208301526080840151613cbd8161318f565b604083015260a0840151606083015260c0840151613cda81613395565b8060808401525081604082015260e084015160608201526101008401516080820152613d096101208501613a6d565b60a0820152949350505050565b60006101806001600160a01b038088168452808716602085015250806040840152613d43818401866137bf565b91505061076b606083018461399a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008219821115613d9557613d95613b71565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dcb57613dcb613b71565b5060010190565b600082821015613de457613de4613b71565b500390565b8481526101808101613dfe602083018661399a565b836101408301526001600160a01b03831661016083015295945050505050565b60a0808252855190820181905260009060209060c0840190828901845b82811015613e605781516001600160a01b031684529284019290840190600101613e3b565b50505083810382850152613e7481886137bf565b604085019690965250606083019390935250808303608090910152600082520192915050565b60008251613eac818460208701613905565b9190910192915050565b6020815260006113fa602083018461393156fea164736f6c634300080d000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a68d2a210c29437a6fe5d5cb65f961858e20f3b7000000000000000000000000fc00000000000000000000000000000000000006
-----Decoded View---------------
Arg [0] : provider (address): 0xa68D2a210c29437a6fE5d5CB65f961858e20f3B7
Arg [1] : weth (address): 0xFC00000000000000000000000000000000000006
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a68d2a210c29437a6fe5d5cb65f961858e20f3b7
Arg [1] : 000000000000000000000000fc00000000000000000000000000000000000006
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in FRAX
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.