Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60a08060 | 17117429 | 578 days ago | IN | 0 ETH | 0.26835381 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Ethereum_SpokePool
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "./SpokePool.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; /** * @notice Ethereum L1 specific SpokePool. Used on Ethereum L1 to facilitate L2->L1 transfers. */ contract Ethereum_SpokePool is SpokePool, OwnableUpgradeable { using SafeERC20Upgradeable for IERC20Upgradeable; /** * @notice Construct the Ethereum SpokePool. * @dev crossDomainAdmin is unused on this contract. * @param _initialDepositId Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate * relay hash collisions. * @param _hubPool Hub pool address to set. Can be changed by admin. * @param _wethAddress Weth address for this network to set. */ function initialize( uint32 _initialDepositId, address _hubPool, address _wethAddress ) public initializer { __Ownable_init(); __SpokePool_init(_initialDepositId, _hubPool, _hubPool, _wethAddress); } /************************************** * INTERNAL FUNCTIONS * **************************************/ function _bridgeTokensToHubPool(RelayerRefundLeaf memory relayerRefundLeaf) internal override { IERC20Upgradeable(relayerRefundLeaf.l2TokenAddress).safeTransfer(hubPool, relayerRefundLeaf.amountToReturn); } // The SpokePool deployed to the same network as the HubPool must be owned by the HubPool. // A core assumption of this contract system is that the HubPool is deployed on Ethereum. function _requireAdminSender() internal override onlyOwner {} }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "./MerkleLib.sol"; import "./external/interfaces/WETH9Interface.sol"; import "./interfaces/SpokePoolInterface.sol"; import "./upgradeable/MultiCallerUpgradeable.sol"; import "./upgradeable/EIP712CrossChainUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts/utils/math/SignedMath.sol"; // This interface is expected to be implemented by any contract that expects to recieve messages from the SpokePool. interface AcrossMessageHandler { function handleAcrossMessage( address tokenSent, uint256 amount, bool fillCompleted, address relayer, bytes memory message ) external; } /** * @title SpokePool * @notice Base contract deployed on source and destination chains enabling depositors to transfer assets from source to * destination. Deposit orders are fulfilled by off-chain relayers who also interact with this contract. Deposited * tokens are locked on the source chain and relayers send the recipient the desired token currency and amount * on the destination chain. Locked source chain tokens are later sent over the canonical token bridge to L1 HubPool. * Relayers are refunded with destination tokens out of this contract after another off-chain actor, a "data worker", * submits a proof that the relayer correctly submitted a relay on this SpokePool. */ abstract contract SpokePool is SpokePoolInterface, UUPSUpgradeable, ReentrancyGuardUpgradeable, MultiCallerUpgradeable, EIP712CrossChainUpgradeable { using SafeERC20Upgradeable for IERC20Upgradeable; using AddressUpgradeable for address; // Address of the L1 contract that acts as the owner of this SpokePool. This should normally be set to the HubPool // address. The crossDomainAdmin address is unused when the SpokePool is deployed to the same chain as the HubPool. address public crossDomainAdmin; // Address of the L1 contract that will send tokens to and receive tokens from this contract to fund relayer // refunds and slow relays. address public hubPool; // Address of wrappedNativeToken contract for this network. If an origin token matches this, then the caller can // optionally instruct this contract to wrap native tokens when depositing (ie ETH->WETH or MATIC->WMATIC). WETH9Interface public wrappedNativeToken; // Any deposit quote times greater than or less than this value to the current contract time is blocked. Forces // caller to use an approximately "current" realized fee. Defaults to 1 hour. uint32 public depositQuoteTimeBuffer; // Count of deposits is used to construct a unique deposit identifier for this spoke pool. uint32 public numberOfDeposits; // Whether deposits and fills are disabled. bool public pausedFills; bool public pausedDeposits; // This contract can store as many root bundles as the HubPool chooses to publish here. RootBundle[] public rootBundles; // Origin token to destination token routings can be turned on or off, which can enable or disable deposits. mapping(address => mapping(uint256 => bool)) public enabledDepositRoutes; // Each relay is associated with the hash of parameters that uniquely identify the original deposit and a relay // attempt for that deposit. The relay itself is just represented as the amount filled so far. The total amount to // relay, the fees, and the agents are all parameters included in the hash key. mapping(bytes32 => uint256) public relayFills; // This keeps track of the worst-case liabilities due to fills. // It is never reset. Users should only rely on it to determine the worst-case increase in liabilities between // two points. This is used to provide frontrunning protection to ensure the relayer's assumptions about the state // upon which their expected repayments are based will not change before their transaction is mined. mapping(address => uint256) public fillCounter; // This keeps track of the total running deposits for each token. This allows depositors to protect themselves from // frontrunning that might change their worst-case quote. mapping(address => uint256) public depositCounter; // This tracks the number of identical refunds that have been requested. // The intention is to allow an off-chain system to know when this could be a duplicate and ensure that the other // requests are known and accounted for. mapping(bytes32 => uint256) public refundsRequested; uint256 public constant MAX_TRANSFER_SIZE = 1e36; // Note: this needs to be larger than the max transfer size to ensure that all slow fills are fillable, even if // their fees are negative. // It's important that it isn't too large, however, as it should be multipliable by ~2e18 without overflowing. // 1e40 * 2e18 = 2e58 << 2^255 ~= 5e76 uint256 public constant SLOW_FILL_MAX_TOKENS_TO_SEND = 1e40; // Set max payout adjustment to something bytes32 public constant UPDATE_DEPOSIT_DETAILS_HASH = keccak256( "UpdateDepositDetails(uint32 depositId,uint256 originChainId,int64 updatedRelayerFeePct,address updatedRecipient,bytes updatedMessage)" ); /**************************************** * EVENTS * ****************************************/ event SetXDomainAdmin(address indexed newAdmin); event SetHubPool(address indexed newHubPool); event EnabledDepositRoute(address indexed originToken, uint256 indexed destinationChainId, bool enabled); event SetDepositQuoteTimeBuffer(uint32 newBuffer); event FundsDeposited( uint256 amount, uint256 originChainId, uint256 indexed destinationChainId, int64 relayerFeePct, uint32 indexed depositId, uint32 quoteTimestamp, address originToken, address recipient, address indexed depositor, bytes message ); event RequestedSpeedUpDeposit( int64 newRelayerFeePct, uint32 indexed depositId, address indexed depositor, address updatedRecipient, bytes updatedMessage, bytes depositorSignature ); event FilledRelay( uint256 amount, uint256 totalFilledAmount, uint256 fillAmount, uint256 repaymentChainId, uint256 indexed originChainId, uint256 destinationChainId, int64 relayerFeePct, int64 realizedLpFeePct, uint32 indexed depositId, address destinationToken, address relayer, address indexed depositor, address recipient, bytes message, RelayExecutionInfo updatableRelayData ); event RefundRequested( address indexed relayer, address refundToken, uint256 amount, uint256 indexed originChainId, uint256 destinationChainId, int64 realizedLpFeePct, uint32 indexed depositId, uint256 fillBlock, uint256 previousIdenticalRequests ); event RelayedRootBundle( uint32 indexed rootBundleId, bytes32 indexed relayerRefundRoot, bytes32 indexed slowRelayRoot ); event ExecutedRelayerRefundRoot( uint256 amountToReturn, uint256 indexed chainId, uint256[] refundAmounts, uint32 indexed rootBundleId, uint32 indexed leafId, address l2TokenAddress, address[] refundAddresses, address caller ); event TokensBridged( uint256 amountToReturn, uint256 indexed chainId, uint32 indexed leafId, address indexed l2TokenAddress, address caller ); event EmergencyDeleteRootBundle(uint256 indexed rootBundleId); event PausedDeposits(bool isPaused); event PausedFills(bool isPaused); /** * @notice Represents data used to fill a deposit. * @param relay Relay containing original data linked to deposit. Contains fields that can be * overridden by other parameters in the RelayExecution struct. * @param relayHash Hash of the relay data. * @param updatedRelayerFeePct Actual relayer fee pct to use for this relay. * @param updatedRecipient Actual recipient to use for this relay. * @param updatedMessage Actual message to use for this relay. * @param repaymentChainId Chain ID of the network that the relayer will receive refunds on. * @param maxTokensToSend Max number of tokens to pull from relayer. * @param maxCount Max count to protect the relayer from frontrunning. * @param slowFill Whether this is a slow fill. * @param payoutAdjustmentPct Adjustment to the payout amount. Can be used to increase or decrease the payout to * allow for rewards or penalties. Used in slow fills. */ struct RelayExecution { RelayData relay; bytes32 relayHash; int64 updatedRelayerFeePct; address updatedRecipient; bytes updatedMessage; uint256 repaymentChainId; uint256 maxTokensToSend; uint256 maxCount; bool slowFill; int256 payoutAdjustmentPct; } /** * @notice Packs together information to include in FilledRelay event. * @dev This struct is emitted as opposed to its constituent parameters due to the limit on number of * parameters in an event. * @param recipient Recipient of the relayed funds. * @param message Message included in the relay. * @param relayerFeePct Relayer fee pct used for this relay. * @param isSlowRelay Whether this is a slow relay. * @param payoutAdjustmentPct Adjustment to the payout amount. */ struct RelayExecutionInfo { address recipient; bytes message; int64 relayerFeePct; bool isSlowRelay; int256 payoutAdjustmentPct; } /** * Do not leave an implementation contract uninitialized. An uninitialized implementation contract can be * taken over by an attacker, which may impact the proxy. To prevent the implementation contract from being * used, you should invoke the _disableInitializers function in the constructor to automatically lock it when * it is deployed: */ /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } /** * @notice Construct the base SpokePool. * @param _initialDepositId Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate * relay hash collisions. * @param _crossDomainAdmin Cross domain admin to set. Can be changed by admin. * @param _hubPool Hub pool address to set. Can be changed by admin. * @param _wrappedNativeTokenAddress wrappedNativeToken address for this network to set. */ function __SpokePool_init( uint32 _initialDepositId, address _crossDomainAdmin, address _hubPool, address _wrappedNativeTokenAddress ) public onlyInitializing { numberOfDeposits = _initialDepositId; __EIP712_init("ACROSS-V2", "1.0.0"); __UUPSUpgradeable_init(); __ReentrancyGuard_init(); depositQuoteTimeBuffer = 3600; _setCrossDomainAdmin(_crossDomainAdmin); _setHubPool(_hubPool); wrappedNativeToken = WETH9Interface(_wrappedNativeTokenAddress); } /**************************************** * MODIFIERS * ****************************************/ /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeTo} and {upgradeToAndCall}. * @dev This should be set to cross domain admin for specific SpokePool. */ modifier onlyAdmin() { _requireAdminSender(); _; } modifier unpausedDeposits() { require(!pausedDeposits, "Paused deposits"); _; } modifier unpausedFills() { require(!pausedFills, "Paused fills"); _; } /************************************** * ADMIN FUNCTIONS * **************************************/ // Allows cross domain admin to upgrade UUPS proxy implementation. function _authorizeUpgrade(address newImplementation) internal override onlyAdmin {} /** * @notice Pauses deposit-related functions. This is intended to be used if this contract is deprecated or when * something goes awry. * @dev Affects `deposit()` but not `speedUpDeposit()`, so that existing deposits can be sped up and still * relayed. * @param pause true if the call is meant to pause the system, false if the call is meant to unpause it. */ function pauseDeposits(bool pause) public override onlyAdmin nonReentrant { pausedDeposits = pause; emit PausedDeposits(pause); } /** * @notice Pauses fill-related functions. This is intended to be used if this contract is deprecated or when * something goes awry. * @dev Affects fillRelayWithUpdatedDeposit() and fillRelay(). * @param pause true if the call is meant to pause the system, false if the call is meant to unpause it. */ function pauseFills(bool pause) public override onlyAdmin nonReentrant { pausedFills = pause; emit PausedFills(pause); } /** * @notice Change cross domain admin address. Callable by admin only. * @param newCrossDomainAdmin New cross domain admin. */ function setCrossDomainAdmin(address newCrossDomainAdmin) public override onlyAdmin nonReentrant { _setCrossDomainAdmin(newCrossDomainAdmin); } /** * @notice Change L1 hub pool address. Callable by admin only. * @param newHubPool New hub pool. */ function setHubPool(address newHubPool) public override onlyAdmin nonReentrant { _setHubPool(newHubPool); } /** * @notice Enable/Disable an origin token => destination chain ID route for deposits. Callable by admin only. * @param originToken Token that depositor can deposit to this contract. * @param destinationChainId Chain ID for where depositor wants to receive funds. * @param enabled True to enable deposits, False otherwise. */ function setEnableRoute( address originToken, uint256 destinationChainId, bool enabled ) public override onlyAdmin nonReentrant { enabledDepositRoutes[originToken][destinationChainId] = enabled; emit EnabledDepositRoute(originToken, destinationChainId, enabled); } /** * @notice Change allowance for deposit quote time to differ from current block time. Callable by admin only. * @param newDepositQuoteTimeBuffer New quote time buffer. */ function setDepositQuoteTimeBuffer(uint32 newDepositQuoteTimeBuffer) public override onlyAdmin nonReentrant { depositQuoteTimeBuffer = newDepositQuoteTimeBuffer; emit SetDepositQuoteTimeBuffer(newDepositQuoteTimeBuffer); } /** * @notice This method stores a new root bundle in this contract that can be executed to refund relayers, fulfill * slow relays, and send funds back to the HubPool on L1. This method can only be called by the admin and is * designed to be called as part of a cross-chain message from the HubPool's executeRootBundle method. * @param relayerRefundRoot Merkle root containing relayer refund leaves that can be individually executed via * executeRelayerRefundLeaf(). * @param slowRelayRoot Merkle root containing slow relay fulfillment leaves that can be individually executed via * executeSlowRelayLeaf(). */ function relayRootBundle(bytes32 relayerRefundRoot, bytes32 slowRelayRoot) public override onlyAdmin nonReentrant { uint32 rootBundleId = uint32(rootBundles.length); RootBundle storage rootBundle = rootBundles.push(); rootBundle.relayerRefundRoot = relayerRefundRoot; rootBundle.slowRelayRoot = slowRelayRoot; emit RelayedRootBundle(rootBundleId, relayerRefundRoot, slowRelayRoot); } /** * @notice This method is intended to only be used in emergencies where a bad root bundle has reached the * SpokePool. * @param rootBundleId Index of the root bundle that needs to be deleted. Note: this is intentionally a uint256 * to ensure that a small input range doesn't limit which indices this method is able to reach. */ function emergencyDeleteRootBundle(uint256 rootBundleId) public override onlyAdmin nonReentrant { // Deleting a struct containing a mapping does not delete the mapping in Solidity, therefore the bitmap's // data will still remain potentially leading to vulnerabilities down the line. The way around this would // be to iterate through every key in the mapping and resetting the value to 0, but this seems expensive and // would require a new list in storage to keep track of keys. //slither-disable-next-line mapping-deletion delete rootBundles[rootBundleId]; emit EmergencyDeleteRootBundle(rootBundleId); } /************************************** * DEPOSITOR FUNCTIONS * **************************************/ /** * @notice Called by user to bridge funds from origin to destination chain. Depositor will effectively lock * tokens in this contract and receive a destination token on the destination chain. The origin => destination * token mapping is stored on the L1 HubPool. * @notice The caller must first approve this contract to spend amount of originToken. * @notice The originToken => destinationChainId must be enabled. * @notice This method is payable because the caller is able to deposit native token if the originToken is * wrappedNativeToken and this function will handle wrapping the native token to wrappedNativeToken. * @param recipient Address to receive funds at on destination chain. * @param originToken Token to lock into this contract to initiate deposit. * @param amount Amount of tokens to deposit. Will be amount of tokens to receive less fees. * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer. * @param relayerFeePct % of deposit amount taken out to incentivize a fast relayer. * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid * to LP pool on HubPool. * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens. * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens. * @param maxCount used to protect the depositor from frontrunning to guarantee their quote remains valid. */ function deposit( address recipient, address originToken, uint256 amount, uint256 destinationChainId, int64 relayerFeePct, uint32 quoteTimestamp, bytes memory message, uint256 maxCount ) public payable override nonReentrant unpausedDeposits { // Check that deposit route is enabled. require(enabledDepositRoutes[originToken][destinationChainId], "Disabled route"); // We limit the relay fees to prevent the user spending all their funds on fees. require(SignedMath.abs(relayerFeePct) < 0.5e18, "Invalid relayer fee"); require(amount <= MAX_TRANSFER_SIZE, "Amount too large"); require(depositCounter[originToken] <= maxCount, "Above max count"); // This function assumes that L2 timing cannot be compared accurately and consistently to L1 timing. Therefore, // block.timestamp is different from the L1 EVM's. Therefore, the quoteTimestamp must be within a configurable // buffer of this contract's block time to allow for this variance. // Note also that quoteTimestamp cannot be less than the buffer otherwise the following arithmetic can result // in underflow. This isn't a problem as the deposit will revert, but the error might be unexpected for clients. //slither-disable-next-line timestamp require( getCurrentTime() >= quoteTimestamp - depositQuoteTimeBuffer && getCurrentTime() <= quoteTimestamp + depositQuoteTimeBuffer, "invalid quote time" ); // Increment count of deposits so that deposit ID for this spoke pool is unique. uint32 newDepositId = numberOfDeposits++; depositCounter[originToken] += amount; // If the address of the origin token is a wrappedNativeToken contract and there is a msg.value with the // transaction then the user is sending ETH. In this case, the ETH should be deposited to wrappedNativeToken. if (originToken == address(wrappedNativeToken) && msg.value > 0) { require(msg.value == amount, "msg.value must match amount"); wrappedNativeToken.deposit{ value: msg.value }(); // Else, it is a normal ERC20. In this case pull the token from the user's wallet as per normal. // Note: this includes the case where the L2 user has WETH (already wrapped ETH) and wants to bridge them. // In this case the msg.value will be set to 0, indicating a "normal" ERC20 bridging action. } else IERC20Upgradeable(originToken).safeTransferFrom(msg.sender, address(this), amount); emit FundsDeposited( amount, chainId(), destinationChainId, relayerFeePct, newDepositId, quoteTimestamp, originToken, recipient, msg.sender, message ); } /** * @notice Convenience method that depositor can use to signal to relayer to use updated fee. * @notice Relayer should only use events emitted by this function to submit fills with updated fees, otherwise they * risk their fills getting disputed for being invalid, for example if the depositor never actually signed the * update fee message. * @notice This function will revert if the depositor did not sign a message containing the updated fee for the * deposit ID stored in this contract. If the deposit ID is for another contract, or the depositor address is * incorrect, or the updated fee is incorrect, then the signature will not match and this function will revert. * @notice This function is not subject to a deposit pause on the off chance that deposits sent before all deposits * are paused have very low fees and the user wants to entice a relayer to fill them with a higher fee. * @param depositor Signer of the update fee message who originally submitted the deposit. If the deposit doesn't * exist, then the relayer will not be able to fill any relay, so the caller should validate that the depositor * did in fact submit a relay. * @param updatedRelayerFeePct New relayer fee that relayers can use. * @param depositId Deposit to update fee for that originated in this contract. * @param updatedRecipient New recipient address that should receive the tokens. * @param updatedMessage New message that should be provided to the recipient. * @param depositorSignature Signed message containing the depositor address, this contract chain ID, the updated * relayer fee %, and the deposit ID. This signature is produced by signing a hash of data according to the * EIP-712 standard. See more in the _verifyUpdateRelayerFeeMessage() comments. */ function speedUpDeposit( address depositor, int64 updatedRelayerFeePct, uint32 depositId, address updatedRecipient, bytes memory updatedMessage, bytes memory depositorSignature ) public override nonReentrant { require(SignedMath.abs(updatedRelayerFeePct) < 0.5e18, "Invalid relayer fee"); _verifyUpdateDepositMessage( depositor, depositId, chainId(), updatedRelayerFeePct, updatedRecipient, updatedMessage, depositorSignature ); // Assuming the above checks passed, a relayer can take the signature and the updated relayer fee information // from the following event to submit a fill with an updated fee %. emit RequestedSpeedUpDeposit( updatedRelayerFeePct, depositId, depositor, updatedRecipient, updatedMessage, depositorSignature ); } /************************************** * RELAYER FUNCTIONS * **************************************/ /** * @notice Called by relayer to fulfill part of a deposit by sending destination tokens to the recipient. * Relayer is expected to pass in unique identifying information for deposit that they want to fulfill, and this * relay submission will be validated by off-chain data workers who can dispute this relay if any part is invalid. * If the relay is valid, then the relayer will be refunded on their desired repayment chain. If relay is invalid, * then relayer will not receive any refund. * @notice All of the deposit data can be found via on-chain events from the origin SpokePool, except for the * realizedLpFeePct which is a function of the HubPool's utilization at the deposit quote time. This fee % * is deterministic based on the quote time, so the relayer should just compute it using the canonical algorithm * as described in a UMIP linked to the HubPool's identifier. * @param depositor Depositor on origin chain who set this chain as the destination chain. * @param recipient Specified recipient on this chain. * @param destinationToken Token to send to recipient. Should be mapped to the origin token, origin chain ID * and this chain ID via a mapping on the HubPool. * @param amount Full size of the deposit. * @param maxTokensToSend Max amount of tokens to send recipient. If higher than amount, then caller will * send recipient the full relay amount. * @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has * passed. * @param originChainId Chain of SpokePool where deposit originated. * @param realizedLpFeePct Fee % based on L1 HubPool utilization at deposit quote time. Deterministic based on * quote time. * @param relayerFeePct Fee % to keep as relayer, specified by depositor. * @param depositId Unique deposit ID on origin spoke pool. * @param message Message to send to recipient along with tokens. * @param maxCount Max count to protect the relayer from frontrunning. */ function fillRelay( address depositor, address recipient, address destinationToken, uint256 amount, uint256 maxTokensToSend, uint256 repaymentChainId, uint256 originChainId, int64 realizedLpFeePct, int64 relayerFeePct, uint32 depositId, bytes memory message, uint256 maxCount ) public nonReentrant unpausedFills { // Each relay attempt is mapped to the hash of data uniquely identifying it, which includes the deposit data // such as the origin chain ID and the deposit ID, and the data in a relay attempt such as who the recipient // is, which chain and currency the recipient wants to receive funds on, and the relay fees. RelayExecution memory relayExecution = RelayExecution({ relay: SpokePoolInterface.RelayData({ depositor: depositor, recipient: recipient, destinationToken: destinationToken, amount: amount, realizedLpFeePct: realizedLpFeePct, relayerFeePct: relayerFeePct, depositId: depositId, originChainId: originChainId, destinationChainId: chainId(), message: message }), relayHash: bytes32(0), updatedRelayerFeePct: relayerFeePct, updatedRecipient: recipient, updatedMessage: message, repaymentChainId: repaymentChainId, maxTokensToSend: maxTokensToSend, slowFill: false, payoutAdjustmentPct: 0, maxCount: maxCount }); relayExecution.relayHash = _getRelayHash(relayExecution.relay); uint256 fillAmountPreFees = _fillRelay(relayExecution); _emitFillRelay(relayExecution, fillAmountPreFees); } /** * @notice Called by relayer to execute same logic as calling fillRelay except that relayer is using an updated * relayer fee %. The fee % must have been emitted in a message cryptographically signed by the depositor. * @notice By design, the depositor probably emitted the message with the updated fee by calling speedUpDeposit(). * @param depositor Depositor on origin chain who set this chain as the destination chain. * @param recipient Specified recipient on this chain. * @param destinationToken Token to send to recipient. Should be mapped to the origin token, origin chain ID * and this chain ID via a mapping on the HubPool. * @param amount Full size of the deposit. * @param maxTokensToSend Max amount of tokens to send recipient. If higher than amount, then caller will * send recipient the full relay amount. * @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has * passed. * @param originChainId Chain of SpokePool where deposit originated. * @param realizedLpFeePct Fee % based on L1 HubPool utilization at deposit quote time. Deterministic based on * quote time. * @param relayerFeePct Original fee % to keep as relayer set by depositor. * @param updatedRelayerFeePct New fee % to keep as relayer also specified by depositor. * @param depositId Unique deposit ID on origin spoke pool. * @param message Original message that was sent along with this deposit. * @param updatedMessage Modified message that the depositor signed when updating parameters. * @param depositorSignature Signed message containing the depositor address, this contract chain ID, the updated * relayer fee %, and the deposit ID. This signature is produced by signing a hash of data according to the * EIP-712 standard. See more in the _verifyUpdateRelayerFeeMessage() comments. * @param maxCount Max fill count to protect the relayer from frontrunning. */ function fillRelayWithUpdatedDeposit( address depositor, address recipient, address updatedRecipient, address destinationToken, uint256 amount, uint256 maxTokensToSend, uint256 repaymentChainId, uint256 originChainId, int64 realizedLpFeePct, int64 relayerFeePct, int64 updatedRelayerFeePct, uint32 depositId, bytes memory message, bytes memory updatedMessage, bytes memory depositorSignature, uint256 maxCount ) public override nonReentrant unpausedFills { RelayExecution memory relayExecution = RelayExecution({ relay: SpokePoolInterface.RelayData({ depositor: depositor, recipient: recipient, destinationToken: destinationToken, amount: amount, realizedLpFeePct: realizedLpFeePct, relayerFeePct: relayerFeePct, depositId: depositId, originChainId: originChainId, destinationChainId: chainId(), message: message }), relayHash: bytes32(0), updatedRelayerFeePct: updatedRelayerFeePct, updatedRecipient: updatedRecipient, updatedMessage: updatedMessage, repaymentChainId: repaymentChainId, maxTokensToSend: maxTokensToSend, slowFill: false, payoutAdjustmentPct: 0, maxCount: maxCount }); relayExecution.relayHash = _getRelayHash(relayExecution.relay); _verifyUpdateDepositMessage( depositor, depositId, originChainId, updatedRelayerFeePct, updatedRecipient, updatedMessage, depositorSignature ); uint256 fillAmountPreFees = _fillRelay(relayExecution); _emitFillRelay(relayExecution, fillAmountPreFees); } /** * @notice Caller signals to the system that they want a refund on this chain, which they set as the * `repaymentChainId` on the original fillRelay() call on the `destinationChainId`. An observer should be * be able to 1-to-1 match the emitted RefundRequested event with the FilledRelay event on the `destinationChainId`. * @dev This function could be used to artificially inflate the `fillCounter`, allowing the caller to "frontrun" * and cancel pending fills in the mempool. This would in the worst case censor fills at the cost of the caller's * gas costs. We don't view this as a major issue as the fill can be resubmitted and obtain the same incentive, * since incentives are based on validated refunds and would ignore these censoring attempts. This is no * different from calling `fillRelay` and setting msg.sender = recipient. * @dev Caller needs to pass in `fillBlock` that the FilledRelay event was emitted on the `destinationChainId`. * This is to make it hard to request a refund before a fill has been mined and to make lookups of the original * fill as simple as possible. * @param refundToken This chain's token equivalent for original fill destination token. * @param amount Original deposit amount. * @param originChainId Original origin chain ID. * @param destinationChainId Original destination chain ID. * @param realizedLpFeePct Original realized LP fee %. * @param depositId Original deposit ID. * @param maxCount Max count to protect the refund recipient from frontrunning. */ function requestRefund( address refundToken, uint256 amount, uint256 originChainId, uint256 destinationChainId, int64 realizedLpFeePct, uint32 depositId, uint256 fillBlock, uint256 maxCount ) external nonReentrant { // Prevent unrealistic amounts from increasing fill counter too high. require(amount <= MAX_TRANSFER_SIZE, "Amount too large"); // This allows the caller to add in frontrunning protection for quote validity. require(fillCounter[refundToken] <= maxCount, "Above max count"); // Track duplicate refund requests. bytes32 refundHash = keccak256( abi.encode( msg.sender, refundToken, amount, originChainId, destinationChainId, realizedLpFeePct, depositId, fillBlock ) ); // Track duplicate requests so that an offchain actor knows if an identical request has already been made. // If so, it can check to ensure that that request was thrown out as invalid before honoring the duplicate. // In particular, this is meant to handle odd cases where an initial request is invalidated based on // timing, but can be validated by a later, identical request. uint256 previousIdenticalRequests = refundsRequested[refundHash]++; // Refund will take tokens out of this pool, increment the fill counter. This function should only be // called if a relayer from destinationChainId wants to take a refund on this chain, a different chain. // This type of repayment should only be possible for full fills, so the starting fill amount should // always be 0. Also, just like in _fillRelay we should revert if the first fill pre fees rounds to 0, // and in this case `amount` == `fillAmountPreFees`. require(amount > 0, "Amount must be > 0"); _updateCountFromFill( 0, true, // The refund is being requested here, so it is local. amount, realizedLpFeePct, refundToken, false // Slow fills should never match with a Refund. This should be enforced by off-chain bundle builders. ); emit RefundRequested( // Set caller as relayer. If caller is not relayer from destination chain that originally sent // fill, then off-chain validator should discard this refund attempt. msg.sender, refundToken, amount, originChainId, destinationChainId, realizedLpFeePct, depositId, fillBlock, previousIdenticalRequests ); } /************************************** * DATA WORKER FUNCTIONS * **************************************/ /** * @notice Executes a slow relay leaf stored as part of a root bundle. Will send the full amount remaining in the * relay to the recipient, less fees. * @dev This function assumes that the relay's destination chain ID is the current chain ID, which prevents * the caller from executing a slow relay intended for another chain on this chain. * @param depositor Depositor on origin chain who set this chain as the destination chain. * @param recipient Specified recipient on this chain. * @param destinationToken Token to send to recipient. Should be mapped to the origin token, origin chain ID * and this chain ID via a mapping on the HubPool. * @param amount Full size of the deposit. * @param originChainId Chain of SpokePool where deposit originated. * @param realizedLpFeePct Fee % based on L1 HubPool utilization at deposit quote time. Deterministic based on * quote time. * @param relayerFeePct Original fee % to keep as relayer set by depositor. * @param depositId Unique deposit ID on origin spoke pool. * @param rootBundleId Unique ID of root bundle containing slow relay root that this leaf is contained in. * @param message Message to send to the recipient if the recipient is a contract. * @param payoutAdjustment Adjustment to the payout amount. Can be used to increase or decrease the payout to allow * for rewards or penalties. * @param proof Inclusion proof for this leaf in slow relay root in root bundle. */ function executeSlowRelayLeaf( address depositor, address recipient, address destinationToken, uint256 amount, uint256 originChainId, int64 realizedLpFeePct, int64 relayerFeePct, uint32 depositId, uint32 rootBundleId, bytes memory message, int256 payoutAdjustment, bytes32[] memory proof ) public virtual override nonReentrant { _executeSlowRelayLeaf( depositor, recipient, destinationToken, amount, originChainId, chainId(), realizedLpFeePct, relayerFeePct, depositId, rootBundleId, message, payoutAdjustment, proof ); } /** * @notice Executes a relayer refund leaf stored as part of a root bundle. Will send the relayer the amount they * sent to the recipient plus a relayer fee. * @param rootBundleId Unique ID of root bundle containing relayer refund root that this leaf is contained in. * @param relayerRefundLeaf Contains all data necessary to reconstruct leaf contained in root bundle and to * refund relayer. This data structure is explained in detail in the SpokePoolInterface. * @param proof Inclusion proof for this leaf in relayer refund root in root bundle. */ function executeRelayerRefundLeaf( uint32 rootBundleId, SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf, bytes32[] memory proof ) public virtual override nonReentrant { _executeRelayerRefundLeaf(rootBundleId, relayerRefundLeaf, proof); } /************************************** * VIEW FUNCTIONS * **************************************/ /** * @notice Returns chain ID for this network. * @dev Some L2s like ZKSync don't support the CHAIN_ID opcode so we allow the implementer to override this. */ function chainId() public view virtual override returns (uint256) { return block.chainid; } /** * @notice Gets the current time. * @return uint for the current timestamp. */ function getCurrentTime() public view virtual returns (uint256) { return block.timestamp; // solhint-disable-line not-rely-on-time } /************************************** * INTERNAL FUNCTIONS * **************************************/ // Verifies inclusion proof of leaf in root, sends relayer their refund, and sends to HubPool any rebalance // transfers. function _executeRelayerRefundLeaf( uint32 rootBundleId, SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf, bytes32[] memory proof ) internal { // Check integrity of leaf structure: require(relayerRefundLeaf.chainId == chainId(), "Invalid chainId"); require(relayerRefundLeaf.refundAddresses.length == relayerRefundLeaf.refundAmounts.length, "invalid leaf"); RootBundle storage rootBundle = rootBundles[rootBundleId]; // Check that inclusionProof proves that relayerRefundLeaf is contained within the relayer refund root. // Note: This should revert if the relayerRefundRoot is uninitialized. require(MerkleLib.verifyRelayerRefund(rootBundle.relayerRefundRoot, relayerRefundLeaf, proof), "Bad Proof"); // Verify the leafId in the leaf has not yet been claimed. require(!MerkleLib.isClaimed(rootBundle.claimedBitmap, relayerRefundLeaf.leafId), "Already claimed"); // Set leaf as claimed in bitmap. This is passed by reference to the storage rootBundle. MerkleLib.setClaimed(rootBundle.claimedBitmap, relayerRefundLeaf.leafId); // Send each relayer refund address the associated refundAmount for the L2 token address. // Note: Even if the L2 token is not enabled on this spoke pool, we should still refund relayers. uint256 length = relayerRefundLeaf.refundAmounts.length; for (uint256 i = 0; i < length; ) { uint256 amount = relayerRefundLeaf.refundAmounts[i]; if (amount > 0) IERC20Upgradeable(relayerRefundLeaf.l2TokenAddress).safeTransfer( relayerRefundLeaf.refundAddresses[i], amount ); // OK because we assume refund array length won't be > types(uint256).max. // Based on the stress test results in /test/gas-analytics/SpokePool.RelayerRefundLeaf.ts, the UMIP should // limit the refund count in valid proposals to be ~800 so any RelayerRefundLeaves with > 800 refunds should // not make it to this stage. unchecked { ++i; } } // If leaf's amountToReturn is positive, then send L2 --> L1 message to bridge tokens back via // chain-specific bridging method. if (relayerRefundLeaf.amountToReturn > 0) { _bridgeTokensToHubPool(relayerRefundLeaf); emit TokensBridged( relayerRefundLeaf.amountToReturn, relayerRefundLeaf.chainId, relayerRefundLeaf.leafId, relayerRefundLeaf.l2TokenAddress, msg.sender ); } emit ExecutedRelayerRefundRoot( relayerRefundLeaf.amountToReturn, relayerRefundLeaf.chainId, relayerRefundLeaf.refundAmounts, rootBundleId, relayerRefundLeaf.leafId, relayerRefundLeaf.l2TokenAddress, relayerRefundLeaf.refundAddresses, msg.sender ); } // Verifies inclusion proof of leaf in root and sends recipient remainder of relay. Marks relay as filled. function _executeSlowRelayLeaf( address depositor, address recipient, address destinationToken, uint256 amount, uint256 originChainId, uint256 destinationChainId, int64 realizedLpFeePct, int64 relayerFeePct, uint32 depositId, uint32 rootBundleId, bytes memory message, int256 payoutAdjustmentPct, bytes32[] memory proof ) internal { RelayExecution memory relayExecution = RelayExecution({ relay: SpokePoolInterface.RelayData({ depositor: depositor, recipient: recipient, destinationToken: destinationToken, amount: amount, realizedLpFeePct: realizedLpFeePct, relayerFeePct: relayerFeePct, depositId: depositId, originChainId: originChainId, destinationChainId: destinationChainId, message: message }), relayHash: bytes32(0), updatedRelayerFeePct: 0, updatedRecipient: recipient, updatedMessage: message, repaymentChainId: 0, maxTokensToSend: SLOW_FILL_MAX_TOKENS_TO_SEND, slowFill: true, payoutAdjustmentPct: payoutAdjustmentPct, maxCount: type(uint256).max }); relayExecution.relayHash = _getRelayHash(relayExecution.relay); _verifySlowFill(relayExecution, rootBundleId, proof); // Note: use relayAmount as the max amount to send, so the relay is always completely filled by the contract's // funds in all cases. As this is a slow relay we set the relayerFeePct to 0. This effectively refunds the // relayer component of the relayerFee thereby only charging the depositor the LpFee. uint256 fillAmountPreFees = _fillRelay(relayExecution); // Note: Set repayment chain ID to 0 to indicate that there is no repayment to be made. The off-chain data // worker can use repaymentChainId=0 as a signal to ignore such relays for refunds. Also, set the relayerFeePct // to 0 as slow relays do not pay the caller of this method (depositor is refunded this fee). _emitFillRelay(relayExecution, fillAmountPreFees); } function _setCrossDomainAdmin(address newCrossDomainAdmin) internal { require(newCrossDomainAdmin != address(0), "Bad bridge router address"); crossDomainAdmin = newCrossDomainAdmin; emit SetXDomainAdmin(newCrossDomainAdmin); } function _setHubPool(address newHubPool) internal { require(newHubPool != address(0), "Bad hub pool address"); hubPool = newHubPool; emit SetHubPool(newHubPool); } // Should be overriden by implementing contract depending on how L2 handles sending tokens to L1. function _bridgeTokensToHubPool(SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf) internal virtual; function _verifyUpdateDepositMessage( address depositor, uint32 depositId, uint256 originChainId, int64 updatedRelayerFeePct, address updatedRecipient, bytes memory updatedMessage, bytes memory depositorSignature ) internal view { // A depositor can request to modify an un-relayed deposit by signing a hash containing the updated // details and information uniquely identifying the deposit to relay. This information ensures // that this signature cannot be re-used for other deposits. // Note: We use the EIP-712 (https://eips.ethereum.org/EIPS/eip-712) standard for hashing and signing typed data. // Specifically, we use the version of the encoding known as "v4", as implemented by the JSON RPC method // `eth_signedTypedDataV4` in MetaMask (https://docs.metamask.io/guide/signing-data.html). bytes32 expectedTypedDataV4Hash = _hashTypedDataV4( // EIP-712 compliant hash struct: https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct keccak256( abi.encode( UPDATE_DEPOSIT_DETAILS_HASH, depositId, originChainId, updatedRelayerFeePct, updatedRecipient, keccak256(updatedMessage) ) ), // By passing in the origin chain id, we enable the verification of the signature on a different chain originChainId ); _verifyDepositorSignature(depositor, expectedTypedDataV4Hash, depositorSignature); } // This function is isolated and made virtual to allow different L2's to implement chain specific recovery of // signers from signatures because some L2s might not support ecrecover. To be safe, consider always reverting // this function for L2s where ecrecover is different from how it works on Ethereum, otherwise there is the // potential to forge a signature from the depositor using a different private key than the original depositor's. function _verifyDepositorSignature( address depositor, bytes32 ethSignedMessageHash, bytes memory depositorSignature ) internal view virtual { // Note: // - We don't need to worry about reentrancy from a contract deployed at the depositor address since the method // `SignatureChecker.isValidSignatureNow` is a view method. Re-entrancy can happen, but it cannot affect state. // - EIP-1271 signatures are supported. This means that a signature valid now, may not be valid later and vice-versa. // - For an EIP-1271 signature to work, the depositor contract address must map to a deployed contract on the destination // chain that can validate the signature. // - Regular signatures from an EOA are also supported. bool isValid = SignatureChecker.isValidSignatureNow(depositor, ethSignedMessageHash, depositorSignature); require(isValid, "invalid signature"); } function _verifySlowFill( RelayExecution memory relayExecution, uint32 rootBundleId, bytes32[] memory proof ) internal view { SlowFill memory slowFill = SlowFill({ relayData: relayExecution.relay, payoutAdjustmentPct: relayExecution.payoutAdjustmentPct }); require( MerkleLib.verifySlowRelayFulfillment(rootBundles[rootBundleId].slowRelayRoot, slowFill, proof), "Invalid slow relay proof" ); } function _computeAmountPreFees(uint256 amount, int64 feesPct) private pure returns (uint256) { return (1e18 * amount) / uint256((int256(1e18) - feesPct)); } function _computeAmountPostFees(uint256 amount, int256 feesPct) private pure returns (uint256) { return (amount * uint256(int256(1e18) - feesPct)) / 1e18; } function _getRelayHash(SpokePoolInterface.RelayData memory relayData) private pure returns (bytes32) { return keccak256(abi.encode(relayData)); } // Unwraps ETH and does a transfer to a recipient address. If the recipient is a smart contract then sends wrappedNativeToken. function _unwrapwrappedNativeTokenTo(address payable to, uint256 amount) internal { if (address(to).isContract()) { IERC20Upgradeable(address(wrappedNativeToken)).safeTransfer(to, amount); } else { wrappedNativeToken.withdraw(amount); //slither-disable-next-line arbitrary-send-eth to.transfer(amount); } } /** * @notice Caller specifies the max amount of tokens to send to user. Based on this amount and the amount of the * relay remaining (as stored in the relayFills mapping), pull the amount of tokens from the caller * and send to the recipient. * @dev relayFills keeps track of pre-fee fill amounts as a convenience to relayers who want to specify round * numbers for the maxTokensToSend parameter or convenient numbers like 100 (i.e. relayers who will fully * fill any relay up to 100 tokens, and partial fill with 100 tokens for larger relays). * @dev Caller must approve this contract to transfer up to maxTokensToSend of the relayData.destinationToken. * The amount to be sent might end up less if there is insufficient relay amount remaining to be sent. */ function _fillRelay(RelayExecution memory relayExecution) internal returns (uint256 fillAmountPreFees) { RelayData memory relayData = relayExecution.relay; // We limit the relay fees to prevent the user spending all their funds on fees. Note that 0.5e18 (i.e. 50%) // fees are just magic numbers. The important point is to prevent the total fee from being 100%, otherwise // computing the amount pre fees runs into divide-by-0 issues. require( SignedMath.abs(relayExecution.updatedRelayerFeePct) < 0.5e18 && SignedMath.abs(relayData.realizedLpFeePct) < 0.5e18, "invalid fees" ); require(relayData.amount <= MAX_TRANSFER_SIZE, "Amount too large"); // Check that the relay has not already been completely filled. Note that the relays mapping will point to // the amount filled so far for a particular relayHash, so this will start at 0 and increment with each fill. require(relayFills[relayExecution.relayHash] < relayData.amount, "relay filled"); // This allows the caller to add in frontrunning protection for quote validity. require(fillCounter[relayData.destinationToken] <= relayExecution.maxCount, "Above max count"); // Derive the amount of the relay filled if the caller wants to send exactly maxTokensToSend tokens to // the recipient. For example, if the user wants to send 10 tokens to the recipient, the full relay amount // is 100, and the fee %'s total 5%, then this computation would return ~10.5, meaning that to fill 10.5/100 // of the full relay size, the caller would need to send 10 tokens to the user. // This is equivalent to the amount to be sent by the relayer before fees have been taken out. fillAmountPreFees = _computeAmountPreFees( relayExecution.maxTokensToSend, (relayData.realizedLpFeePct + relayExecution.updatedRelayerFeePct) ); // If fill amount minus fees, which is possible with small fill amounts and negative fees, then // revert. require(fillAmountPreFees > 0, "fill amount pre fees is 0"); // If user's specified max amount to send is greater than the amount of the relay remaining pre-fees, // we'll pull exactly enough tokens to complete the relay. uint256 amountRemainingInRelay = relayData.amount - relayFills[relayExecution.relayHash]; if (amountRemainingInRelay < fillAmountPreFees) { fillAmountPreFees = amountRemainingInRelay; } // Apply post-fees computation to amount that relayer will send to user. Rounding errors are possible // when computing fillAmountPreFees and then amountToSend, and we just want to enforce that // the error added to amountToSend is consistently applied to partial and full fills. uint256 amountToSend = _computeAmountPostFees( fillAmountPreFees, relayData.realizedLpFeePct + relayExecution.updatedRelayerFeePct ); // This can only happen in a slow fill, where the contract is funding the relay. if (relayExecution.payoutAdjustmentPct != 0) { // If payoutAdjustmentPct is positive, then the recipient will receive more than the amount they // were originally expecting. If it is negative, then the recipient will receive less. // -1e18 is -100%. Because we cannot pay out negative values, that is the minimum. require(relayExecution.payoutAdjustmentPct >= -1e18, "payoutAdjustmentPct too small"); // Allow the payout adjustment to go up to 1000% (i.e. 11x). // This is a sanity check to ensure the payouts do not grow too large via some sort of issue in bundle // construction. require(relayExecution.payoutAdjustmentPct <= 100e18, "payoutAdjustmentPct too large"); // Note: since _computeAmountPostFees is typically intended for fees, the signage must be reversed. amountToSend = _computeAmountPostFees(amountToSend, -relayExecution.payoutAdjustmentPct); // Note: this error should never happen, since the maxTokensToSend is expected to be set much higher than // the amount, but it is here as a sanity check. require(amountToSend <= relayExecution.maxTokensToSend, "Somehow hit maxTokensToSend!"); } // Since the first partial fill is used to update the fill counter for the entire refund amount, we don't have // a simple way to handle the case where follow-up partial fills take repayment on different chains. We'd // need a way to decrement the fill counter in this case (or increase deposit counter) to ensure that users // have adequate frontrunning protections. // Instead of adding complexity, we require that all partial fills set repayment chain equal to destination chain. // Note: .slowFill is checked because slow fills set repaymentChainId to 0. bool localRepayment = relayExecution.repaymentChainId == relayExecution.relay.destinationChainId; require( localRepayment || relayExecution.relay.amount == fillAmountPreFees || relayExecution.slowFill, "invalid repayment chain" ); // Update fill counter. _updateCountFromFill( relayFills[relayExecution.relayHash], localRepayment, relayData.amount, relayData.realizedLpFeePct, relayData.destinationToken, relayExecution.slowFill ); // relayFills keeps track of pre-fee fill amounts as a convenience to relayers who want to specify round // numbers for the maxTokensToSend parameter or convenient numbers like 100 (i.e. relayers who will fully // fill any relay up to 100 tokens, and partial fill with 100 tokens for larger relays). relayFills[relayExecution.relayHash] += fillAmountPreFees; // If relayer and receiver are the same address, there is no need to do any transfer, as it would result in no // net movement of funds. // Note: this is important because it means that relayers can intentionally self-relay in a capital efficient // way (no need to have funds on the destination). if (msg.sender == relayExecution.updatedRecipient) return fillAmountPreFees; // If relay token is wrappedNativeToken then unwrap and send native token. if (relayData.destinationToken == address(wrappedNativeToken)) { // Note: useContractFunds is True if we want to send funds to the recipient directly out of this contract, // otherwise we expect the caller to send funds to the recipient. If useContractFunds is True and the // recipient wants wrappedNativeToken, then we can assume that wrappedNativeToken is already in the // contract, otherwise we'll need the user to send wrappedNativeToken to this contract. Regardless, we'll // need to unwrap it to native token before sending to the user. if (!relayExecution.slowFill) IERC20Upgradeable(relayData.destinationToken).safeTransferFrom(msg.sender, address(this), amountToSend); _unwrapwrappedNativeTokenTo(payable(relayExecution.updatedRecipient), amountToSend); // Else, this is a normal ERC20 token. Send to recipient. } else { // Note: Similar to note above, send token directly from the contract to the user in the slow relay case. if (!relayExecution.slowFill) IERC20Upgradeable(relayData.destinationToken).safeTransferFrom( msg.sender, relayExecution.updatedRecipient, amountToSend ); else IERC20Upgradeable(relayData.destinationToken).safeTransfer( relayExecution.updatedRecipient, amountToSend ); } if (relayExecution.updatedRecipient.isContract() && relayExecution.updatedMessage.length > 0) { AcrossMessageHandler(relayExecution.updatedRecipient).handleAcrossMessage( relayData.destinationToken, amountToSend, relayFills[relayExecution.relayHash] >= relayData.amount, msg.sender, relayExecution.updatedMessage ); } } function _updateCountFromFill( uint256 startingFillAmount, bool localRepayment, uint256 totalFillAmount, int64 realizedLPFeePct, address token, bool useContractFunds ) internal { // If this is a slow fill, a first partial fill with repayment on another chain, or a partial fill has already happened, do nothing, as these // should not impact the count. Initial 0-fills will not reach this part of the code. if (useContractFunds || startingFillAmount > 0 || !localRepayment) return; fillCounter[token] += _computeAmountPostFees(totalFillAmount, realizedLPFeePct); } function _emitFillRelay(RelayExecution memory relayExecution, uint256 fillAmountPreFees) internal { RelayExecutionInfo memory relayExecutionInfo = RelayExecutionInfo({ relayerFeePct: relayExecution.updatedRelayerFeePct, recipient: relayExecution.updatedRecipient, message: relayExecution.updatedMessage, isSlowRelay: relayExecution.slowFill, payoutAdjustmentPct: relayExecution.payoutAdjustmentPct }); emit FilledRelay( relayExecution.relay.amount, relayFills[relayExecution.relayHash], fillAmountPreFees, relayExecution.repaymentChainId, relayExecution.relay.originChainId, relayExecution.relay.destinationChainId, relayExecution.relay.relayerFeePct, relayExecution.relay.realizedLpFeePct, relayExecution.relay.depositId, relayExecution.relay.destinationToken, msg.sender, relayExecution.relay.depositor, relayExecution.relay.recipient, relayExecution.relay.message, relayExecutionInfo ); } // Implementing contract needs to override this to ensure that only the appropriate cross chain admin can execute // certain admin functions. For L2 contracts, the cross chain admin refers to some L1 address or contract, and for // L1, this would just be the same admin of the HubPool. function _requireAdminSender() internal virtual; // Added to enable the this contract to receive native token (ETH). Used when unwrapping wrappedNativeToken. receive() external payable {} // Reserve storage slots for future versions of this base contract to add state variables without // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables // are added. This is at bottom of contract to make sure it's always at the end of storage. uint256[1000] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "./interfaces/SpokePoolInterface.sol"; import "./interfaces/HubPoolInterface.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** * @notice Library to help with merkle roots, proofs, and claims. */ library MerkleLib { /** * @notice Verifies that a repayment is contained within a merkle root. * @param root the merkle root. * @param rebalance the rebalance struct. * @param proof the merkle proof. * @return bool to signal if the pool rebalance proof correctly shows inclusion of the rebalance within the tree. */ function verifyPoolRebalance( bytes32 root, HubPoolInterface.PoolRebalanceLeaf memory rebalance, bytes32[] memory proof ) internal pure returns (bool) { return MerkleProof.verify(proof, root, keccak256(abi.encode(rebalance))); } /** * @notice Verifies that a relayer refund is contained within a merkle root. * @param root the merkle root. * @param refund the refund struct. * @param proof the merkle proof. * @return bool to signal if the relayer refund proof correctly shows inclusion of the refund within the tree. */ function verifyRelayerRefund( bytes32 root, SpokePoolInterface.RelayerRefundLeaf memory refund, bytes32[] memory proof ) internal pure returns (bool) { return MerkleProof.verify(proof, root, keccak256(abi.encode(refund))); } /** * @notice Verifies that a distribution is contained within a merkle root. * @param root the merkle root. * @param slowRelayFulfillment the relayData fulfillment struct. * @param proof the merkle proof. * @return bool to signal if the slow relay's proof correctly shows inclusion of the slow relay within the tree. */ function verifySlowRelayFulfillment( bytes32 root, SpokePoolInterface.SlowFill memory slowRelayFulfillment, bytes32[] memory proof ) internal pure returns (bool) { return MerkleProof.verify(proof, root, keccak256(abi.encode(slowRelayFulfillment))); } // The following functions are primarily copied from // https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol with minor changes. /** * @notice Tests whether a claim is contained within a claimedBitMap mapping. * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap. * @param index the index to check in the bitmap. * @return bool indicating if the index within the claimedBitMap has been marked as claimed. */ function isClaimed(mapping(uint256 => uint256) storage claimedBitMap, uint256 index) internal view returns (bool) { uint256 claimedWordIndex = index / 256; uint256 claimedBitIndex = index % 256; uint256 claimedWord = claimedBitMap[claimedWordIndex]; uint256 mask = (1 << claimedBitIndex); return claimedWord & mask == mask; } /** * @notice Marks an index in a claimedBitMap as claimed. * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap. * @param index the index to mark in the bitmap. */ function setClaimed(mapping(uint256 => uint256) storage claimedBitMap, uint256 index) internal { uint256 claimedWordIndex = index / 256; uint256 claimedBitIndex = index % 256; claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex); } /** * @notice Tests whether a claim is contained within a 1D claimedBitMap mapping. * @param claimedBitMap a simple uint256 value, encoding a 1D bitmap. * @param index the index to check in the bitmap. Uint8 type enforces that index can't be > 255. * @return bool indicating if the index within the claimedBitMap has been marked as claimed. */ function isClaimed1D(uint256 claimedBitMap, uint8 index) internal pure returns (bool) { uint256 mask = (1 << index); return claimedBitMap & mask == mask; } /** * @notice Marks an index in a claimedBitMap as claimed. * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap. Uint8 type enforces that index * can't be > 255. * @param index the index to mark in the bitmap. * @return uint256 representing the modified input claimedBitMap with the index set to true. */ function setClaimed1D(uint256 claimedBitMap, uint8 index) internal pure returns (uint256) { return claimedBitMap | (1 << index); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.0; /** * @title MultiCallerUpgradeable * @notice Logic is 100% copied from "@uma/core/contracts/common/implementation/MultiCaller.sol" but one * comment is added to clarify why we allow delegatecall() in this contract, which is typically unsafe for use in * upgradeable implementation contracts. * @dev See https://docs.openzeppelin.com/upgrades-plugins/1.x/faq#delegatecall-selfdestruct for more details. */ contract MultiCallerUpgradeable { function multicall(bytes[] calldata data) external returns (bytes[] memory results) { results = new bytes[](data.length); //slither-disable-start calls-loop for (uint256 i = 0; i < data.length; i++) { // Typically, implementation contracts used in the upgradeable proxy pattern shouldn't call `delegatecall` // because it could allow a malicious actor to call this implementation contract directly (rather than // through a proxy contract) and then selfdestruct() the contract, thereby freezing the upgradeable // proxy. However, since we're only delegatecall-ing into this contract, then we can consider this // use of delegatecall() safe. //slither-disable-start low-level-calls /// @custom:oz-upgrades-unsafe-allow delegatecall (bool success, bytes memory result) = address(this).delegatecall(data[i]); //slither-disable-end low-level-calls if (!success) { // Next 5 lines from https://ethereum.stackexchange.com/a/83577 if (result.length < 68) revert(); //slither-disable-next-line assembly assembly { result := add(result, 0x04) } revert(abi.decode(result, (string))); } results[i] = result; } //slither-disable-end calls-loop } // Reserve storage slots for future versions of this base contract to add state variables without // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables // are added. This is at bottom of contract to make sure its always at the end of storage. uint256[1000] private __gap; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; /** * @notice Contains common data structures and functions used by all SpokePool implementations. */ interface SpokePoolInterface { // This leaf is meant to be decoded in the SpokePool to pay out successful relayers. struct RelayerRefundLeaf { // This is the amount to return to the HubPool. This occurs when there is a PoolRebalanceLeaf netSendAmount that // is negative. This is just the negative of this value. uint256 amountToReturn; // Used to verify that this is being executed on the correct destination chainId. uint256 chainId; // This array designates how much each of those addresses should be refunded. uint256[] refundAmounts; // Used as the index in the bitmap to track whether this leaf has been executed or not. uint32 leafId; // The associated L2TokenAddress that these claims apply to. address l2TokenAddress; // Must be same length as refundAmounts and designates each address that must be refunded. address[] refundAddresses; } // This struct represents the data to fully specify a relay. If any portion of this data differs, the relay is // considered to be completely distinct. Only one relay for a particular depositId, chainId pair should be // considered valid and repaid. This data is hashed and inserted into the slow relay merkle root so that an off // chain validator can choose when to refund slow relayers. struct RelayData { // The address that made the deposit on the origin chain. address depositor; // The recipient address on the destination chain. address recipient; // The corresponding token address on the destination chain. address destinationToken; // The total relay amount before fees are taken out. uint256 amount; // Origin chain id. uint256 originChainId; // Destination chain id. uint256 destinationChainId; // The LP Fee percentage computed by the relayer based on the deposit's quote timestamp // and the HubPool's utilization. int64 realizedLpFeePct; // The relayer fee percentage specified in the deposit. int64 relayerFeePct; // The id uniquely identifying this deposit on the origin chain. uint32 depositId; // Data that is forwarded to the recipient. bytes message; } struct SlowFill { RelayData relayData; int256 payoutAdjustmentPct; } // Stores collection of merkle roots that can be published to this contract from the HubPool, which are referenced // by "data workers" via inclusion proofs to execute leaves in the roots. struct RootBundle { // Merkle root of slow relays that were not fully filled and whose recipient is still owed funds from the LP pool. bytes32 slowRelayRoot; // Merkle root of relayer refunds for successful relays. bytes32 relayerRefundRoot; // This is a 2D bitmap tracking which leaves in the relayer refund root have been claimed, with max size of // 256x(2^248) leaves per root. mapping(uint256 => uint256) claimedBitmap; } function setCrossDomainAdmin(address newCrossDomainAdmin) external; function setHubPool(address newHubPool) external; function setEnableRoute( address originToken, uint256 destinationChainId, bool enable ) external; function pauseDeposits(bool pause) external; function pauseFills(bool pause) external; function setDepositQuoteTimeBuffer(uint32 buffer) external; function relayRootBundle(bytes32 relayerRefundRoot, bytes32 slowRelayRoot) external; function emergencyDeleteRootBundle(uint256 rootBundleId) external; function deposit( address recipient, address originToken, uint256 amount, uint256 destinationChainId, int64 relayerFeePct, uint32 quoteTimestamp, bytes memory message, uint256 maxCount ) external payable; function speedUpDeposit( address depositor, int64 updatedRelayerFeePct, uint32 depositId, address updatedRecipient, bytes memory updatedMessage, bytes memory depositorSignature ) external; function fillRelay( address depositor, address recipient, address destinationToken, uint256 amount, uint256 maxTokensToSend, uint256 repaymentChainId, uint256 originChainId, int64 realizedLpFeePct, int64 relayerFeePct, uint32 depositId, bytes memory message, uint256 maxCount ) external; function fillRelayWithUpdatedDeposit( address depositor, address recipient, address updatedRecipient, address destinationToken, uint256 amount, uint256 maxTokensToSend, uint256 repaymentChainId, uint256 originChainId, int64 realizedLpFeePct, int64 relayerFeePct, int64 updatedRelayerFeePct, uint32 depositId, bytes memory message, bytes memory updatedMessage, bytes memory depositorSignature, uint256 maxCount ) external; function executeSlowRelayLeaf( address depositor, address recipient, address destinationToken, uint256 amount, uint256 originChainId, int64 realizedLpFeePct, int64 relayerFeePct, uint32 depositId, uint32 rootBundleId, bytes memory message, int256 payoutAdjustment, bytes32[] memory proof ) external; function executeRelayerRefundLeaf( uint32 rootBundleId, SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf, bytes32[] memory proof ) external; function chainId() external view returns (uint256); }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * This contract is based on OpenZeppelin's implementation: * https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/blob/master/contracts/utils/cryptography/EIP712Upgradeable.sol * * NOTE: Modified version that allows to build a domain separator that relies on a different chain id than the chain this * contract is deployed to. An example use case we want to support is: * - User A signs a message on chain with id = 1 * - User B executes a method by verifying user A's EIP-712 compliant signature on a chain with id != 1 */ abstract contract EIP712CrossChainUpgradeable is Initializable { /* solhint-disable var-name-mixedcase */ bytes32 private _HASHED_NAME; bytes32 private _HASHED_VERSION; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId)"); /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal onlyInitializing { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; } /** * @dev Returns the domain separator depending on the `originChainId`. * @param originChainId Chain id of network where message originates from. * @return bytes32 EIP-712-compliant domain separator. */ function _domainSeparatorV4(uint256 originChainId) internal view returns (bytes32) { return keccak256(abi.encode(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION, originChainId)); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 structHash = keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * )); * bytes32 digest = _hashTypedDataV4(structHash, originChainId); * address signer = ECDSA.recover(digest, signature); * ``` * @param structHash Hashed struct as defined in https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct. * @param originChainId Chain id of network where message originates from. * @return bytes32 Hash digest that is recoverable via `EDCSA.recover`. */ function _hashTypedDataV4(bytes32 structHash, uint256 originChainId) internal view virtual returns (bytes32) { return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(originChainId), structHash); } // Reserve storage slots for future versions of this base contract to add state variables without // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables // are added. This is at bottom of contract to make sure it's always at the end of storage. uint256[1000] private __gap; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; /** * @notice Interface for the WETH9 contract. */ interface WETH9Interface { /** * @notice Burn Wrapped Ether and receive native Ether. * @param wad Amount of WETH to unwrap and send to caller. */ function withdraw(uint256 wad) external; /** * @notice Lock native Ether and mint Wrapped Ether ERC20 * @dev msg.value is amount of Wrapped Ether to mint/Ether to lock. */ function deposit() external payable; /** * @notice Get balance of WETH held by `guy`. * @param guy Address to get balance of. * @return wad Amount of WETH held by `guy`. */ function balanceOf(address guy) external view returns (uint256 wad); /** * @notice Transfer `wad` of WETH from caller to `guy`. * @param guy Address to send WETH to. * @param wad Amount of WETH to send. * @return ok True if transfer succeeded. */ function transfer(address guy, uint256 wad) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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 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.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../extensions/draft-IERC20PermitUpgradeable.sol"; import "../../../utils/AddressUpgradeable.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 SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable 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( IERC20Upgradeable token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20PermitUpgradeable 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(IERC20Upgradeable token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; import "../Address.sol"; import "../../interfaces/IERC1271.sol"; /** * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like * Argent and Gnosis Safe. * * _Available since v4.1._ */ library SignatureChecker { /** * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidSignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature); if (error == ECDSA.RecoverError.NoError && recovered == signer) { return true; } (bool success, bytes memory result) = signer.staticcall( abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature) ); return (success && result.length == 32 && abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.0; import "../../interfaces/draft-IERC1822Upgradeable.sol"; import "../ERC1967/ERC1967UpgradeUpgradeable.sol"; import "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. * * _Available since v4.1._ */ abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable { function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment address private immutable __self = address(this); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { require(address(this) != __self, "Function must be called through delegatecall"); require(_getImplementation() == __self, "Function must be called through active proxy"); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall"); _; } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual override notDelegated returns (bytes32) { return _IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeTo(address newImplementation) external virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, new bytes(0), false); } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data, true); } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeTo} and {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal override onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ReentrancyGuardUpgradeable is Initializable { // 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; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _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 This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @notice Concise list of functions in HubPool implementation. */ interface HubPoolInterface { // This leaf is meant to be decoded in the HubPool to rebalance tokens between HubPool and SpokePool. struct PoolRebalanceLeaf { // This is used to know which chain to send cross-chain transactions to (and which SpokePool to send to). uint256 chainId; // Total LP fee amount per token in this bundle, encompassing all associated bundled relays. uint256[] bundleLpFees; // Represents the amount to push to or pull from the SpokePool. If +, the pool pays the SpokePool. If negative // the SpokePool pays the HubPool. There can be arbitrarily complex rebalancing rules defined offchain. This // number is only nonzero when the rules indicate that a rebalancing action should occur. When a rebalance does // occur, runningBalances must be set to zero for this token and netSendAmounts should be set to the previous // runningBalances + relays - deposits in this bundle. If non-zero then it must be set on the SpokePool's // RelayerRefundLeaf amountToReturn as -1 * this value to show if funds are being sent from or to the SpokePool. int256[] netSendAmounts; // This is only here to be emitted in an event to track a running unpaid balance between the L2 pool and the L1 // pool. A positive number indicates that the HubPool owes the SpokePool funds. A negative number indicates that // the SpokePool owes the HubPool funds. See the comment above for the dynamics of this and netSendAmounts. int256[] runningBalances; // Used by data worker to mark which leaves should relay roots to SpokePools, and to otherwise organize leaves. // For example, each leaf should contain all the rebalance information for a single chain, but in the case where // the list of l1Tokens is very large such that they all can't fit into a single leaf that can be executed under // the block gas limit, then the data worker can use this groupIndex to organize them. Any leaves with // a groupIndex equal to 0 will relay roots to the SpokePool, so the data worker should ensure that only one // leaf for a specific chainId should have a groupIndex equal to 0. uint256 groupIndex; // Used as the index in the bitmap to track whether this leaf has been executed or not. uint8 leafId; // The bundleLpFees, netSendAmounts, and runningBalances are required to be the same length. They are parallel // arrays for the given chainId and should be ordered by the l1Tokens field. All whitelisted tokens with nonzero // relays on this chain in this bundle in the order of whitelisting. address[] l1Tokens; } // A data worker can optimistically store several merkle roots on this contract by staking a bond and calling // proposeRootBundle. By staking a bond, the data worker is alleging that the merkle roots all contain valid leaves // that can be executed later to: // - Send funds from this contract to a SpokePool or vice versa // - Send funds from a SpokePool to Relayer as a refund for a relayed deposit // - Send funds from a SpokePool to a deposit recipient to fulfill a "slow" relay // Anyone can dispute this struct if the merkle roots contain invalid leaves before the // challengePeriodEndTimestamp. Once the expiration timestamp is passed, executeRootBundle to execute a leaf // from the poolRebalanceRoot on this contract and it will simultaneously publish the relayerRefundRoot and // slowRelayRoot to a SpokePool. The latter two roots, once published to the SpokePool, contain // leaves that can be executed on the SpokePool to pay relayers or recipients. struct RootBundle { // Contains leaves instructing this contract to send funds to SpokePools. bytes32 poolRebalanceRoot; // Relayer refund merkle root to be published to a SpokePool. bytes32 relayerRefundRoot; // Slow relay merkle root to be published to a SpokePool. bytes32 slowRelayRoot; // This is a 1D bitmap, with max size of 256 elements, limiting us to 256 chainsIds. uint256 claimedBitMap; // Proposer of this root bundle. address proposer; // Number of pool rebalance leaves to execute in the poolRebalanceRoot. After this number // of leaves are executed, a new root bundle can be proposed uint8 unclaimedPoolRebalanceLeafCount; // When root bundle challenge period passes and this root bundle becomes executable. uint32 challengePeriodEndTimestamp; } // Each whitelisted L1 token has an associated pooledToken struct that contains all information used to track the // cumulative LP positions and if this token is enabled for deposits. struct PooledToken { // LP token given to LPs of a specific L1 token. address lpToken; // True if accepting new LP's. bool isEnabled; // Timestamp of last LP fee update. uint32 lastLpFeeUpdate; // Number of LP funds sent via pool rebalances to SpokePools and are expected to be sent // back later. int256 utilizedReserves; // Number of LP funds held in contract less utilized reserves. uint256 liquidReserves; // Number of LP funds reserved to pay out to LPs as fees. uint256 undistributedLpFees; } // Helper contracts to facilitate cross chain actions between HubPool and SpokePool for a specific network. struct CrossChainContract { address adapter; address spokePool; } function setPaused(bool pause) external; function emergencyDeleteProposal() external; function relaySpokePoolAdminFunction(uint256 chainId, bytes memory functionData) external; function setProtocolFeeCapture(address newProtocolFeeCaptureAddress, uint256 newProtocolFeeCapturePct) external; function setBond(IERC20 newBondToken, uint256 newBondAmount) external; function setLiveness(uint32 newLiveness) external; function setIdentifier(bytes32 newIdentifier) external; function setCrossChainContracts( uint256 l2ChainId, address adapter, address spokePool ) external; function enableL1TokenForLiquidityProvision(address l1Token) external; function disableL1TokenForLiquidityProvision(address l1Token) external; function addLiquidity(address l1Token, uint256 l1TokenAmount) external payable; function removeLiquidity( address l1Token, uint256 lpTokenAmount, bool sendEth ) external; function exchangeRateCurrent(address l1Token) external returns (uint256); function liquidityUtilizationCurrent(address l1Token) external returns (uint256); function liquidityUtilizationPostRelay(address l1Token, uint256 relayedAmount) external returns (uint256); function sync(address l1Token) external; function proposeRootBundle( uint256[] memory bundleEvaluationBlockNumbers, uint8 poolRebalanceLeafCount, bytes32 poolRebalanceRoot, bytes32 relayerRefundRoot, bytes32 slowRelayRoot ) external; function executeRootBundle( uint256 chainId, uint256 groupIndex, uint256[] memory bundleLpFees, int256[] memory netSendAmounts, int256[] memory runningBalances, uint8 leafId, address[] memory l1Tokens, bytes32[] memory proof ) external; function disputeRootBundle() external; function claimProtocolFeesCaptured(address l1Token) external; function setPoolRebalanceRoute( uint256 destinationChainId, address l1Token, address destinationToken ) external; function setDepositRoute( uint256 originChainId, uint256 destinationChainId, address originToken, bool depositsEnabled ) external; function poolRebalanceRoute(uint256 destinationChainId, address l1Token) external view returns (address destinationToken); function loadEthForL2Calls() external payable; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../StringsUpgradeable.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSAUpgradeable { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20PermitUpgradeable { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. * * _Available since v4.1._ */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.0; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822ProxiableUpgradeable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.3) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; import "../beacon/IBeaconUpgradeable.sol"; import "../../interfaces/IERC1967Upgradeable.sol"; import "../../interfaces/draft-IERC1822Upgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/StorageSlotUpgradeable.sol"; import "../utils/Initializable.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable { function __ERC1967Upgrade_init() internal onlyInitializing { } function __ERC1967Upgrade_init_unchained() internal onlyInitializing { } // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { _functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallUUPS( address newImplementation, bytes memory data, bool forceCall ) internal { // Upgrades from old implementations will perform a rollback test. This test requires the new // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing // this special case will break upgrade paths from old UUPS implementation to new ones. if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) { require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); } catch { revert("ERC1967Upgrade: new implementation is not UUPS"); } _upgradeToAndCall(newImplementation, data, forceCall); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data); } } /** * @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) private returns (bytes memory) { require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed"); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlotUpgradeable { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeaconUpgradeable { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.3) (interfaces/IERC1967.sol) pragma solidity ^0.8.0; /** * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. * * _Available since v4.9._ */ interface IERC1967Upgradeable { /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "viaIR": true, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"rootBundleId","type":"uint256"}],"name":"EmergencyDeleteRootBundle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"originToken","type":"address"},{"indexed":true,"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"EnabledDepositRoute","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToReturn","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"refundAmounts","type":"uint256[]"},{"indexed":true,"internalType":"uint32","name":"rootBundleId","type":"uint32"},{"indexed":true,"internalType":"uint32","name":"leafId","type":"uint32"},{"indexed":false,"internalType":"address","name":"l2TokenAddress","type":"address"},{"indexed":false,"internalType":"address[]","name":"refundAddresses","type":"address[]"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"ExecutedRelayerRefundRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalFilledAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fillAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"repaymentChainId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"originChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"indexed":false,"internalType":"int64","name":"relayerFeePct","type":"int64"},{"indexed":false,"internalType":"int64","name":"realizedLpFeePct","type":"int64"},{"indexed":true,"internalType":"uint32","name":"depositId","type":"uint32"},{"indexed":false,"internalType":"address","name":"destinationToken","type":"address"},{"indexed":false,"internalType":"address","name":"relayer","type":"address"},{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"bytes","name":"message","type":"bytes"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"int64","name":"relayerFeePct","type":"int64"},{"internalType":"bool","name":"isSlowRelay","type":"bool"},{"internalType":"int256","name":"payoutAdjustmentPct","type":"int256"}],"indexed":false,"internalType":"struct SpokePool.RelayExecutionInfo","name":"updatableRelayData","type":"tuple"}],"name":"FilledRelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"originChainId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"indexed":false,"internalType":"int64","name":"relayerFeePct","type":"int64"},{"indexed":true,"internalType":"uint32","name":"depositId","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"quoteTimestamp","type":"uint32"},{"indexed":false,"internalType":"address","name":"originToken","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"bytes","name":"message","type":"bytes"}],"name":"FundsDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PausedDeposits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PausedFills","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"relayer","type":"address"},{"indexed":false,"internalType":"address","name":"refundToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"originChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"indexed":false,"internalType":"int64","name":"realizedLpFeePct","type":"int64"},{"indexed":true,"internalType":"uint32","name":"depositId","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"fillBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"previousIdenticalRequests","type":"uint256"}],"name":"RefundRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"rootBundleId","type":"uint32"},{"indexed":true,"internalType":"bytes32","name":"relayerRefundRoot","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"slowRelayRoot","type":"bytes32"}],"name":"RelayedRootBundle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int64","name":"newRelayerFeePct","type":"int64"},{"indexed":true,"internalType":"uint32","name":"depositId","type":"uint32"},{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"address","name":"updatedRecipient","type":"address"},{"indexed":false,"internalType":"bytes","name":"updatedMessage","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"depositorSignature","type":"bytes"}],"name":"RequestedSpeedUpDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"newBuffer","type":"uint32"}],"name":"SetDepositQuoteTimeBuffer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newHubPool","type":"address"}],"name":"SetHubPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"SetXDomainAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToReturn","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":true,"internalType":"uint32","name":"leafId","type":"uint32"},{"indexed":true,"internalType":"address","name":"l2TokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"TokensBridged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"MAX_TRANSFER_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLOW_FILL_MAX_TOKENS_TO_SEND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPDATE_DEPOSIT_DETAILS_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_initialDepositId","type":"uint32"},{"internalType":"address","name":"_crossDomainAdmin","type":"address"},{"internalType":"address","name":"_hubPool","type":"address"},{"internalType":"address","name":"_wrappedNativeTokenAddress","type":"address"}],"name":"__SpokePool_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crossDomainAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"originToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"internalType":"int64","name":"relayerFeePct","type":"int64"},{"internalType":"uint32","name":"quoteTimestamp","type":"uint32"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"uint256","name":"maxCount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"depositCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"depositQuoteTimeBuffer","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rootBundleId","type":"uint256"}],"name":"emergencyDeleteRootBundle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"enabledDepositRoutes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"rootBundleId","type":"uint32"},{"components":[{"internalType":"uint256","name":"amountToReturn","type":"uint256"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256[]","name":"refundAmounts","type":"uint256[]"},{"internalType":"uint32","name":"leafId","type":"uint32"},{"internalType":"address","name":"l2TokenAddress","type":"address"},{"internalType":"address[]","name":"refundAddresses","type":"address[]"}],"internalType":"struct SpokePoolInterface.RelayerRefundLeaf","name":"relayerRefundLeaf","type":"tuple"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"executeRelayerRefundLeaf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"depositor","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"destinationToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"originChainId","type":"uint256"},{"internalType":"int64","name":"realizedLpFeePct","type":"int64"},{"internalType":"int64","name":"relayerFeePct","type":"int64"},{"internalType":"uint32","name":"depositId","type":"uint32"},{"internalType":"uint32","name":"rootBundleId","type":"uint32"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"int256","name":"payoutAdjustment","type":"int256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"executeSlowRelayLeaf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"fillCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"depositor","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"destinationToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxTokensToSend","type":"uint256"},{"internalType":"uint256","name":"repaymentChainId","type":"uint256"},{"internalType":"uint256","name":"originChainId","type":"uint256"},{"internalType":"int64","name":"realizedLpFeePct","type":"int64"},{"internalType":"int64","name":"relayerFeePct","type":"int64"},{"internalType":"uint32","name":"depositId","type":"uint32"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"uint256","name":"maxCount","type":"uint256"}],"name":"fillRelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"depositor","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"updatedRecipient","type":"address"},{"internalType":"address","name":"destinationToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxTokensToSend","type":"uint256"},{"internalType":"uint256","name":"repaymentChainId","type":"uint256"},{"internalType":"uint256","name":"originChainId","type":"uint256"},{"internalType":"int64","name":"realizedLpFeePct","type":"int64"},{"internalType":"int64","name":"relayerFeePct","type":"int64"},{"internalType":"int64","name":"updatedRelayerFeePct","type":"int64"},{"internalType":"uint32","name":"depositId","type":"uint32"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bytes","name":"updatedMessage","type":"bytes"},{"internalType":"bytes","name":"depositorSignature","type":"bytes"},{"internalType":"uint256","name":"maxCount","type":"uint256"}],"name":"fillRelayWithUpdatedDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hubPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_initialDepositId","type":"uint32"},{"internalType":"address","name":"_hubPool","type":"address"},{"internalType":"address","name":"_wethAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"numberOfDeposits","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"pause","type":"bool"}],"name":"pauseDeposits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"pause","type":"bool"}],"name":"pauseFills","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausedDeposits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedFills","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"refundsRequested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"relayFills","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"relayerRefundRoot","type":"bytes32"},{"internalType":"bytes32","name":"slowRelayRoot","type":"bytes32"}],"name":"relayRootBundle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"refundToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"originChainId","type":"uint256"},{"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"internalType":"int64","name":"realizedLpFeePct","type":"int64"},{"internalType":"uint32","name":"depositId","type":"uint32"},{"internalType":"uint256","name":"fillBlock","type":"uint256"},{"internalType":"uint256","name":"maxCount","type":"uint256"}],"name":"requestRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rootBundles","outputs":[{"internalType":"bytes32","name":"slowRelayRoot","type":"bytes32"},{"internalType":"bytes32","name":"relayerRefundRoot","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newCrossDomainAdmin","type":"address"}],"name":"setCrossDomainAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newDepositQuoteTimeBuffer","type":"uint32"}],"name":"setDepositQuoteTimeBuffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"originToken","type":"address"},{"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setEnableRoute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newHubPool","type":"address"}],"name":"setHubPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"depositor","type":"address"},{"internalType":"int64","name":"updatedRelayerFeePct","type":"int64"},{"internalType":"uint32","name":"depositId","type":"uint32"},{"internalType":"address","name":"updatedRecipient","type":"address"},{"internalType":"bytes","name":"updatedMessage","type":"bytes"},{"internalType":"bytes","name":"depositorSignature","type":"bytes"}],"name":"speedUpDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wrappedNativeToken","outputs":[{"internalType":"contract WETH9Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a08060405234620000e157306080526000549060ff8260081c166200008f575060ff8082161062000053575b6040516158e79081620000e7823960805181818161103501528181611565015261180d0152f35b60ff90811916176000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160ff8152a1386200002c565b62461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b6064820152608490fd5b600080fdfe6080604052600436101561001b575b361561001957600080fd5b005b60003560e01c80630c2097f7146102bb5780631186ec33146102b657806317fcb39b146102b15780631b3d5559146102ac5780631dfb2d02146102a757806323cd9a47146102a2578063272751c71461029d5780632752042e1461029857806329cb924d146102935780633659cfe61461028e5780633ddf50591461028957806344b8be6814610284578063493a4f841461027f5780634f1ef2861461027a5780635249fef1146102755780635285e0581461027057806352d1902d1461026b57806357f6dcb8146102665780635ceaec32146102615780636068d6cb1461025c578063647c576c14610257578063715018a614610252578063738b62e51461024d5780637e688bba14610248578063872af6ea146102435780638a7860ce1461023e5780638da5cb5b1461023957806399cc2968146102345780639a8a05921461022f578063a1244c671461022a578063a634893f14610225578063a78e4b6014610220578063ac9650d81461021b578063b5e1bf5f14610216578063c0a8bdd114610211578063dda521131461020c578063ddd224f114610207578063de7eba7814610202578063e1904402146101fd578063ee2a53f8146101f8578063f06850f6146101f35763f2fde38b0361000e57612746565b6126fb565b61269f565b6125dc565b612592565b61254a565b612505565b61249f565b612455565b6123d1565b612292565b61209d565b612057565b61201e565b611f52565b611eff565b611e45565b611ddf565b611d3d565b611c70565b611bcc565b611a5c565b611a17565b61192c565b6118e6565b6117c7565b611774565b6116fb565b6114f9565b611453565b6113ad565b6111f0565b610fe5565b610fac565b610ee5565b610dff565b610daa565b610d54565b610c5d565b610ba4565b610787565b6106c3565b6004359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b6044359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b6064359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b60c435908160070b82036102e357565b608435908160070b82036102e357565b61010435908160070b82036102e357565b61012435908160070b82036102e357565b61014435908160070b82036102e357565b60e4359063ffffffff821682036102e357565b610104359063ffffffff821682036102e357565b60a4359063ffffffff821682036102e357565b6004359063ffffffff821682036102e357565b610124359063ffffffff821682036102e357565b610164359063ffffffff821682036102e357565b359063ffffffff821682036102e357565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b67ffffffffffffffff811161048e57604052565b61044b565b60a0810190811067ffffffffffffffff82111761048e57604052565b6020810190811067ffffffffffffffff82111761048e57604052565b6040810190811067ffffffffffffffff82111761048e57604052565b6060810190811067ffffffffffffffff82111761048e57604052565b6080810190811067ffffffffffffffff82111761048e57604052565b60e0810190811067ffffffffffffffff82111761048e57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761048e57604052565b6040519060c0820182811067ffffffffffffffff82111761048e57604052565b60405190610140820182811067ffffffffffffffff82111761048e57604052565b604051906105ca82610493565b565b67ffffffffffffffff811161048e57601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b81601f820112156102e35780359061061d826105cc565b9261062b604051948561053b565b828452602083830101116102e357816000926020809301838601378301015290565b67ffffffffffffffff811161048e5760051b60200190565b81601f820112156102e35780359161067c8361064d565b9261068a604051948561053b565b808452602092838086019260051b8201019283116102e3578301905b8282106106b4575050505090565b813581529083019083016106a6565b346102e3576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576106fb6102c0565b6107036102e8565b9061070c61030b565b60a435928360070b84036102e357610722610372565b61072a6103c5565b6107326103d8565b91610124359667ffffffffffffffff978881116102e357610757903690600401610606565b94610164359889116102e357610774610019993690600401610665565b9761014435976084359260643592613aa5565b6101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576107ba6102c0565b6107c26102e8565b60443591606435906107d2610382565b6107da6103ec565b9060c43567ffffffffffffffff81116102e3576107fb903690600401610606565b946108046130c2565b61086b95865460ff8160e81c16610b3b576108656108606108598961084a8773ffffffffffffffffffffffffffffffffffffffff1660005261086d602052604060002090565b90600052602052604060002090565b5460ff1690565b613131565b6108836706f05b59d3b2000061087d8660070b613669565b10613196565b61089e6ec097ce7bc90715b34b9f10000000008a11156131fb565b6108d760e4356108cf8573ffffffffffffffffffffffffffffffffffffffff16600052610870602052604060002090565b541115613260565b63ffffffff9061090c828260a01c166108fc6108f3828a6132f4565b63ffffffff1690565b4210159081610b23575b50613327565b60c01c169661096d61091d8961338c565b61086b907fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff7bffffffff00000000000000000000000000000000000000000000000083549260c01b169116179055565b6109988373ffffffffffffffffffffffffffffffffffffffff16600052610870602052604060002090565b6109a38a82546133a1565b9055886109e36109ca6109ca845473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff851690811480610b1a575b15610adf5750610a3591610a1b6109ca9234146133ae565b5473ffffffffffffffffffffffffffffffffffffffff1690565b94853b156102e3576000600496604051978880927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1928315610ada577fafc4df6845a4ab948b492800d3d8a25d538a102a2bc07cd01f1cfa097fddcff696610ab494610ac1575b505b604051958695339b469088613413565b0390a46100196001606555565b80610ace610ad49261047a565b80610b99565b38610aa2565b612a41565b7fafc4df6845a4ab948b492800d3d8a25d538a102a2bc07cd01f1cfa097fddcff6979250610ab49491610b159130903390613469565b610aa4565b50341515610a03565b610b3291506108f3908961330f565b42111538610906565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f506175736564206465706f7369747300000000000000000000000000000000006044820152fd5b60009103126102e357565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff61086b5416604051908152f35b81601f820112156102e357803591610c0e8361064d565b92610c1c604051948561053b565b808452602092838086019260051b8201019283116102e3578301905b828210610c46575050505090565b838091610c5284610351565b815201910190610c38565b346102e3577ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6060813601126102e357610c956103ff565b60243567ffffffffffffffff928382116102e35760c09082360301126102e357610cbd61057c565b90806004013582526024810135602083015260448101358481116102e357610ceb9060043691840101610665565b6040830152610cfc6064820161043a565b6060830152610d0d60848201610351565b608083015260a4810135908482116102e3576004610d2e9236920101610bf7565b60a08201526044359283116102e357610d4e610019933690600401610665565b91613bed565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357610da3610d8e6102c0565b610d9661282e565b610d9e6130c2565b61433c565b6001606555005b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576004356000526108716020526020604060002054604051908152f35b801515036102e357565b346102e35760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357610e366102c0565b60243573ffffffffffffffffffffffffffffffffffffffff60443592610e5b84610df5565b610e6361282e565b610e6b6130c2565b167f0a21fdd43d0ad0c62689ee7230a47309a050755bcc52eba00310add65297692a602060009483865261086d825260408620858752825260408620901515907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a3600160655580f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3577f0e55dd180fa793d9036c804d0a116e6a7617a48e72cee1f83d92793a793fcc036020610f3f6103ff565b610f4761282e565b610f4f6130c2565b61086b80547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff77ffffffff00000000000000000000000000000000000000008460a01b16911617905563ffffffff60405191168152a16001606555005b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576020604051428152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761101c6102c0565b73ffffffffffffffffffffffffffffffffffffffff90817f000000000000000000000000000000000000000000000000000000000000000016916110628330141561291c565b6110917f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc9382855416146129a7565b61109961282e565b604051906110a6826104af565b600082527f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156110e05750506100199150612ad8565b6020600491604094939451928380927f52d1902d00000000000000000000000000000000000000000000000000000000825286165afa600091816111c0575b506111ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608490fd5b0390fd5b610019936111bb9114612a4d565b612bc4565b6111e291925060203d81116111e9575b6111da818361053b565b810190612a32565b903861111f565b503d6111d0565b346102e35760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761001973ffffffffffffffffffffffffffffffffffffffff61123f6103ff565b61136961124a6102e8565b610d9e61125561030b565b9161127361126161032e565b9561091d60ff60005460081c1661300a565b60405161127f816104cb565b6009815260208101907f4143524f53532d563200000000000000000000000000000000000000000000008252604051916112b8836104cb565b6005835260208301917f312e302e3000000000000000000000000000000000000000000000000000000083526112fe60ff60005460081c166112f98161300a565b61300a565b519020915190209061047f5561048055611316613095565b61131e6130a6565b61136461086b750e1000000000000000000000000000000000000000007fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff825416179055565b614270565b1673ffffffffffffffffffffffffffffffffffffffff61086b91167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b346102e3576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576113e56102c0565b6113ed6102e8565b6113f561030b565b60e4358060070b81036102e35761140a610392565b611412610412565b91610144359567ffffffffffffffff87116102e357611438610019973690600401610606565b94610164359660c4359260a43592608435926064359261372e565b346102e35760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760243560043561149061282e565b6114986130c2565b61086c80546801000000000000000081101561048e5763ffffffff91600182019055836114c48261265e565b5084600182015555167fc86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af600080a46001606555005b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761152b6102c0565b60243567ffffffffffffffff81116102e35761154b903690600401610606565b9073ffffffffffffffffffffffffffffffffffffffff91827f000000000000000000000000000000000000000000000000000000000000000016926115928430141561291c565b6115c17f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc9482865416146129a7565b6115c961282e565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156115ff5750506100199150612ad8565b6020600491604094939451928380927f52d1902d00000000000000000000000000000000000000000000000000000000825286165afa600091816116db575b506116c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608490fd5b610019936116d69114612a4d565b612d30565b6116f491925060203d81116111e9576111da818361053b565b903861163e565b346102e35760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff6117476102c0565b1660005261086d6020526040600020602435600052602052602060ff604060002054166040519015158152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff6108695416604051908152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163003611862576040517f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8152602090f35b0390f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152fd5b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602063ffffffff61086b5460a01c16604051908152f35b346102e3576102007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576119646102c0565b61196c6102e8565b9061197561030b565b9161197e61032e565b92611987610392565b936119906103a3565b6119986103b4565b6119a0610426565b91610184359767ffffffffffffffff988981116102e3576119c5903690600401610606565b946101a4358a81116102e3576119df903690600401610606565b966101c4359a8b116102e3576119fc6100199b3690600401610606565b986101e4359a60e4359360c4359360a43593608435936138d7565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602060ff61086b5460e81c166040519015158152f35b346102e35760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357611a936103ff565b611b06611a9e6102e8565b611aa661030b565b9060005493611acc60ff8660081c161580968197611bbe575b8115611b9e575b50612e3a565b84611afd60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006000541617600055565b611b6857612ec5565b611b0c57005b611b397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff60005416600055565b604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249890602090a1005b611b996101007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff6000541617600055565b612ec5565b303b15915081611bb0575b5038611ac6565b6001915060ff161438611ba9565b600160ff8216109150611abf565b346102e3576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112611c6d57611c0461282e565b8073ffffffffffffffffffffffffffffffffffffffff610c8c8054907fffffffffffffffffffffffff000000000000000000000000000000000000000082169055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b80fd5b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3577fe88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492196020600435611cce81610df5565b611cd661282e565b611cde6130c2565b151561086b80547fffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7dff00000000000000000000000000000000000000000000000000000000008460e81b169116179055604051908152a16001606555005b346102e35760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357611d746102c0565b602435908160070b82036102e3576044359163ffffffff831683036102e357611d9b61032e565b67ffffffffffffffff936084358581116102e357611dbd903690600401610606565b9260a4359586116102e357611dd9610019963690600401610606565b9461367a565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff611e2b6102c0565b1660005261086f6020526020604060002054604051908152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357600435611e7f61282e565b611e876130c2565b611e908161265e565b919091611ed057600191600092818480935501557f3569b846531b754c99cb80df3f49cd72fa6fe106aaee5ab8e0caf35a9d7ce88d8280a2600160655580f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff610c8c5416604051908152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3577f2d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e6020600435611fb081610df5565b611fb861282e565b611fc06130c2565b151561086b80547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff7cff000000000000000000000000000000000000000000000000000000008460e01b169116179055604051908152a16001606555005b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576020604051468152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602063ffffffff61086b5460c01c16604051908152f35b346102e3576101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576120d56102c0565b60243590604435907face81ce0f8b8d27a1aed0c4df5f6b2743e46fc50fe3e0183dd7cd6a7b9db22fb63ffffffff606435610ab4612111610382565b9161211a6103ec565b9260c435906121276130c2565b6121426ec097ce7bc90715b34b9f10000000008b11156131fb565b73ffffffffffffffffffffffffffffffffffffffff881660005261086f60205261217560e4356040600020541115613260565b60408051336020820190815273ffffffffffffffffffffffffffffffffffffffff8b1692820192909252606081018c9052608081018b905260a08101859052600783900b60c082015263ffffffff871660e08201526101008101849052612221919061220d8161012081015b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810183528261053b565b519020600052610871602052604060002090565b9283549361222e85613a13565b905561223b8b1515613a40565b61224689838d615394565b604051968796169a3399879260a094919796959273ffffffffffffffffffffffffffffffffffffffff60c08601991685526020850152604084015260070b606083015260808201520152565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760206040517f0e058f05b73c62ee68329d2c67c067aaae9a06503cc306378d144d0f0177882b8152f35b60005b8381106122fe5750506000910152565b81810151838201526020016122ee565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361234a815180928187528780880191016122eb565b0116010190565b602080820190808352835180925260408301928160408460051b8301019501936000915b8483106123855750505050505090565b90919293949584806123c1837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc086600196030187528a5161230e565b9801930193019194939290612375565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35767ffffffffffffffff6004358181116102e357366023820112156102e35780600401359182116102e3573660248360051b830101116102e35761185e91602461244992016157e3565b60405191829182612351565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576020604051701d6329f1c35ca4bfabb9f56100000000008152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff6124eb6102c0565b166000526108706020526020604060002054604051908152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602060ff61086b5460e01c166040519015158152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760206040516ec097ce7bc90715b34b9f10000000008152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357610da36125cc6102c0565b6125d461282e565b6113646130c2565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff61086a5416604051908152f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61086c90815481101561269a57600391600052027f71cd7344f4eb2efc8e30291f6dbdb44d618ca368ea5425d217c1d604bf26b84d0190600090565b61262f565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760043561086c548110156102e3576126e760409161265e565b506001815491015482519182526020820152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760043560005261086e6020526020604060002054604051908152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761277d6102c0565b61278561282e565b73ffffffffffffffffffffffffffffffffffffffff8116156127aa57610019906128ae565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff610c8c5416330361285057565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b610c8c90815473ffffffffffffffffffffffffffffffffffffffff80921692837fffffffffffffffffffffffff00000000000000000000000000000000000000008316179055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b1561292357565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152fd5b156129ae57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152fd5b908160209103126102e3575190565b6040513d6000823e3d90fd5b15612a5457565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152fd5b803b15612b405773ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc91167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152fd5b612bcd81612ad8565b60405173ffffffffffffffffffffffffffffffffffffffff82167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2825115801590612d28575b612c2057505050565b813b15612ca6575060008281926020612ca395519201905af4612c41612d93565b60405191612c4e836104e7565b602783527f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c60208401527f206661696c6564000000000000000000000000000000000000000000000000006040840152612dc3565b50565b807f08c379a0000000000000000000000000000000000000000000000000000000006084925260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152fd5b506000612c17565b612d3981612ad8565b60405173ffffffffffffffffffffffffffffffffffffffff82167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2825115801590612d8b57612c2057505050565b506001612c17565b3d15612dbe573d90612da4826105cc565b91612db2604051938461053b565b82523d6000602084013e565b606090565b90919015612dcf575090565b90612de9565b906020612de692818152019061230e565b90565b805190919015612dfc5750805190602001fd5b6111a9906040519182917f08c379a000000000000000000000000000000000000000000000000000000000835260206004840152602483019061230e565b15612e4157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152fd5b9161136973ffffffffffffffffffffffffffffffffffffffff92612f156105ca95612efb60ff60005460081c166112f98161300a565b612f04336128ae565b61091d60ff60005460081c1661300a565b604051612f21816104cb565b6009815260208101907f4143524f53532d56320000000000000000000000000000000000000000000000825260405191612f5a836104cb565b6005835260208301917f312e302e300000000000000000000000000000000000000000000000000000008352612f9b60ff60005460081c166112f98161300a565b519020915190209061047f5561048055612fb3613095565b612fbb6130a6565b61300161086b750e1000000000000000000000000000000000000000007fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff825416179055565b610d9e81614270565b1561301157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152fd5b6105ca60ff60005460081c1661300a565b6130bb60ff60005460081c166112f98161300a565b6001606555565b6002606554146130d3576002606555565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b1561313857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f44697361626c656420726f7574650000000000000000000000000000000000006044820152fd5b1561319d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e76616c69642072656c6179657220666565000000000000000000000000006044820152fd5b1561320257565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416d6f756e7420746f6f206c61726765000000000000000000000000000000006044820152fd5b1561326757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f41626f7665206d617820636f756e7400000000000000000000000000000000006044820152fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b63ffffffff918216908216039190821161330a57565b6132c5565b91909163ffffffff8080941691160191821161330a57565b1561332e57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f696e76616c69642071756f74652074696d6500000000000000000000000000006044820152fd5b63ffffffff80911690811461330a5760010190565b9190820180921161330a57565b156133b557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6d73672e76616c7565206d757374206d6174636820616d6f756e7400000000006044820152fd5b9360e09593612de698979363ffffffff938752602087015260070b604086015216606084015273ffffffffffffffffffffffffffffffffffffffff80921660808401521660a08201528160c0820152019061230e565b90926105ca93604051937f23b872dd00000000000000000000000000000000000000000000000000000000602086015273ffffffffffffffffffffffffffffffffffffffff80921660248601521660448401526064830152606482526134ce82610493565b6040516135399173ffffffffffffffffffffffffffffffffffffffff166134f4826104cb565b6000806020958685527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656487860152868151910182855af1613533612d93565b916135e8565b80518061354557505050565b818391810103126102e35781015161355c81610df5565b156135645750565b608490604051907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b9192901561366357508151156135fc575090565b3b156136055790565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b82612de9565b6000808212613676575090565b0390565b6137249063ffffffff7fa6aa57bd282fc82378458de27be4eadfa791a0c7321c49562eeba8b2643dd56695979694976136b16130c2565b6136d98887838860070b986136d16706f05b59d3b2000061087d8c613669565b468e89614408565b613712604051968796875273ffffffffffffffffffffffffffffffffffffffff809316602088015260806040880152608087019061230e565b9285840360608701521697169561230e565b0390a36001606555565b9a9692909897999395916137406130c2565b61086b5460e01c60ff161561375490613872565b61375c61059c565b73ffffffffffffffffffffffffffffffffffffffff909c168c5273ffffffffffffffffffffffffffffffffffffffff8a1660208d015273ffffffffffffffffffffffffffffffffffffffff1660408c015260608b015260808a01524660a08a015260070b60c0890152600787900b60e089015261010094858901906137e6919063ffffffff169052565b6101209581878a01526137f761059c565b988952600060208a0190815260079890980b60408a015273ffffffffffffffffffffffffffffffffffffffff166060890152608088015260a087015260c086015260e085015283016000905282016000905281516138549061493c565b905261385f81614cde565b61386891615509565b6105ca6001606555565b1561387957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5061757365642066696c6c7300000000000000000000000000000000000000006044820152fd5b9d9c9b959e9390928e9799939b98929b6138ef6130c2565b61086b5460e01c60ff161561390390613872565b61390b61059c565b73ffffffffffffffffffffffffffffffffffffffff909916895273ffffffffffffffffffffffffffffffffffffffff16602089015273ffffffffffffffffffffffffffffffffffffffff1660408801526060870152608086018890524660a087015260070b60c086015260070b60e085015263ffffffff85166101008581019190915291610120938486015261399f61059c565b948552600060208601908152600789900b604087015273ffffffffffffffffffffffffffffffffffffffff8a166060870152949c8d8b608082015260a0015260c08d015260e08c01528a016000905289016000905288516139ff9061493c565b9052613a0a96614408565b61385f81614cde565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461330a5760010190565b15613a4757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f416d6f756e74206d757374206265203e203000000000000000000000000000006044820152fd5b9a9895939199969492909799613ab96130c2565b613ac161059c565b73ffffffffffffffffffffffffffffffffffffffff909c168c5273ffffffffffffffffffffffffffffffffffffffff891660208d015273ffffffffffffffffffffffffffffffffffffffff1660408c015260608b015260808a01524660a08a015260070b60c089015260070b60e088015263ffffffff1661010087810191909152610120918083890152613b5361059c565b97885260006020890181815260408a019190915273ffffffffffffffffffffffffffffffffffffffff90951660608901526080880152600060a0880152701d6329f1c35ca4bfabb9f561000000000060c08801527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60e08801526001908701528501528351613be19061493c565b9052613a0a9183614779565b9190613bf76130c2565b6020810190613c0882514614613e65565b60a081019081515192613c22604083019485515114613eca565b6002613c2d8761265e565b50613c46613c41600198868a850154614169565b613f2f565b0194613cc26060840196613c92613c8d613c89613c6a6108f38c5163ffffffff1690565b848160081c600052602052600160ff60406000205492161b8091161490565b1590565b613f94565b613ca36108f3895163ffffffff1690565b908160081c600052602052604060002090600160ff835492161b179055565b84515160005b818110613dee5750505090613d507ff8bd640004bcec1b89657020f561d0b070cbdf662d0b158db9dccb0a8301bfab93928251613d5d575b613d356080613d19855193519851995163ffffffff1690565b94015173ffffffffffffffffffffffffffffffffffffffff1690565b935160405194859463ffffffff8091169a169833938661408b565b0390a46105ca6001606555565b613d668361413a565b8251815190613d79895163ffffffff1690565b917f828fc203220356df8f072a91681caee7d5c75095e2a95e80ed5a14b384697f7173ffffffffffffffffffffffffffffffffffffffff613dd1608089015173ffffffffffffffffffffffffffffffffffffffff1690565b6040805195865233602087015291169463ffffffff1693a4613d00565b80613dfb84928951613ff9565b5180613e09575b5001613cc8565b613e5f90613e316109ca60808a015173ffffffffffffffffffffffffffffffffffffffff1690565b613e59613e3f858c51613ff9565b5173ffffffffffffffffffffffffffffffffffffffff1690565b906140df565b38613e02565b15613e6c57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f496e76616c696420636861696e496400000000000000000000000000000000006044820152fd5b15613ed157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c6964206c65616600000000000000000000000000000000000000006044820152fd5b15613f3657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4261642050726f6f6600000000000000000000000000000000000000000000006044820152fd5b15613f9b57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f416c726561647920636c61696d656400000000000000000000000000000000006044820152fd5b805182101561269a5760209160051b010190565b90815180825260208080930193019160005b82811061402d575050505090565b83518552938101939281019260010161401f565b90815180825260208080930193019160005b828110614061575050505090565b835173ffffffffffffffffffffffffffffffffffffffff1685529381019392810192600101614053565b936140ad608094936140d893989798875260a0602088015260a087019061400d565b9073ffffffffffffffffffffffffffffffffffffffff80941660408701528582036060870152614041565b9416910152565b6105ca9273ffffffffffffffffffffffffffffffffffffffff604051937fa9059cbb0000000000000000000000000000000000000000000000000000000060208601521660248401526044830152604482526134ce82610503565b6105ca9073ffffffffffffffffffffffffffffffffffffffff90816080820151169161086a54169051916140df565b612de6929160405161420f816121e1602082019460208652805160408401526020810151606084015260a06141ae604083015160c0608087015261010086019061400d565b9163ffffffff6060820151168286015273ffffffffffffffffffffffffffffffffffffffff60808201511660c086015201517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08483030160e0850152614041565b51902091929091906000915b84518310156142685761422e8386613ff9565b5190600082821015614256575060005260205261425060406000205b92613a13565b9161421b565b6040916142509382526020522061424a565b915092501490565b73ffffffffffffffffffffffffffffffffffffffff1680156142de57610869817fffffffffffffffffffffffff00000000000000000000000000000000000000008254161790557fa9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849600080a2565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4261642062726964676520726f757465722061646472657373000000000000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff1680156143aa5761086a817fffffffffffffffffffffffff00000000000000000000000000000000000000008254161790557f1f17a88f67b0f49060a34bec1a4723a563620e6aa265eb640b5046dcee0759a0600080a2565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4261642068756220706f6f6c20616464726573730000000000000000000000006044820152fd5b9373ffffffffffffffffffffffffffffffffffffffff6105ca97969492939460208151910120916040519363ffffffff60208601967f0e058f05b73c62ee68329d2c67c067aaae9a06503cc306378d144d0f0177882b885216604086015286606086015260070b60808501521660a083015260c082015260c0815261448c8161051f565b5190209061047f549061048054906040519160208301937fc2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e8552604084015260608301526080820152608081526144e281610493565b519020906040519060208201927f19010000000000000000000000000000000000000000000000000000000000008452602283015260428201526042815261452981610503565b51902061453692916145b2565b1561453d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c6964207369676e61747572650000000000000000000000000000006044820152fd5b604090612de693928152816020820152019061230e565b90916145be81846146b2565b600581101561468357159081614660575b50614658576000918291604051614616816121e160208201947f1626ba7e00000000000000000000000000000000000000000000000000000000998a87526024840161459b565b51915afa90614623612d93565b8261464c575b8261463357505090565b61464891925060208082518301019101612a32565b1490565b80516020149250614629565b505050600190565b905073ffffffffffffffffffffffffffffffffffffffff808416911614386145cf565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9060418151146000146146e0576146dc916020820151906060604084015193015160001a906146ea565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831161476d5791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa15610ada57815173ffffffffffffffffffffffffffffffffffffffff811615614767579190565b50600190565b50505050600090600390565b909161012082519201516040938451908582019082821067ffffffffffffffff83111761048e57614811956147b892885283526020830193845261265e565b50549161420f865180926147de602083019560208752518a808501526080840190614876565b90516060830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810183528261053b565b156148195750565b606490517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f496e76616c696420736c6f772072656c61792070726f6f6600000000000000006044820152fd5b805173ffffffffffffffffffffffffffffffffffffffff168252612de6919060208181015173ffffffffffffffffffffffffffffffffffffffff169083015260408181015173ffffffffffffffffffffffffffffffffffffffff1690830152606081015160608301526080810151608083015260a081015160a083015261490760c082015160c084019060070b9052565b60e08181015160070b908301526101008181015163ffffffff169083015261012080910151916101408092820152019061230e565b604051614959816121e16020820194602086526040830190614876565b51902090565b1561496657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c6964206665657300000000000000000000000000000000000000006044820152fd5b156149cb57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f72656c61792066696c6c656400000000000000000000000000000000000000006044820152fd5b9060070b9060070b01907fffffffffffffffffffffffffffffffffffffffffffffffff80000000000000008212677fffffffffffffff83131761330a57565b15614a6f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f66696c6c20616d6f756e742070726520666565732069732030000000000000006044820152fd5b9190820391821161330a57565b15614ae157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f7061796f757441646a7573746d656e7450637420746f6f20736d616c6c0000006044820152fd5b15614b4657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f7061796f757441646a7573746d656e7450637420746f6f206c617267650000006044820152fd5b7f8000000000000000000000000000000000000000000000000000000000000000811461330a5760000390565b15614bd857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f536f6d65686f7720686974206d6178546f6b656e73546f53656e6421000000006044820152fd5b15614c3d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f696e76616c69642072657061796d656e7420636861696e0000000000000000006044820152fd5b919360a093612de6969573ffffffffffffffffffffffffffffffffffffffff8094168552602085015215156040840152166060820152816080820152019061230e565b908151916040810192614d1e6706f05b59d3b2000080614d10614d0b614d05895160070b90565b60070b90565b613669565b1090816151e1575b5061495f565b6060810190614d3f6ec097ce7bc90715b34b9f1000000000835111156131fb565b6020830190614d66614d5d835160005261086e602052604060002090565b548451116149c4565b6040810190614dc3614db6614d8f845173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1660005261086f602052604060002090565b5460e08701511015613260565b60c0850193614df260c08651930192614dec614de0855160070b90565b8b5160070b5b90614a29565b906151fe565b97614dfe891515614a68565b614e208251614e19875160005261086e602052604060002090565b5490614acd565b8981106151d7575b50614e49614d05614e4f92614de6614e41875160070b90565b915160070b90565b89615268565b94610120870180518061516b575b505050614ee260a08701519287519360a0850151148a8195821561515d575b50508015615144575b614e8e90614c36565b614ea4865160005261086e602052604060002090565b5490614eb38451915160070b90565b865173ffffffffffffffffffffffffffffffffffffffff16916101008b0196614edc8851151590565b946153d6565b614ef8845160005261086e602052604060002090565b614f038982546133a1565b905560608601805173ffffffffffffffffffffffffffffffffffffffff939084163381146151395790614fc0929188614f50885173ffffffffffffffffffffffffffffffffffffffff1690565b9187614f786109ca6109ca61086b5473ffffffffffffffffffffffffffffffffffffffff1690565b93169283036150cf57505050613c89614f919151151590565b61509c575b613e3f87614fbb6109ca845173ffffffffffffffffffffffffffffffffffffffff1690565b61529f565b91823b15158061508e575b614fd9575b50505050505050565b614fff6150129160809416945173ffffffffffffffffffffffffffffffffffffffff1690565b945160005261086e602052604060002090565b549051111594015193813b156102e35760008094615061604051978896879586947f0ea1f938000000000000000000000000000000000000000000000000000000008652339260048701614c9b565b03925af18015610ada5761507b575b808080808080614fd0565b80610ace6150889261047a565b38615070565b506080870151511515614fcb565b6150ca876150c16109ca885173ffffffffffffffffffffffffffffffffffffffff1690565b30903390613469565b614f96565b909192613c896150df9151151590565b15615130575061512b915061510b6109ca885173ffffffffffffffffffffffffffffffffffffffff1690565b835173ffffffffffffffffffffffffffffffffffffffff16903390613469565b613e3f565b61512b926140df565b505050505050505050565b50614e8e6151566101008a0151151590565b9050614e85565b606001511490508a38614e7c565b966151bf6151c5926151a37ffffffffffffffffffffffffffffffffffffffffffffffffff21f494c589c00006151cf969b1215614ada565b6151b968056bc75e2d6310000082511315614b3f565b51614ba4565b90615268565b9551861115614bd1565b388080614e5d565b9850614e49614e28565b90506151f7614d0b614d0560c086015160070b90565b1038614d18565b670de0b6b3a764000091818302918383040361330a5760070b80830392600082128185128116908286139015161761330a5714615239570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b90670de0b6b3a764000091600082840392128383128116908484139015161761330a5781810291818304149015171561330a570490565b73ffffffffffffffffffffffffffffffffffffffff16803b156152ec57906105ca916152e76109ca6109ca61086b5473ffffffffffffffffffffffffffffffffffffffff1690565b6140df565b61530f6109ca61086b5473ffffffffffffffffffffffffffffffffffffffff1690565b803b156102e3576040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815260048101849052600093909184908390602490829084905af1908115610ada57849384938493615381575b50828215615378575bf115610ada57565b506108fc615370565b80610ace61538e9261047a565b38615367565b6153b79073ffffffffffffffffffffffffffffffffffffffff9260070b90615268565b911660005261086f6020526040600020805491820180921161330a5755565b94919394821561541f575b508115615416575b506154115773ffffffffffffffffffffffffffffffffffffffff916153b79160070b90615268565b505050565b905015386153e9565b15159150386153e1565b9073ffffffffffffffffffffffffffffffffffffffff8251168152608080615460602085015160a0602086015260a085019061230e565b93604081015160070b6040850152606081015115156060850152015191015290565b9a97949192612de69c9a96936154fa9a9895928d5260208d015260408c015260608b015260808a015260070b60a089015260070b60c088015273ffffffffffffffffffffffffffffffffffffffff928380921660e089015216610100870152166101208501526101808061014086015284019061230e565b91610160818403910152615429565b9060408201516155199060070b90565b91606081015161553c9073ffffffffffffffffffffffffffffffffffffffff1690565b90608081015193610100948583015161555490151590565b6101209283850151926155656105bd565b73ffffffffffffffffffffffffffffffffffffffff9097168752602087015260070b604086015215156060850152608084015281516060015160208301516155b89060005261086e602052604060002090565b549360a084015193519460808601519560a08101519160e08201516155dd9060070b90565b60c083015160070b9a83015163ffffffff169a60408401516156129073ffffffffffffffffffffffffffffffffffffffff1690565b9184516156329073ffffffffffffffffffffffffffffffffffffffff1690565b9860208601516156559073ffffffffffffffffffffffffffffffffffffffff1690565b950151956040519a73ffffffffffffffffffffffffffffffffffffffff8c9b169e63ffffffff169d33966156899b8d615482565b037f8ab9dc6c19fe88e69bc70221b339c84332752fdd49591b7c51e66bae3947b73c91a4565b906156b98261064d565b6156c6604051918261053b565b8281527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06156f4829461064d565b019060005b82811061570557505050565b8060606020809385010152016156f9565b919081101561269a5760051b810135907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1813603018212156102e357019081359167ffffffffffffffff83116102e35760200182360381136102e3579190565b908092918237016000815290565b6020818303126102e35780519067ffffffffffffffff82116102e3570181601f820112156102e35780516157b7816105cc565b926157c5604051948561053b565b818452602082840101116102e357612de691602080850191016122eb565b9190916157ef836156af565b9260005b8181106157ff57505050565b60008061580d838587615716565b6040939161581f855180938193615776565b0390305af49061582d612d93565b9182901561585c57505090615857916158468288613ff9565b526158518187613ff9565b50613a13565b6157f3565b604483929351106102e3576158826111a991600480940160248091518301019101615784565b92519283927f08c379a00000000000000000000000000000000000000000000000000000000084528301612dd556fea26469706673582212205e0d164698bb766975b939f707b38f75942fc443e68bf28430f00c200a9716bc64736f6c63430008120033
Deployed Bytecode
0x6080604052600436101561001b575b361561001957600080fd5b005b60003560e01c80630c2097f7146102bb5780631186ec33146102b657806317fcb39b146102b15780631b3d5559146102ac5780631dfb2d02146102a757806323cd9a47146102a2578063272751c71461029d5780632752042e1461029857806329cb924d146102935780633659cfe61461028e5780633ddf50591461028957806344b8be6814610284578063493a4f841461027f5780634f1ef2861461027a5780635249fef1146102755780635285e0581461027057806352d1902d1461026b57806357f6dcb8146102665780635ceaec32146102615780636068d6cb1461025c578063647c576c14610257578063715018a614610252578063738b62e51461024d5780637e688bba14610248578063872af6ea146102435780638a7860ce1461023e5780638da5cb5b1461023957806399cc2968146102345780639a8a05921461022f578063a1244c671461022a578063a634893f14610225578063a78e4b6014610220578063ac9650d81461021b578063b5e1bf5f14610216578063c0a8bdd114610211578063dda521131461020c578063ddd224f114610207578063de7eba7814610202578063e1904402146101fd578063ee2a53f8146101f8578063f06850f6146101f35763f2fde38b0361000e57612746565b6126fb565b61269f565b6125dc565b612592565b61254a565b612505565b61249f565b612455565b6123d1565b612292565b61209d565b612057565b61201e565b611f52565b611eff565b611e45565b611ddf565b611d3d565b611c70565b611bcc565b611a5c565b611a17565b61192c565b6118e6565b6117c7565b611774565b6116fb565b6114f9565b611453565b6113ad565b6111f0565b610fe5565b610fac565b610ee5565b610dff565b610daa565b610d54565b610c5d565b610ba4565b610787565b6106c3565b6004359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b6044359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b6064359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b359073ffffffffffffffffffffffffffffffffffffffff821682036102e357565b60c435908160070b82036102e357565b608435908160070b82036102e357565b61010435908160070b82036102e357565b61012435908160070b82036102e357565b61014435908160070b82036102e357565b60e4359063ffffffff821682036102e357565b610104359063ffffffff821682036102e357565b60a4359063ffffffff821682036102e357565b6004359063ffffffff821682036102e357565b610124359063ffffffff821682036102e357565b610164359063ffffffff821682036102e357565b359063ffffffff821682036102e357565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b67ffffffffffffffff811161048e57604052565b61044b565b60a0810190811067ffffffffffffffff82111761048e57604052565b6020810190811067ffffffffffffffff82111761048e57604052565b6040810190811067ffffffffffffffff82111761048e57604052565b6060810190811067ffffffffffffffff82111761048e57604052565b6080810190811067ffffffffffffffff82111761048e57604052565b60e0810190811067ffffffffffffffff82111761048e57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761048e57604052565b6040519060c0820182811067ffffffffffffffff82111761048e57604052565b60405190610140820182811067ffffffffffffffff82111761048e57604052565b604051906105ca82610493565b565b67ffffffffffffffff811161048e57601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b81601f820112156102e35780359061061d826105cc565b9261062b604051948561053b565b828452602083830101116102e357816000926020809301838601378301015290565b67ffffffffffffffff811161048e5760051b60200190565b81601f820112156102e35780359161067c8361064d565b9261068a604051948561053b565b808452602092838086019260051b8201019283116102e3578301905b8282106106b4575050505090565b813581529083019083016106a6565b346102e3576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576106fb6102c0565b6107036102e8565b9061070c61030b565b60a435928360070b84036102e357610722610372565b61072a6103c5565b6107326103d8565b91610124359667ffffffffffffffff978881116102e357610757903690600401610606565b94610164359889116102e357610774610019993690600401610665565b9761014435976084359260643592613aa5565b6101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576107ba6102c0565b6107c26102e8565b60443591606435906107d2610382565b6107da6103ec565b9060c43567ffffffffffffffff81116102e3576107fb903690600401610606565b946108046130c2565b61086b95865460ff8160e81c16610b3b576108656108606108598961084a8773ffffffffffffffffffffffffffffffffffffffff1660005261086d602052604060002090565b90600052602052604060002090565b5460ff1690565b613131565b6108836706f05b59d3b2000061087d8660070b613669565b10613196565b61089e6ec097ce7bc90715b34b9f10000000008a11156131fb565b6108d760e4356108cf8573ffffffffffffffffffffffffffffffffffffffff16600052610870602052604060002090565b541115613260565b63ffffffff9061090c828260a01c166108fc6108f3828a6132f4565b63ffffffff1690565b4210159081610b23575b50613327565b60c01c169661096d61091d8961338c565b61086b907fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff7bffffffff00000000000000000000000000000000000000000000000083549260c01b169116179055565b6109988373ffffffffffffffffffffffffffffffffffffffff16600052610870602052604060002090565b6109a38a82546133a1565b9055886109e36109ca6109ca845473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff851690811480610b1a575b15610adf5750610a3591610a1b6109ca9234146133ae565b5473ffffffffffffffffffffffffffffffffffffffff1690565b94853b156102e3576000600496604051978880927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1928315610ada577fafc4df6845a4ab948b492800d3d8a25d538a102a2bc07cd01f1cfa097fddcff696610ab494610ac1575b505b604051958695339b469088613413565b0390a46100196001606555565b80610ace610ad49261047a565b80610b99565b38610aa2565b612a41565b7fafc4df6845a4ab948b492800d3d8a25d538a102a2bc07cd01f1cfa097fddcff6979250610ab49491610b159130903390613469565b610aa4565b50341515610a03565b610b3291506108f3908961330f565b42111538610906565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f506175736564206465706f7369747300000000000000000000000000000000006044820152fd5b60009103126102e357565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff61086b5416604051908152f35b81601f820112156102e357803591610c0e8361064d565b92610c1c604051948561053b565b808452602092838086019260051b8201019283116102e3578301905b828210610c46575050505090565b838091610c5284610351565b815201910190610c38565b346102e3577ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6060813601126102e357610c956103ff565b60243567ffffffffffffffff928382116102e35760c09082360301126102e357610cbd61057c565b90806004013582526024810135602083015260448101358481116102e357610ceb9060043691840101610665565b6040830152610cfc6064820161043a565b6060830152610d0d60848201610351565b608083015260a4810135908482116102e3576004610d2e9236920101610bf7565b60a08201526044359283116102e357610d4e610019933690600401610665565b91613bed565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357610da3610d8e6102c0565b610d9661282e565b610d9e6130c2565b61433c565b6001606555005b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576004356000526108716020526020604060002054604051908152f35b801515036102e357565b346102e35760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357610e366102c0565b60243573ffffffffffffffffffffffffffffffffffffffff60443592610e5b84610df5565b610e6361282e565b610e6b6130c2565b167f0a21fdd43d0ad0c62689ee7230a47309a050755bcc52eba00310add65297692a602060009483865261086d825260408620858752825260408620901515907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a3600160655580f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3577f0e55dd180fa793d9036c804d0a116e6a7617a48e72cee1f83d92793a793fcc036020610f3f6103ff565b610f4761282e565b610f4f6130c2565b61086b80547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff77ffffffff00000000000000000000000000000000000000008460a01b16911617905563ffffffff60405191168152a16001606555005b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576020604051428152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761101c6102c0565b73ffffffffffffffffffffffffffffffffffffffff90817f000000000000000000000000a667498f46457548f1d3ad557340b95fdb29014816916110628330141561291c565b6110917f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc9382855416146129a7565b61109961282e565b604051906110a6826104af565b600082527f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156110e05750506100199150612ad8565b6020600491604094939451928380927f52d1902d00000000000000000000000000000000000000000000000000000000825286165afa600091816111c0575b506111ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608490fd5b0390fd5b610019936111bb9114612a4d565b612bc4565b6111e291925060203d81116111e9575b6111da818361053b565b810190612a32565b903861111f565b503d6111d0565b346102e35760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761001973ffffffffffffffffffffffffffffffffffffffff61123f6103ff565b61136961124a6102e8565b610d9e61125561030b565b9161127361126161032e565b9561091d60ff60005460081c1661300a565b60405161127f816104cb565b6009815260208101907f4143524f53532d563200000000000000000000000000000000000000000000008252604051916112b8836104cb565b6005835260208301917f312e302e3000000000000000000000000000000000000000000000000000000083526112fe60ff60005460081c166112f98161300a565b61300a565b519020915190209061047f5561048055611316613095565b61131e6130a6565b61136461086b750e1000000000000000000000000000000000000000007fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff825416179055565b614270565b1673ffffffffffffffffffffffffffffffffffffffff61086b91167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b346102e3576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576113e56102c0565b6113ed6102e8565b6113f561030b565b60e4358060070b81036102e35761140a610392565b611412610412565b91610144359567ffffffffffffffff87116102e357611438610019973690600401610606565b94610164359660c4359260a43592608435926064359261372e565b346102e35760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760243560043561149061282e565b6114986130c2565b61086c80546801000000000000000081101561048e5763ffffffff91600182019055836114c48261265e565b5084600182015555167fc86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af600080a46001606555005b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761152b6102c0565b60243567ffffffffffffffff81116102e35761154b903690600401610606565b9073ffffffffffffffffffffffffffffffffffffffff91827f000000000000000000000000a667498f46457548f1d3ad557340b95fdb29014816926115928430141561291c565b6115c17f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc9482865416146129a7565b6115c961282e565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156115ff5750506100199150612ad8565b6020600491604094939451928380927f52d1902d00000000000000000000000000000000000000000000000000000000825286165afa600091816116db575b506116c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608490fd5b610019936116d69114612a4d565b612d30565b6116f491925060203d81116111e9576111da818361053b565b903861163e565b346102e35760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff6117476102c0565b1660005261086d6020526040600020602435600052602052602060ff604060002054166040519015158152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff6108695416604051908152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000a667498f46457548f1d3ad557340b95fdb290148163003611862576040517f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8152602090f35b0390f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152fd5b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602063ffffffff61086b5460a01c16604051908152f35b346102e3576102007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576119646102c0565b61196c6102e8565b9061197561030b565b9161197e61032e565b92611987610392565b936119906103a3565b6119986103b4565b6119a0610426565b91610184359767ffffffffffffffff988981116102e3576119c5903690600401610606565b946101a4358a81116102e3576119df903690600401610606565b966101c4359a8b116102e3576119fc6100199b3690600401610606565b986101e4359a60e4359360c4359360a43593608435936138d7565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602060ff61086b5460e81c166040519015158152f35b346102e35760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357611a936103ff565b611b06611a9e6102e8565b611aa661030b565b9060005493611acc60ff8660081c161580968197611bbe575b8115611b9e575b50612e3a565b84611afd60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006000541617600055565b611b6857612ec5565b611b0c57005b611b397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff60005416600055565b604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249890602090a1005b611b996101007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff6000541617600055565b612ec5565b303b15915081611bb0575b5038611ac6565b6001915060ff161438611ba9565b600160ff8216109150611abf565b346102e3576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112611c6d57611c0461282e565b8073ffffffffffffffffffffffffffffffffffffffff610c8c8054907fffffffffffffffffffffffff000000000000000000000000000000000000000082169055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b80fd5b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3577fe88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492196020600435611cce81610df5565b611cd661282e565b611cde6130c2565b151561086b80547fffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7dff00000000000000000000000000000000000000000000000000000000008460e81b169116179055604051908152a16001606555005b346102e35760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357611d746102c0565b602435908160070b82036102e3576044359163ffffffff831683036102e357611d9b61032e565b67ffffffffffffffff936084358581116102e357611dbd903690600401610606565b9260a4359586116102e357611dd9610019963690600401610606565b9461367a565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff611e2b6102c0565b1660005261086f6020526020604060002054604051908152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357600435611e7f61282e565b611e876130c2565b611e908161265e565b919091611ed057600191600092818480935501557f3569b846531b754c99cb80df3f49cd72fa6fe106aaee5ab8e0caf35a9d7ce88d8280a2600160655580f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff610c8c5416604051908152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3577f2d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e6020600435611fb081610df5565b611fb861282e565b611fc06130c2565b151561086b80547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff7cff000000000000000000000000000000000000000000000000000000008460e01b169116179055604051908152a16001606555005b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576020604051468152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602063ffffffff61086b5460c01c16604051908152f35b346102e3576101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576120d56102c0565b60243590604435907face81ce0f8b8d27a1aed0c4df5f6b2743e46fc50fe3e0183dd7cd6a7b9db22fb63ffffffff606435610ab4612111610382565b9161211a6103ec565b9260c435906121276130c2565b6121426ec097ce7bc90715b34b9f10000000008b11156131fb565b73ffffffffffffffffffffffffffffffffffffffff881660005261086f60205261217560e4356040600020541115613260565b60408051336020820190815273ffffffffffffffffffffffffffffffffffffffff8b1692820192909252606081018c9052608081018b905260a08101859052600783900b60c082015263ffffffff871660e08201526101008101849052612221919061220d8161012081015b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810183528261053b565b519020600052610871602052604060002090565b9283549361222e85613a13565b905561223b8b1515613a40565b61224689838d615394565b604051968796169a3399879260a094919796959273ffffffffffffffffffffffffffffffffffffffff60c08601991685526020850152604084015260070b606083015260808201520152565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760206040517f0e058f05b73c62ee68329d2c67c067aaae9a06503cc306378d144d0f0177882b8152f35b60005b8381106122fe5750506000910152565b81810151838201526020016122ee565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361234a815180928187528780880191016122eb565b0116010190565b602080820190808352835180925260408301928160408460051b8301019501936000915b8483106123855750505050505090565b90919293949584806123c1837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc086600196030187528a5161230e565b9801930193019194939290612375565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35767ffffffffffffffff6004358181116102e357366023820112156102e35780600401359182116102e3573660248360051b830101116102e35761185e91602461244992016157e3565b60405191829182612351565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e3576020604051701d6329f1c35ca4bfabb9f56100000000008152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35773ffffffffffffffffffffffffffffffffffffffff6124eb6102c0565b166000526108706020526020604060002054604051908152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602060ff61086b5460e01c166040519015158152f35b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760206040516ec097ce7bc90715b34b9f10000000008152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357610da36125cc6102c0565b6125d461282e565b6113646130c2565b346102e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e357602073ffffffffffffffffffffffffffffffffffffffff61086a5416604051908152f35b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61086c90815481101561269a57600391600052027f71cd7344f4eb2efc8e30291f6dbdb44d618ca368ea5425d217c1d604bf26b84d0190600090565b61262f565b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760043561086c548110156102e3576126e760409161265e565b506001815491015482519182526020820152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35760043560005261086e6020526020604060002054604051908152f35b346102e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102e35761277d6102c0565b61278561282e565b73ffffffffffffffffffffffffffffffffffffffff8116156127aa57610019906128ae565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff610c8c5416330361285057565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b610c8c90815473ffffffffffffffffffffffffffffffffffffffff80921692837fffffffffffffffffffffffff00000000000000000000000000000000000000008316179055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b1561292357565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152fd5b156129ae57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152fd5b908160209103126102e3575190565b6040513d6000823e3d90fd5b15612a5457565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152fd5b803b15612b405773ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc91167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152fd5b612bcd81612ad8565b60405173ffffffffffffffffffffffffffffffffffffffff82167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2825115801590612d28575b612c2057505050565b813b15612ca6575060008281926020612ca395519201905af4612c41612d93565b60405191612c4e836104e7565b602783527f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c60208401527f206661696c6564000000000000000000000000000000000000000000000000006040840152612dc3565b50565b807f08c379a0000000000000000000000000000000000000000000000000000000006084925260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152fd5b506000612c17565b612d3981612ad8565b60405173ffffffffffffffffffffffffffffffffffffffff82167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2825115801590612d8b57612c2057505050565b506001612c17565b3d15612dbe573d90612da4826105cc565b91612db2604051938461053b565b82523d6000602084013e565b606090565b90919015612dcf575090565b90612de9565b906020612de692818152019061230e565b90565b805190919015612dfc5750805190602001fd5b6111a9906040519182917f08c379a000000000000000000000000000000000000000000000000000000000835260206004840152602483019061230e565b15612e4157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152fd5b9161136973ffffffffffffffffffffffffffffffffffffffff92612f156105ca95612efb60ff60005460081c166112f98161300a565b612f04336128ae565b61091d60ff60005460081c1661300a565b604051612f21816104cb565b6009815260208101907f4143524f53532d56320000000000000000000000000000000000000000000000825260405191612f5a836104cb565b6005835260208301917f312e302e300000000000000000000000000000000000000000000000000000008352612f9b60ff60005460081c166112f98161300a565b519020915190209061047f5561048055612fb3613095565b612fbb6130a6565b61300161086b750e1000000000000000000000000000000000000000007fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff825416179055565b610d9e81614270565b1561301157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152fd5b6105ca60ff60005460081c1661300a565b6130bb60ff60005460081c166112f98161300a565b6001606555565b6002606554146130d3576002606555565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b1561313857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f44697361626c656420726f7574650000000000000000000000000000000000006044820152fd5b1561319d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e76616c69642072656c6179657220666565000000000000000000000000006044820152fd5b1561320257565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416d6f756e7420746f6f206c61726765000000000000000000000000000000006044820152fd5b1561326757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f41626f7665206d617820636f756e7400000000000000000000000000000000006044820152fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b63ffffffff918216908216039190821161330a57565b6132c5565b91909163ffffffff8080941691160191821161330a57565b1561332e57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f696e76616c69642071756f74652074696d6500000000000000000000000000006044820152fd5b63ffffffff80911690811461330a5760010190565b9190820180921161330a57565b156133b557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6d73672e76616c7565206d757374206d6174636820616d6f756e7400000000006044820152fd5b9360e09593612de698979363ffffffff938752602087015260070b604086015216606084015273ffffffffffffffffffffffffffffffffffffffff80921660808401521660a08201528160c0820152019061230e565b90926105ca93604051937f23b872dd00000000000000000000000000000000000000000000000000000000602086015273ffffffffffffffffffffffffffffffffffffffff80921660248601521660448401526064830152606482526134ce82610493565b6040516135399173ffffffffffffffffffffffffffffffffffffffff166134f4826104cb565b6000806020958685527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656487860152868151910182855af1613533612d93565b916135e8565b80518061354557505050565b818391810103126102e35781015161355c81610df5565b156135645750565b608490604051907f08c379a00000000000000000000000000000000000000000000000000000000082526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b9192901561366357508151156135fc575090565b3b156136055790565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b82612de9565b6000808212613676575090565b0390565b6137249063ffffffff7fa6aa57bd282fc82378458de27be4eadfa791a0c7321c49562eeba8b2643dd56695979694976136b16130c2565b6136d98887838860070b986136d16706f05b59d3b2000061087d8c613669565b468e89614408565b613712604051968796875273ffffffffffffffffffffffffffffffffffffffff809316602088015260806040880152608087019061230e565b9285840360608701521697169561230e565b0390a36001606555565b9a9692909897999395916137406130c2565b61086b5460e01c60ff161561375490613872565b61375c61059c565b73ffffffffffffffffffffffffffffffffffffffff909c168c5273ffffffffffffffffffffffffffffffffffffffff8a1660208d015273ffffffffffffffffffffffffffffffffffffffff1660408c015260608b015260808a01524660a08a015260070b60c0890152600787900b60e089015261010094858901906137e6919063ffffffff169052565b6101209581878a01526137f761059c565b988952600060208a0190815260079890980b60408a015273ffffffffffffffffffffffffffffffffffffffff166060890152608088015260a087015260c086015260e085015283016000905282016000905281516138549061493c565b905261385f81614cde565b61386891615509565b6105ca6001606555565b1561387957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5061757365642066696c6c7300000000000000000000000000000000000000006044820152fd5b9d9c9b959e9390928e9799939b98929b6138ef6130c2565b61086b5460e01c60ff161561390390613872565b61390b61059c565b73ffffffffffffffffffffffffffffffffffffffff909916895273ffffffffffffffffffffffffffffffffffffffff16602089015273ffffffffffffffffffffffffffffffffffffffff1660408801526060870152608086018890524660a087015260070b60c086015260070b60e085015263ffffffff85166101008581019190915291610120938486015261399f61059c565b948552600060208601908152600789900b604087015273ffffffffffffffffffffffffffffffffffffffff8a166060870152949c8d8b608082015260a0015260c08d015260e08c01528a016000905289016000905288516139ff9061493c565b9052613a0a96614408565b61385f81614cde565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461330a5760010190565b15613a4757565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f416d6f756e74206d757374206265203e203000000000000000000000000000006044820152fd5b9a9895939199969492909799613ab96130c2565b613ac161059c565b73ffffffffffffffffffffffffffffffffffffffff909c168c5273ffffffffffffffffffffffffffffffffffffffff891660208d015273ffffffffffffffffffffffffffffffffffffffff1660408c015260608b015260808a01524660a08a015260070b60c089015260070b60e088015263ffffffff1661010087810191909152610120918083890152613b5361059c565b97885260006020890181815260408a019190915273ffffffffffffffffffffffffffffffffffffffff90951660608901526080880152600060a0880152701d6329f1c35ca4bfabb9f561000000000060c08801527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60e08801526001908701528501528351613be19061493c565b9052613a0a9183614779565b9190613bf76130c2565b6020810190613c0882514614613e65565b60a081019081515192613c22604083019485515114613eca565b6002613c2d8761265e565b50613c46613c41600198868a850154614169565b613f2f565b0194613cc26060840196613c92613c8d613c89613c6a6108f38c5163ffffffff1690565b848160081c600052602052600160ff60406000205492161b8091161490565b1590565b613f94565b613ca36108f3895163ffffffff1690565b908160081c600052602052604060002090600160ff835492161b179055565b84515160005b818110613dee5750505090613d507ff8bd640004bcec1b89657020f561d0b070cbdf662d0b158db9dccb0a8301bfab93928251613d5d575b613d356080613d19855193519851995163ffffffff1690565b94015173ffffffffffffffffffffffffffffffffffffffff1690565b935160405194859463ffffffff8091169a169833938661408b565b0390a46105ca6001606555565b613d668361413a565b8251815190613d79895163ffffffff1690565b917f828fc203220356df8f072a91681caee7d5c75095e2a95e80ed5a14b384697f7173ffffffffffffffffffffffffffffffffffffffff613dd1608089015173ffffffffffffffffffffffffffffffffffffffff1690565b6040805195865233602087015291169463ffffffff1693a4613d00565b80613dfb84928951613ff9565b5180613e09575b5001613cc8565b613e5f90613e316109ca60808a015173ffffffffffffffffffffffffffffffffffffffff1690565b613e59613e3f858c51613ff9565b5173ffffffffffffffffffffffffffffffffffffffff1690565b906140df565b38613e02565b15613e6c57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f496e76616c696420636861696e496400000000000000000000000000000000006044820152fd5b15613ed157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c6964206c65616600000000000000000000000000000000000000006044820152fd5b15613f3657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4261642050726f6f6600000000000000000000000000000000000000000000006044820152fd5b15613f9b57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f416c726561647920636c61696d656400000000000000000000000000000000006044820152fd5b805182101561269a5760209160051b010190565b90815180825260208080930193019160005b82811061402d575050505090565b83518552938101939281019260010161401f565b90815180825260208080930193019160005b828110614061575050505090565b835173ffffffffffffffffffffffffffffffffffffffff1685529381019392810192600101614053565b936140ad608094936140d893989798875260a0602088015260a087019061400d565b9073ffffffffffffffffffffffffffffffffffffffff80941660408701528582036060870152614041565b9416910152565b6105ca9273ffffffffffffffffffffffffffffffffffffffff604051937fa9059cbb0000000000000000000000000000000000000000000000000000000060208601521660248401526044830152604482526134ce82610503565b6105ca9073ffffffffffffffffffffffffffffffffffffffff90816080820151169161086a54169051916140df565b612de6929160405161420f816121e1602082019460208652805160408401526020810151606084015260a06141ae604083015160c0608087015261010086019061400d565b9163ffffffff6060820151168286015273ffffffffffffffffffffffffffffffffffffffff60808201511660c086015201517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08483030160e0850152614041565b51902091929091906000915b84518310156142685761422e8386613ff9565b5190600082821015614256575060005260205261425060406000205b92613a13565b9161421b565b6040916142509382526020522061424a565b915092501490565b73ffffffffffffffffffffffffffffffffffffffff1680156142de57610869817fffffffffffffffffffffffff00000000000000000000000000000000000000008254161790557fa9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849600080a2565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4261642062726964676520726f757465722061646472657373000000000000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff1680156143aa5761086a817fffffffffffffffffffffffff00000000000000000000000000000000000000008254161790557f1f17a88f67b0f49060a34bec1a4723a563620e6aa265eb640b5046dcee0759a0600080a2565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4261642068756220706f6f6c20616464726573730000000000000000000000006044820152fd5b9373ffffffffffffffffffffffffffffffffffffffff6105ca97969492939460208151910120916040519363ffffffff60208601967f0e058f05b73c62ee68329d2c67c067aaae9a06503cc306378d144d0f0177882b885216604086015286606086015260070b60808501521660a083015260c082015260c0815261448c8161051f565b5190209061047f549061048054906040519160208301937fc2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e8552604084015260608301526080820152608081526144e281610493565b519020906040519060208201927f19010000000000000000000000000000000000000000000000000000000000008452602283015260428201526042815261452981610503565b51902061453692916145b2565b1561453d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c6964207369676e61747572650000000000000000000000000000006044820152fd5b604090612de693928152816020820152019061230e565b90916145be81846146b2565b600581101561468357159081614660575b50614658576000918291604051614616816121e160208201947f1626ba7e00000000000000000000000000000000000000000000000000000000998a87526024840161459b565b51915afa90614623612d93565b8261464c575b8261463357505090565b61464891925060208082518301019101612a32565b1490565b80516020149250614629565b505050600190565b905073ffffffffffffffffffffffffffffffffffffffff808416911614386145cf565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9060418151146000146146e0576146dc916020820151906060604084015193015160001a906146ea565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831161476d5791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa15610ada57815173ffffffffffffffffffffffffffffffffffffffff811615614767579190565b50600190565b50505050600090600390565b909161012082519201516040938451908582019082821067ffffffffffffffff83111761048e57614811956147b892885283526020830193845261265e565b50549161420f865180926147de602083019560208752518a808501526080840190614876565b90516060830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0810183528261053b565b156148195750565b606490517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f496e76616c696420736c6f772072656c61792070726f6f6600000000000000006044820152fd5b805173ffffffffffffffffffffffffffffffffffffffff168252612de6919060208181015173ffffffffffffffffffffffffffffffffffffffff169083015260408181015173ffffffffffffffffffffffffffffffffffffffff1690830152606081015160608301526080810151608083015260a081015160a083015261490760c082015160c084019060070b9052565b60e08181015160070b908301526101008181015163ffffffff169083015261012080910151916101408092820152019061230e565b604051614959816121e16020820194602086526040830190614876565b51902090565b1561496657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c6964206665657300000000000000000000000000000000000000006044820152fd5b156149cb57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f72656c61792066696c6c656400000000000000000000000000000000000000006044820152fd5b9060070b9060070b01907fffffffffffffffffffffffffffffffffffffffffffffffff80000000000000008212677fffffffffffffff83131761330a57565b15614a6f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f66696c6c20616d6f756e742070726520666565732069732030000000000000006044820152fd5b9190820391821161330a57565b15614ae157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f7061796f757441646a7573746d656e7450637420746f6f20736d616c6c0000006044820152fd5b15614b4657565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f7061796f757441646a7573746d656e7450637420746f6f206c617267650000006044820152fd5b7f8000000000000000000000000000000000000000000000000000000000000000811461330a5760000390565b15614bd857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f536f6d65686f7720686974206d6178546f6b656e73546f53656e6421000000006044820152fd5b15614c3d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f696e76616c69642072657061796d656e7420636861696e0000000000000000006044820152fd5b919360a093612de6969573ffffffffffffffffffffffffffffffffffffffff8094168552602085015215156040840152166060820152816080820152019061230e565b908151916040810192614d1e6706f05b59d3b2000080614d10614d0b614d05895160070b90565b60070b90565b613669565b1090816151e1575b5061495f565b6060810190614d3f6ec097ce7bc90715b34b9f1000000000835111156131fb565b6020830190614d66614d5d835160005261086e602052604060002090565b548451116149c4565b6040810190614dc3614db6614d8f845173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1660005261086f602052604060002090565b5460e08701511015613260565b60c0850193614df260c08651930192614dec614de0855160070b90565b8b5160070b5b90614a29565b906151fe565b97614dfe891515614a68565b614e208251614e19875160005261086e602052604060002090565b5490614acd565b8981106151d7575b50614e49614d05614e4f92614de6614e41875160070b90565b915160070b90565b89615268565b94610120870180518061516b575b505050614ee260a08701519287519360a0850151148a8195821561515d575b50508015615144575b614e8e90614c36565b614ea4865160005261086e602052604060002090565b5490614eb38451915160070b90565b865173ffffffffffffffffffffffffffffffffffffffff16916101008b0196614edc8851151590565b946153d6565b614ef8845160005261086e602052604060002090565b614f038982546133a1565b905560608601805173ffffffffffffffffffffffffffffffffffffffff939084163381146151395790614fc0929188614f50885173ffffffffffffffffffffffffffffffffffffffff1690565b9187614f786109ca6109ca61086b5473ffffffffffffffffffffffffffffffffffffffff1690565b93169283036150cf57505050613c89614f919151151590565b61509c575b613e3f87614fbb6109ca845173ffffffffffffffffffffffffffffffffffffffff1690565b61529f565b91823b15158061508e575b614fd9575b50505050505050565b614fff6150129160809416945173ffffffffffffffffffffffffffffffffffffffff1690565b945160005261086e602052604060002090565b549051111594015193813b156102e35760008094615061604051978896879586947f0ea1f938000000000000000000000000000000000000000000000000000000008652339260048701614c9b565b03925af18015610ada5761507b575b808080808080614fd0565b80610ace6150889261047a565b38615070565b506080870151511515614fcb565b6150ca876150c16109ca885173ffffffffffffffffffffffffffffffffffffffff1690565b30903390613469565b614f96565b909192613c896150df9151151590565b15615130575061512b915061510b6109ca885173ffffffffffffffffffffffffffffffffffffffff1690565b835173ffffffffffffffffffffffffffffffffffffffff16903390613469565b613e3f565b61512b926140df565b505050505050505050565b50614e8e6151566101008a0151151590565b9050614e85565b606001511490508a38614e7c565b966151bf6151c5926151a37ffffffffffffffffffffffffffffffffffffffffffffffffff21f494c589c00006151cf969b1215614ada565b6151b968056bc75e2d6310000082511315614b3f565b51614ba4565b90615268565b9551861115614bd1565b388080614e5d565b9850614e49614e28565b90506151f7614d0b614d0560c086015160070b90565b1038614d18565b670de0b6b3a764000091818302918383040361330a5760070b80830392600082128185128116908286139015161761330a5714615239570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b90670de0b6b3a764000091600082840392128383128116908484139015161761330a5781810291818304149015171561330a570490565b73ffffffffffffffffffffffffffffffffffffffff16803b156152ec57906105ca916152e76109ca6109ca61086b5473ffffffffffffffffffffffffffffffffffffffff1690565b6140df565b61530f6109ca61086b5473ffffffffffffffffffffffffffffffffffffffff1690565b803b156102e3576040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815260048101849052600093909184908390602490829084905af1908115610ada57849384938493615381575b50828215615378575bf115610ada57565b506108fc615370565b80610ace61538e9261047a565b38615367565b6153b79073ffffffffffffffffffffffffffffffffffffffff9260070b90615268565b911660005261086f6020526040600020805491820180921161330a5755565b94919394821561541f575b508115615416575b506154115773ffffffffffffffffffffffffffffffffffffffff916153b79160070b90615268565b505050565b905015386153e9565b15159150386153e1565b9073ffffffffffffffffffffffffffffffffffffffff8251168152608080615460602085015160a0602086015260a085019061230e565b93604081015160070b6040850152606081015115156060850152015191015290565b9a97949192612de69c9a96936154fa9a9895928d5260208d015260408c015260608b015260808a015260070b60a089015260070b60c088015273ffffffffffffffffffffffffffffffffffffffff928380921660e089015216610100870152166101208501526101808061014086015284019061230e565b91610160818403910152615429565b9060408201516155199060070b90565b91606081015161553c9073ffffffffffffffffffffffffffffffffffffffff1690565b90608081015193610100948583015161555490151590565b6101209283850151926155656105bd565b73ffffffffffffffffffffffffffffffffffffffff9097168752602087015260070b604086015215156060850152608084015281516060015160208301516155b89060005261086e602052604060002090565b549360a084015193519460808601519560a08101519160e08201516155dd9060070b90565b60c083015160070b9a83015163ffffffff169a60408401516156129073ffffffffffffffffffffffffffffffffffffffff1690565b9184516156329073ffffffffffffffffffffffffffffffffffffffff1690565b9860208601516156559073ffffffffffffffffffffffffffffffffffffffff1690565b950151956040519a73ffffffffffffffffffffffffffffffffffffffff8c9b169e63ffffffff169d33966156899b8d615482565b037f8ab9dc6c19fe88e69bc70221b339c84332752fdd49591b7c51e66bae3947b73c91a4565b906156b98261064d565b6156c6604051918261053b565b8281527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06156f4829461064d565b019060005b82811061570557505050565b8060606020809385010152016156f9565b919081101561269a5760051b810135907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1813603018212156102e357019081359167ffffffffffffffff83116102e35760200182360381136102e3579190565b908092918237016000815290565b6020818303126102e35780519067ffffffffffffffff82116102e3570181601f820112156102e35780516157b7816105cc565b926157c5604051948561053b565b818452602082840101116102e357612de691602080850191016122eb565b9190916157ef836156af565b9260005b8181106157ff57505050565b60008061580d838587615716565b6040939161581f855180938193615776565b0390305af49061582d612d93565b9182901561585c57505090615857916158468288613ff9565b526158518187613ff9565b50613a13565b6157f3565b604483929351106102e3576158826111a991600480940160248091518301019101615784565b92519283927f08c379a00000000000000000000000000000000000000000000000000000000084528301612dd556fea26469706673582212205e0d164698bb766975b939f707b38f75942fc443e68bf28430f00c200a9716bc64736f6c63430008120033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.