Source Code
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 22926080 | 124 days ago | IN | 0 ETH | 0.00015992 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
XERC20LockboxTokenPool
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 100000 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {Pool} from "@chainlink/contracts-ccip/src/v0.8/ccip/libraries/Pool.sol";
import {TokenPool} from "@chainlink/contracts-ccip/src/v0.8/ccip/pools/TokenPool.sol";
import {
IERC20,
SafeERC20
} from
"@chainlink/contracts-ccip/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/utils/SafeERC20.sol";
import {TokenPoolAbstract} from "./TokenPoolAbstract.sol";
import {IXERC20} from "./interfaces/IXERC20.sol";
import {IXERC20LockBox} from "./interfaces/IXERC20LockBox.sol";
/**
* @title Token Pool XERC20 contract
* @dev The XERC20LockboxTokenPool contract is a contract that implements the TokenPoolAbstract contract.
* It supports the XERC20 token and the XERC20LockBox contract.
* On `lockOrBurn`, the contract will deposit the ERC20 token into the XERC20LockBox contract and
* burn the equivalent amount of XERC20 tokens.
* On `releaseOrMint`, the contract will mint the equivalent amount of XERC20 tokens and
* withdraw the ERC20 token from the XERC20LockBox contract and send it to the receiver.
*/
contract XERC20LockboxTokenPool is TokenPoolAbstract {
using SafeERC20 for IERC20;
error InsufficientLockboxBalance(uint256 lockboxBalance, uint256 localAmount);
event DepositedAndBurned(address indexed sender, uint256 amount);
event MintedAndWithdrawn(address indexed sender, address indexed recipient, uint256 amount);
string public constant override typeAndVersion = "XERC20LockboxTokenPool 1.6.0";
IXERC20LockBox internal immutable i_lockbox;
IXERC20 internal immutable i_xerc20;
/**
* @notice Get the XERC20LockBox contract address
* @return address The XERC20LockBox contract address
*/
function getLockbox() external view returns (address) {
return address(i_lockbox);
}
/**
* @notice Get the XERC20 contract address
* @return address The XERC20 contract address
*/
function getXERC20() external view returns (address) {
return address(i_xerc20);
}
/**
* @notice Sets the immutable values for {i_lockbox} and {i_xerc20}.
*/
constructor(address lockbox, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router)
TokenPool(IERC20(IXERC20LockBox(lockbox).ERC20()), localTokenDecimals, allowlist, rmnProxy, router)
{
i_lockbox = IXERC20LockBox(lockbox);
i_xerc20 = IXERC20(IXERC20LockBox(lockbox).XERC20());
}
/**
* @dev Deposit the ERC20 token into the XERC20LockBox contract and burn the equivalent amount
* of XERC20 tokens.
*/
function _lockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal override {
i_token.safeApprove(address(i_lockbox), lockOrBurnIn.amount);
i_lockbox.deposit(lockOrBurnIn.amount);
i_xerc20.burn(address(this), lockOrBurnIn.amount);
emit DepositedAndBurned(msg.sender, lockOrBurnIn.amount);
}
/**
* @dev Mint the equivalent amount of XERC20 tokens and withdraw the ERC20 token from the XERC20LockBox
* contract and send it to the receiver.
*/
function _releaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn, uint256 localAmount) internal override {
uint256 lockboxBalance = i_token.balanceOf(address(i_lockbox));
if (lockboxBalance < localAmount) revert InsufficientLockboxBalance(lockboxBalance, localAmount);
i_xerc20.mint(address(this), localAmount);
// Token approval is needed as the lockbox will make a call to the underlying token's burn function,
// which requires a prior token approval
IERC20(i_xerc20).safeApprove(address(i_lockbox), localAmount);
i_lockbox.withdrawTo(releaseOrMintIn.receiver, localAmount);
emit MintedAndWithdrawn(msg.sender, releaseOrMintIn.receiver, localAmount);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @notice This library contains various token pool functions to aid constructing the return data.
library Pool {
// The tag used to signal support for the pool v1 standard.
// bytes4(keccak256("CCIP_POOL_V1"))
bytes4 public constant CCIP_POOL_V1 = 0xaff2afbf;
// The number of bytes in the return data for a pool v1 releaseOrMint call.
// This should match the size of the ReleaseOrMintOutV1 struct.
uint16 public constant CCIP_POOL_V1_RET_BYTES = 32;
// The default max number of bytes in the return data for a pool v1 lockOrBurn call.
// This data can be used to send information to the destination chain token pool. Can be overwritten
// in the TokenTransferFeeConfig.destBytesOverhead if more data is required.
uint32 public constant CCIP_LOCK_OR_BURN_V1_RET_BYTES = 32;
struct LockOrBurnInV1 {
bytes receiver; // The recipient of the tokens on the destination chain, abi encoded.
uint64 remoteChainSelector; // ─╮ The chain ID of the destination chain.
address originalSender; // ─────╯ The original sender of the tx on the source chain.
uint256 amount; // The amount of tokens to lock or burn, denominated in the source token's decimals.
address localToken; // The address on this chain of the token to lock or burn.
}
struct LockOrBurnOutV1 {
// The address of the destination token, abi encoded in the case of EVM chains.
// This value is UNTRUSTED as any pool owner can return whatever value they want.
bytes destTokenAddress;
// Optional pool data to be transferred to the destination chain. Be default this is capped at
// CCIP_LOCK_OR_BURN_V1_RET_BYTES bytes. If more data is required, the TokenTransferFeeConfig.destBytesOverhead
// has to be set for the specific token.
bytes destPoolData;
}
struct ReleaseOrMintInV1 {
bytes originalSender; // The original sender of the tx on the source chain.
uint64 remoteChainSelector; // ─╮ The chain ID of the source chain.
address receiver; // ───────────╯ The recipient of the tokens on the destination chain.
uint256 amount; // The amount of tokens to release or mint, denominated in the source token's decimals.
address localToken; // The address on this chain of the token to release or mint.
/// @dev WARNING: sourcePoolAddress should be checked prior to any processing of funds. Make sure it matches the
/// expected pool address for the given remoteChainSelector.
bytes sourcePoolAddress; // The address of the source pool, abi encoded in the case of EVM chains.
bytes sourcePoolData; // The data received from the source pool to process the release or mint.
/// @dev WARNING: offchainTokenData is untrusted data.
bytes offchainTokenData; // The offchain data to process the release or mint.
}
struct ReleaseOrMintOutV1 {
// The number of tokens released or minted on the destination chain, denominated in the local token's decimals.
// This value is expected to be equal to the ReleaseOrMintInV1.amount in the case where the source and destination
// chain have the same number of decimals.
uint256 destinationAmount;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.24;
import {IPoolV1} from "../interfaces/IPool.sol";
import {IRMN} from "../interfaces/IRMN.sol";
import {IRouter} from "../interfaces/IRouter.sol";
import {Ownable2StepMsgSender} from "../../shared/access/Ownable2StepMsgSender.sol";
import {Pool} from "../libraries/Pool.sol";
import {RateLimiter} from "../libraries/RateLimiter.sol";
import {IERC20} from "../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
import {IERC20Metadata} from
"../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import {IERC165} from "../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/introspection/IERC165.sol";
import {EnumerableSet} from "../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/structs/EnumerableSet.sol";
/// @notice Base abstract class with common functions for all token pools.
/// A token pool serves as isolated place for holding tokens and token specific logic
/// that may execute as tokens move across the bridge.
/// @dev This pool supports different decimals on different chains but using this feature could impact the total number
/// of tokens in circulation. Since all of the tokens are locked/burned on the source, and a rounded amount is
/// minted/released on the destination, the number of tokens minted/released could be less than the number of tokens
/// burned/locked. This is because the source chain does not know about the destination token decimals. This is not a
/// problem if the decimals are the same on both chains.
///
/// Example:
/// Assume there is a token with 6 decimals on chain A and 3 decimals on chain B.
/// - 1.234567 tokens are burned on chain A.
/// - 1.234 tokens are minted on chain B.
/// When sending the 1.234 tokens back to chain A, you will receive 1.234000 tokens on chain A, effectively losing
/// 0.000567 tokens.
/// In the case of a burnMint pool on chain A, these funds are burned in the pool on chain A.
/// In the case of a lockRelease pool on chain A, these funds accumulate in the pool on chain A.
abstract contract TokenPool is IPoolV1, Ownable2StepMsgSender {
using EnumerableSet for EnumerableSet.Bytes32Set;
using EnumerableSet for EnumerableSet.AddressSet;
using EnumerableSet for EnumerableSet.UintSet;
using RateLimiter for RateLimiter.TokenBucket;
error CallerIsNotARampOnRouter(address caller);
error ZeroAddressNotAllowed();
error SenderNotAllowed(address sender);
error AllowListNotEnabled();
error NonExistentChain(uint64 remoteChainSelector);
error ChainNotAllowed(uint64 remoteChainSelector);
error CursedByRMN();
error ChainAlreadyExists(uint64 chainSelector);
error InvalidSourcePoolAddress(bytes sourcePoolAddress);
error InvalidToken(address token);
error Unauthorized(address caller);
error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);
error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);
error InvalidRemoteChainDecimals(bytes sourcePoolData);
error MismatchedArrayLengths();
error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);
error InvalidDecimalArgs(uint8 expected, uint8 actual);
event Locked(address indexed sender, uint256 amount);
event Burned(address indexed sender, uint256 amount);
event Released(address indexed sender, address indexed recipient, uint256 amount);
event Minted(address indexed sender, address indexed recipient, uint256 amount);
event ChainAdded(
uint64 remoteChainSelector,
bytes remoteToken,
RateLimiter.Config outboundRateLimiterConfig,
RateLimiter.Config inboundRateLimiterConfig
);
event ChainConfigured(
uint64 remoteChainSelector,
RateLimiter.Config outboundRateLimiterConfig,
RateLimiter.Config inboundRateLimiterConfig
);
event ChainRemoved(uint64 remoteChainSelector);
event RemotePoolAdded(uint64 indexed remoteChainSelector, bytes remotePoolAddress);
event RemotePoolRemoved(uint64 indexed remoteChainSelector, bytes remotePoolAddress);
event AllowListAdd(address sender);
event AllowListRemove(address sender);
event RouterUpdated(address oldRouter, address newRouter);
event RateLimitAdminSet(address rateLimitAdmin);
struct ChainUpdate {
uint64 remoteChainSelector; // Remote chain selector
bytes[] remotePoolAddresses; // Address of the remote pool, ABI encoded in the case of a remote EVM chain.
bytes remoteTokenAddress; // Address of the remote token, ABI encoded in the case of a remote EVM chain.
RateLimiter.Config outboundRateLimiterConfig; // Outbound rate limited config, meaning the rate limits for all of the onRamps for the given chain
RateLimiter.Config inboundRateLimiterConfig; // Inbound rate limited config, meaning the rate limits for all of the offRamps for the given chain
}
struct RemoteChainConfig {
RateLimiter.TokenBucket outboundRateLimiterConfig; // Outbound rate limited config, meaning the rate limits for all of the onRamps for the given chain
RateLimiter.TokenBucket inboundRateLimiterConfig; // Inbound rate limited config, meaning the rate limits for all of the offRamps for the given chain
bytes remoteTokenAddress; // Address of the remote token, ABI encoded in the case of a remote EVM chain.
EnumerableSet.Bytes32Set remotePools; // Set of remote pool hashes, ABI encoded in the case of a remote EVM chain.
}
/// @dev The bridgeable token that is managed by this pool. Pools could support multiple tokens at the same time if
/// required, but this implementation only supports one token.
IERC20 internal immutable i_token;
/// @dev The number of decimals of the token managed by this pool.
uint8 internal immutable i_tokenDecimals;
/// @dev The address of the RMN proxy
address internal immutable i_rmnProxy;
/// @dev The immutable flag that indicates if the pool is access-controlled.
bool internal immutable i_allowlistEnabled;
/// @dev A set of addresses allowed to trigger lockOrBurn as original senders.
/// Only takes effect if i_allowlistEnabled is true.
/// This can be used to ensure only token-issuer specified addresses can move tokens.
EnumerableSet.AddressSet internal s_allowlist;
/// @dev The address of the router
IRouter internal s_router;
/// @dev A set of allowed chain selectors. We want the allowlist to be enumerable to
/// be able to quickly determine (without parsing logs) who can access the pool.
/// @dev The chain selectors are in uint256 format because of the EnumerableSet implementation.
EnumerableSet.UintSet internal s_remoteChainSelectors;
mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;
/// @notice A mapping of hashed pool addresses to their unhashed form. This is used to be able to find the actually
/// configured pools and not just their hashed versions.
mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;
/// @notice The address of the rate limiter admin.
/// @dev Can be address(0) if none is configured.
address internal s_rateLimitAdmin;
constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router) {
if (address(token) == address(0) || router == address(0) || rmnProxy == address(0)) revert ZeroAddressNotAllowed();
i_token = token;
i_rmnProxy = rmnProxy;
try IERC20Metadata(address(token)).decimals() returns (uint8 actualTokenDecimals) {
if (localTokenDecimals != actualTokenDecimals) {
revert InvalidDecimalArgs(localTokenDecimals, actualTokenDecimals);
}
} catch {
// The decimals function doesn't exist, which is possible since it's optional in the ERC20 spec. We skip the check and
// assume the supplied token decimals are correct.
}
i_tokenDecimals = localTokenDecimals;
s_router = IRouter(router);
// Pool can be set as permissioned or permissionless at deployment time only to save hot-path gas.
i_allowlistEnabled = allowlist.length > 0;
if (i_allowlistEnabled) {
_applyAllowListUpdates(new address[](0), allowlist);
}
}
/// @inheritdoc IPoolV1
function isSupportedToken(
address token
) public view virtual returns (bool) {
return token == address(i_token);
}
/// @notice Gets the IERC20 token that this pool can lock or burn.
/// @return token The IERC20 token representation.
function getToken() public view returns (IERC20 token) {
return i_token;
}
/// @notice Get RMN proxy address
/// @return rmnProxy Address of RMN proxy
function getRmnProxy() public view returns (address rmnProxy) {
return i_rmnProxy;
}
/// @notice Gets the pool's Router
/// @return router The pool's Router
function getRouter() public view returns (address router) {
return address(s_router);
}
/// @notice Sets the pool's Router
/// @param newRouter The new Router
function setRouter(
address newRouter
) public onlyOwner {
if (newRouter == address(0)) revert ZeroAddressNotAllowed();
address oldRouter = address(s_router);
s_router = IRouter(newRouter);
emit RouterUpdated(oldRouter, newRouter);
}
/// @notice Signals which version of the pool interface is supported
function supportsInterface(
bytes4 interfaceId
) public pure virtual override returns (bool) {
return interfaceId == Pool.CCIP_POOL_V1 || interfaceId == type(IPoolV1).interfaceId
|| interfaceId == type(IERC165).interfaceId;
}
// ================================================================
// │ Validation │
// ================================================================
/// @notice Validates the lock or burn input for correctness on
/// - token to be locked or burned
/// - RMN curse status
/// - allowlist status
/// - if the sender is a valid onRamp
/// - rate limit status
/// @param lockOrBurnIn The input to validate.
/// @dev This function should always be called before executing a lock or burn. Not doing so would allow
/// for various exploits.
function _validateLockOrBurn(
Pool.LockOrBurnInV1 calldata lockOrBurnIn
) internal {
if (!isSupportedToken(lockOrBurnIn.localToken)) revert InvalidToken(lockOrBurnIn.localToken);
if (IRMN(i_rmnProxy).isCursed(bytes16(uint128(lockOrBurnIn.remoteChainSelector)))) revert CursedByRMN();
_checkAllowList(lockOrBurnIn.originalSender);
_onlyOnRamp(lockOrBurnIn.remoteChainSelector);
_consumeOutboundRateLimit(lockOrBurnIn.remoteChainSelector, lockOrBurnIn.amount);
}
/// @notice Validates the release or mint input for correctness on
/// - token to be released or minted
/// - RMN curse status
/// - if the sender is a valid offRamp
/// - if the source pool is valid
/// - rate limit status
/// @param releaseOrMintIn The input to validate.
/// @dev This function should always be called before executing a release or mint. Not doing so would allow
/// for various exploits.
function _validateReleaseOrMint(
Pool.ReleaseOrMintInV1 calldata releaseOrMintIn
) internal {
if (!isSupportedToken(releaseOrMintIn.localToken)) revert InvalidToken(releaseOrMintIn.localToken);
if (IRMN(i_rmnProxy).isCursed(bytes16(uint128(releaseOrMintIn.remoteChainSelector)))) revert CursedByRMN();
_onlyOffRamp(releaseOrMintIn.remoteChainSelector);
// Validates that the source pool address is configured on this pool.
if (!isRemotePool(releaseOrMintIn.remoteChainSelector, releaseOrMintIn.sourcePoolAddress)) {
revert InvalidSourcePoolAddress(releaseOrMintIn.sourcePoolAddress);
}
_consumeInboundRateLimit(releaseOrMintIn.remoteChainSelector, releaseOrMintIn.amount);
}
// ================================================================
// │ Token decimals │
// ================================================================
/// @notice Gets the IERC20 token decimals on the local chain.
function getTokenDecimals() public view virtual returns (uint8 decimals) {
return i_tokenDecimals;
}
function _encodeLocalDecimals() internal view virtual returns (bytes memory) {
return abi.encode(i_tokenDecimals);
}
function _parseRemoteDecimals(
bytes memory sourcePoolData
) internal view virtual returns (uint8) {
// Fallback to the local token decimals if the source pool data is empty. This allows for backwards compatibility.
if (sourcePoolData.length == 0) {
return i_tokenDecimals;
}
if (sourcePoolData.length != 32) {
revert InvalidRemoteChainDecimals(sourcePoolData);
}
uint256 remoteDecimals = abi.decode(sourcePoolData, (uint256));
if (remoteDecimals > type(uint8).max) {
revert InvalidRemoteChainDecimals(sourcePoolData);
}
return uint8(remoteDecimals);
}
/// @notice Calculates the local amount based on the remote amount and decimals.
/// @param remoteAmount The amount on the remote chain.
/// @param remoteDecimals The decimals of the token on the remote chain.
/// @return The local amount.
/// @dev This function protects against overflows. If there is a transaction that hits the overflow check, it is
/// probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been
/// wrongly configured, the token issuer could redeploy the pool with the correct decimals and manually re-execute the
/// CCIP tx to fix the issue.
function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256) {
if (remoteDecimals == i_tokenDecimals) {
return remoteAmount;
}
if (remoteDecimals > i_tokenDecimals) {
uint8 decimalsDiff = remoteDecimals - i_tokenDecimals;
if (decimalsDiff > 77) {
// This is a safety check to prevent overflow in the next calculation.
revert OverflowDetected(remoteDecimals, i_tokenDecimals, remoteAmount);
}
// Solidity rounds down so there is no risk of minting more tokens than the remote chain sent.
return remoteAmount / (10 ** decimalsDiff);
}
// This is a safety check to prevent overflow in the next calculation.
// More than 77 would never fit in a uint256 and would cause an overflow. We also check if the resulting amount
// would overflow.
uint8 diffDecimals = i_tokenDecimals - remoteDecimals;
if (diffDecimals > 77 || remoteAmount > type(uint256).max / (10 ** diffDecimals)) {
revert OverflowDetected(remoteDecimals, i_tokenDecimals, remoteAmount);
}
return remoteAmount * (10 ** diffDecimals);
}
// ================================================================
// │ Chain permissions │
// ================================================================
/// @notice Gets the pool address on the remote chain.
/// @param remoteChainSelector Remote chain selector.
/// @dev To support non-evm chains, this value is encoded into bytes
function getRemotePools(
uint64 remoteChainSelector
) public view returns (bytes[] memory) {
bytes32[] memory remotePoolHashes = s_remoteChainConfigs[remoteChainSelector].remotePools.values();
bytes[] memory remotePools = new bytes[](remotePoolHashes.length);
for (uint256 i = 0; i < remotePoolHashes.length; ++i) {
remotePools[i] = s_remotePoolAddresses[remotePoolHashes[i]];
}
return remotePools;
}
/// @notice Checks if the pool address is configured on the remote chain.
/// @param remoteChainSelector Remote chain selector.
/// @param remotePoolAddress The address of the remote pool.
function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool) {
return s_remoteChainConfigs[remoteChainSelector].remotePools.contains(keccak256(remotePoolAddress));
}
/// @notice Gets the token address on the remote chain.
/// @param remoteChainSelector Remote chain selector.
/// @dev To support non-evm chains, this value is encoded into bytes
function getRemoteToken(
uint64 remoteChainSelector
) public view returns (bytes memory) {
return s_remoteChainConfigs[remoteChainSelector].remoteTokenAddress;
}
/// @notice Adds a remote pool for a given chain selector. This could be due to a pool being upgraded on the remote
/// chain. We don't simply want to replace the old pool as there could still be valid inflight messages from the old
/// pool. This function allows for multiple pools to be added for a single chain selector.
/// @param remoteChainSelector The remote chain selector for which the remote pool address is being added.
/// @param remotePoolAddress The address of the new remote pool.
function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner {
if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector);
_setRemotePool(remoteChainSelector, remotePoolAddress);
}
/// @notice Removes the remote pool address for a given chain selector.
/// @dev All inflight txs from the remote pool will be rejected after it is removed. To ensure no loss of funds, there
/// should be no inflight txs from the given pool.
function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner {
if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector);
if (!s_remoteChainConfigs[remoteChainSelector].remotePools.remove(keccak256(remotePoolAddress))) {
revert InvalidRemotePoolForChain(remoteChainSelector, remotePoolAddress);
}
emit RemotePoolRemoved(remoteChainSelector, remotePoolAddress);
}
/// @inheritdoc IPoolV1
function isSupportedChain(
uint64 remoteChainSelector
) public view returns (bool) {
return s_remoteChainSelectors.contains(remoteChainSelector);
}
/// @notice Get list of allowed chains
/// @return list of chains.
function getSupportedChains() public view returns (uint64[] memory) {
uint256[] memory uint256ChainSelectors = s_remoteChainSelectors.values();
uint64[] memory chainSelectors = new uint64[](uint256ChainSelectors.length);
for (uint256 i = 0; i < uint256ChainSelectors.length; ++i) {
chainSelectors[i] = uint64(uint256ChainSelectors[i]);
}
return chainSelectors;
}
/// @notice Sets the permissions for a list of chains selectors. Actual senders for these chains
/// need to be allowed on the Router to interact with this pool.
/// @param remoteChainSelectorsToRemove A list of chain selectors to remove.
/// @param chainsToAdd A list of chains and their new permission status & rate limits. Rate limits
/// are only used when the chain is being added through `allowed` being true.
/// @dev Only callable by the owner
function applyChainUpdates(
uint64[] calldata remoteChainSelectorsToRemove,
ChainUpdate[] calldata chainsToAdd
) external virtual onlyOwner {
for (uint256 i = 0; i < remoteChainSelectorsToRemove.length; ++i) {
uint64 remoteChainSelectorToRemove = remoteChainSelectorsToRemove[i];
// If the chain doesn't exist, revert
if (!s_remoteChainSelectors.remove(remoteChainSelectorToRemove)) {
revert NonExistentChain(remoteChainSelectorToRemove);
}
// Remove all remote pool hashes for the chain
bytes32[] memory remotePools = s_remoteChainConfigs[remoteChainSelectorToRemove].remotePools.values();
for (uint256 j = 0; j < remotePools.length; ++j) {
s_remoteChainConfigs[remoteChainSelectorToRemove].remotePools.remove(remotePools[j]);
}
delete s_remoteChainConfigs[remoteChainSelectorToRemove];
emit ChainRemoved(remoteChainSelectorToRemove);
}
for (uint256 i = 0; i < chainsToAdd.length; ++i) {
ChainUpdate memory newChain = chainsToAdd[i];
RateLimiter._validateTokenBucketConfig(newChain.outboundRateLimiterConfig, false);
RateLimiter._validateTokenBucketConfig(newChain.inboundRateLimiterConfig, false);
if (newChain.remoteTokenAddress.length == 0) {
revert ZeroAddressNotAllowed();
}
// If the chain already exists, revert
if (!s_remoteChainSelectors.add(newChain.remoteChainSelector)) {
revert ChainAlreadyExists(newChain.remoteChainSelector);
}
RemoteChainConfig storage remoteChainConfig = s_remoteChainConfigs[newChain.remoteChainSelector];
remoteChainConfig.outboundRateLimiterConfig = RateLimiter.TokenBucket({
rate: newChain.outboundRateLimiterConfig.rate,
capacity: newChain.outboundRateLimiterConfig.capacity,
tokens: newChain.outboundRateLimiterConfig.capacity,
lastUpdated: uint32(block.timestamp),
isEnabled: newChain.outboundRateLimiterConfig.isEnabled
});
remoteChainConfig.inboundRateLimiterConfig = RateLimiter.TokenBucket({
rate: newChain.inboundRateLimiterConfig.rate,
capacity: newChain.inboundRateLimiterConfig.capacity,
tokens: newChain.inboundRateLimiterConfig.capacity,
lastUpdated: uint32(block.timestamp),
isEnabled: newChain.inboundRateLimiterConfig.isEnabled
});
remoteChainConfig.remoteTokenAddress = newChain.remoteTokenAddress;
for (uint256 j = 0; j < newChain.remotePoolAddresses.length; ++j) {
_setRemotePool(newChain.remoteChainSelector, newChain.remotePoolAddresses[j]);
}
emit ChainAdded(
newChain.remoteChainSelector,
newChain.remoteTokenAddress,
newChain.outboundRateLimiterConfig,
newChain.inboundRateLimiterConfig
);
}
}
/// @notice Adds a pool address to the allowed remote token pools for a particular chain.
/// @param remoteChainSelector The remote chain selector for which the remote pool address is being added.
/// @param remotePoolAddress The address of the new remote pool.
function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal {
if (remotePoolAddress.length == 0) {
revert ZeroAddressNotAllowed();
}
bytes32 poolHash = keccak256(remotePoolAddress);
// Check if the pool already exists.
if (!s_remoteChainConfigs[remoteChainSelector].remotePools.add(poolHash)) {
revert PoolAlreadyAdded(remoteChainSelector, remotePoolAddress);
}
// Add the pool to the mapping to be able to un-hash it later.
s_remotePoolAddresses[poolHash] = remotePoolAddress;
emit RemotePoolAdded(remoteChainSelector, remotePoolAddress);
}
// ================================================================
// │ Rate limiting │
// ================================================================
/// @dev The inbound rate limits should be slightly higher than the outbound rate limits. This is because many chains
/// finalize blocks in batches. CCIP also commits messages in batches: the commit plugin bundles multiple messages in
/// a single merkle root.
/// Imagine the following scenario.
/// - Chain A has an inbound and outbound rate limit of 100 tokens capacity and 1 token per second refill rate.
/// - Chain B has an inbound and outbound rate limit of 100 tokens capacity and 1 token per second refill rate.
///
/// At time 0:
/// - Chain A sends 100 tokens to Chain B.
/// At time 5:
/// - Chain A sends 5 tokens to Chain B.
/// At time 6:
/// The epoch that contains blocks [0-5] is finalized.
/// Both transactions will be included in the same merkle root and become executable at the same time. This means
/// the token pool on chain B requires a capacity of 105 to successfully execute both messages at the same time.
/// The exact additional capacity required depends on the refill rate and the size of the source chain epochs and the
/// CCIP round time. For simplicity, a 5-10% buffer should be sufficient in most cases.
/// @notice Sets the rate limiter admin address.
/// @dev Only callable by the owner.
/// @param rateLimitAdmin The new rate limiter admin address.
function setRateLimitAdmin(
address rateLimitAdmin
) external onlyOwner {
s_rateLimitAdmin = rateLimitAdmin;
emit RateLimitAdminSet(rateLimitAdmin);
}
/// @notice Gets the rate limiter admin address.
function getRateLimitAdmin() external view returns (address) {
return s_rateLimitAdmin;
}
/// @notice Consumes outbound rate limiting capacity in this pool
function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal {
s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._consume(amount, address(i_token));
}
/// @notice Consumes inbound rate limiting capacity in this pool
function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal {
s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._consume(amount, address(i_token));
}
/// @notice Gets the token bucket with its values for the block it was requested at.
/// @return The token bucket.
function getCurrentOutboundRateLimiterState(
uint64 remoteChainSelector
) external view returns (RateLimiter.TokenBucket memory) {
return s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._currentTokenBucketState();
}
/// @notice Gets the token bucket with its values for the block it was requested at.
/// @return The token bucket.
function getCurrentInboundRateLimiterState(
uint64 remoteChainSelector
) external view returns (RateLimiter.TokenBucket memory) {
return s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._currentTokenBucketState();
}
/// @notice Sets multiple chain rate limiter configs.
/// @param remoteChainSelectors The remote chain selector for which the rate limits apply.
/// @param outboundConfigs The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.
/// @param inboundConfigs The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.
function setChainRateLimiterConfigs(
uint64[] calldata remoteChainSelectors,
RateLimiter.Config[] calldata outboundConfigs,
RateLimiter.Config[] calldata inboundConfigs
) external {
if (msg.sender != s_rateLimitAdmin && msg.sender != owner()) revert Unauthorized(msg.sender);
if (remoteChainSelectors.length != outboundConfigs.length || remoteChainSelectors.length != inboundConfigs.length) {
revert MismatchedArrayLengths();
}
for (uint256 i = 0; i < remoteChainSelectors.length; ++i) {
_setRateLimitConfig(remoteChainSelectors[i], outboundConfigs[i], inboundConfigs[i]);
}
}
/// @notice Sets the chain rate limiter config.
/// @param remoteChainSelector The remote chain selector for which the rate limits apply.
/// @param outboundConfig The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.
/// @param inboundConfig The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.
function setChainRateLimiterConfig(
uint64 remoteChainSelector,
RateLimiter.Config memory outboundConfig,
RateLimiter.Config memory inboundConfig
) external {
if (msg.sender != s_rateLimitAdmin && msg.sender != owner()) revert Unauthorized(msg.sender);
_setRateLimitConfig(remoteChainSelector, outboundConfig, inboundConfig);
}
function _setRateLimitConfig(
uint64 remoteChainSelector,
RateLimiter.Config memory outboundConfig,
RateLimiter.Config memory inboundConfig
) internal {
if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector);
RateLimiter._validateTokenBucketConfig(outboundConfig, false);
s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._setTokenBucketConfig(outboundConfig);
RateLimiter._validateTokenBucketConfig(inboundConfig, false);
s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._setTokenBucketConfig(inboundConfig);
emit ChainConfigured(remoteChainSelector, outboundConfig, inboundConfig);
}
// ================================================================
// │ Access │
// ================================================================
/// @notice Checks whether remote chain selector is configured on this contract, and if the msg.sender
/// is a permissioned onRamp for the given chain on the Router.
function _onlyOnRamp(
uint64 remoteChainSelector
) internal view {
if (!isSupportedChain(remoteChainSelector)) revert ChainNotAllowed(remoteChainSelector);
if (!(msg.sender == s_router.getOnRamp(remoteChainSelector))) revert CallerIsNotARampOnRouter(msg.sender);
}
/// @notice Checks whether remote chain selector is configured on this contract, and if the msg.sender
/// is a permissioned offRamp for the given chain on the Router.
function _onlyOffRamp(
uint64 remoteChainSelector
) internal view {
if (!isSupportedChain(remoteChainSelector)) revert ChainNotAllowed(remoteChainSelector);
if (!s_router.isOffRamp(remoteChainSelector, msg.sender)) revert CallerIsNotARampOnRouter(msg.sender);
}
// ================================================================
// │ Allowlist │
// ================================================================
function _checkAllowList(
address sender
) internal view {
if (i_allowlistEnabled) {
if (!s_allowlist.contains(sender)) {
revert SenderNotAllowed(sender);
}
}
}
/// @notice Gets whether the allowlist functionality is enabled.
/// @return true is enabled, false if not.
function getAllowListEnabled() external view returns (bool) {
return i_allowlistEnabled;
}
/// @notice Gets the allowed addresses.
/// @return The allowed addresses.
function getAllowList() external view returns (address[] memory) {
return s_allowlist.values();
}
/// @notice Apply updates to the allow list.
/// @param removes The addresses to be removed.
/// @param adds The addresses to be added.
function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner {
_applyAllowListUpdates(removes, adds);
}
/// @notice Internal version of applyAllowListUpdates to allow for reuse in the constructor.
function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal {
if (!i_allowlistEnabled) revert AllowListNotEnabled();
for (uint256 i = 0; i < removes.length; ++i) {
address toRemove = removes[i];
if (s_allowlist.remove(toRemove)) {
emit AllowListRemove(toRemove);
}
}
for (uint256 i = 0; i < adds.length; ++i) {
address toAdd = adds[i];
if (toAdd == address(0)) {
continue;
}
if (s_allowlist.add(toAdd)) {
emit AllowListAdd(toAdd);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {Pool} from "@chainlink/contracts-ccip/src/v0.8/ccip/libraries/Pool.sol";
import {TokenPool} from "@chainlink/contracts-ccip/src/v0.8/ccip/pools/TokenPool.sol";
import {ITypeAndVersion} from "@chainlink/contracts-ccip/src/v0.8/shared/interfaces/ITypeAndVersion.sol";
/**
* @title Token Pool Abstract contract
* @dev The TokenPoolAbstract contract is an abstract contract that implements the TokenPool interface.
* It follows the `BurnMintTokenPoolAbstract` implementation but allowing for more flexibility by allowing
* to override both the `_lockOrBurn` and `_releaseOrMint` functions.
*/
abstract contract TokenPoolAbstract is TokenPool, ITypeAndVersion {
/**
* @dev Locks or burns the tokens in the pool
* The _validateLockOrBurn check is an essential security check
*
* Emits a {LockedOrBurned} event
*/
function lockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn)
external
virtual
override
returns (Pool.LockOrBurnOutV1 memory)
{
_validateLockOrBurn(lockOrBurnIn);
_lockOrBurn(lockOrBurnIn);
return Pool.LockOrBurnOutV1({
destTokenAddress: getRemoteToken(lockOrBurnIn.remoteChainSelector),
destPoolData: _encodeLocalDecimals()
});
}
/**
* @dev Releases or mints the tokens from the pool
* The _validateReleaseOrMint check is an essential security check
*
* Emits a {ReleasedOrMinted} event
*/
function releaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn)
public
virtual
override
returns (Pool.ReleaseOrMintOutV1 memory)
{
_validateReleaseOrMint(releaseOrMintIn);
// Calculate the local amount
uint256 localAmount =
_calculateLocalAmount(releaseOrMintIn.amount, _parseRemoteDecimals(releaseOrMintIn.sourcePoolData));
_releaseOrMint(releaseOrMintIn, localAmount);
return Pool.ReleaseOrMintOutV1({destinationAmount: localAmount});
}
/**
* @dev Locks or burns the tokens in the pool
* Should take care of the event emission
*/
function _lockOrBurn(Pool.LockOrBurnInV1 calldata lockOrBurnIn) internal virtual;
/**
* @dev Releases or mints the tokens in the pool
* Should take care of the event emission
*/
function _releaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn, uint256 localAmount) internal virtual;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {IERC20} from
"@chainlink/contracts-ccip/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
interface IXERC20 is IERC20 {
error OnlySuperchainERC20Bridge();
/// @notice two rate storage slots per rate limit
struct RateLimitMidPoint {
//// -------------------------------------------- ////
//// ------------------ SLOT 0 ------------------ ////
//// -------------------------------------------- ////
/// @notice the rate per second for this contract
uint128 rateLimitPerSecond;
/// @notice the cap of the buffer that can be used at once
uint112 bufferCap;
//// -------------------------------------------- ////
//// ------------------ SLOT 1 ------------------ ////
//// -------------------------------------------- ////
/// @notice the last time the buffer was used by the contract
uint32 lastBufferUsedTime;
/// @notice the buffer at the timestamp of lastBufferUsedTime
uint112 bufferStored;
/// @notice the mid point of the buffer
uint112 midPoint;
}
/// @notice struct for initializing rate limit
struct RateLimitMidPointInfo {
/// @notice the buffer cap for this bridge
uint112 bufferCap;
/// @notice the rate limit per second for this bridge
uint128 rateLimitPerSecond;
/// @notice the bridge address
address bridge;
}
/// @notice Emits when a limit is set
/// @param _bridge The address of the bridge we are setting the limit to
/// @param _bufferCap The updated buffer cap for the bridge
event BridgeLimitsSet(address indexed _bridge, uint256 _bufferCap);
/// @notice The address of the lockbox contract
function lockbox() external view returns (address);
/// @notice Maps bridge address to bridge rate limits
/// @param _bridge The bridge we are viewing the limits of
/// @return _rateLimit The limits of the bridge
function rateLimits(address _bridge) external view returns (RateLimitMidPoint memory _rateLimit);
/// @notice Returns the max limit of a bridge
/// @param _bridge The bridge we are viewing the limits of
/// @return _limit The limit the bridge has
function mintingMaxLimitOf(address _bridge) external view returns (uint256 _limit);
/// @notice Returns the max limit of a bridge
/// @param _bridge the bridge we are viewing the limits of
/// @return _limit The limit the bridge has
function burningMaxLimitOf(address _bridge) external view returns (uint256 _limit);
/// @notice Returns the current limit of a bridge
/// @param _bridge The bridge we are viewing the limits of
/// @return _limit The limit the bridge has
function mintingCurrentLimitOf(address _bridge) external view returns (uint256 _limit);
/// @notice Returns the current limit of a bridge
/// @param _bridge the bridge we are viewing the limits of
/// @return _limit The limit the bridge has
function burningCurrentLimitOf(address _bridge) external view returns (uint256 _limit);
/// @notice Mints tokens for a user
/// @dev Can only be called by a bridge
/// @param _user The address of the user who needs tokens minted
/// @param _amount The amount of tokens being minted
function mint(address _user, uint256 _amount) external;
/// @notice Burns tokens for a user
/// @dev Can only be called by a bridge
/// @param _user The address of the user who needs tokens burned
/// @param _amount The amount of tokens being burned
function burn(address _user, uint256 _amount) external;
/// @notice Conform to the xERC20 setLimits interface
/// @dev Can only be called if the bridge already has a buffer cap
/// @param _bridge The bridge we are setting the limits of
/// @param _newBufferCap The new buffer cap, uint112 max for unlimited
function setBufferCap(address _bridge, uint256 _newBufferCap) external;
/// @notice Sets rate limit per second for a bridge
/// @dev Can only be called if the bridge already has a buffer cap
/// @param _bridge The bridge we are setting the limits of
/// @param _newRateLimitPerSecond The new rate limit per second
function setRateLimitPerSecond(address _bridge, uint128 _newRateLimitPerSecond) external;
/// @notice Adds a new bridge to the currently active bridges
/// @param _newBridge The bridge to add
function addBridge(RateLimitMidPointInfo memory _newBridge) external;
/// @notice Removes a bridge from the currently active bridges
/// deleting its buffer stored, buffer cap, mid point and last
/// buffer used time
/// @param _bridge The bridge to remove
function removeBridge(address _bridge) external;
/// @return The address of the Superchain ERC20 Bridge
function SUPERCHAIN_ERC20_BRIDGE() external view returns (address);
/// @notice Emitted when a crosschain transfer mints tokens.
/// @param to Address of the account tokens are being minted for.
/// @param amount Amount of tokens minted.
event CrosschainMint(address indexed to, uint256 amount);
/// @notice Emitted when a crosschain transfer burns tokens.
/// @param from Address of the account tokens are being burned from.
/// @param amount Amount of tokens burned.
event CrosschainBurn(address indexed from, uint256 amount);
/// @notice Mint tokens through a crosschain transfer.
/// @param _to Address to mint tokens to.
/// @param _amount Amount of tokens to mint.
function crosschainMint(address _to, uint256 _amount) external;
/// @notice Burn tokens through a crosschain transfer.
/// @param _from Address to burn tokens from.
/// @param _amount Amount of tokens to burn.
function crosschainBurn(address _from, uint256 _amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IXERC20LockBox {
/// @notice Emitted when tokens are deposited into the lockbox
/// @param _sender The address of the user who deposited
/// @param _amount The amount of tokens deposited
event Deposit(address _sender, uint256 _amount);
/// @notice Emitted when tokens are withdrawn from the lockbox
/// @param _sender The address of the user who withdrew
/// @param _amount The amount of tokens withdrawn
event Withdraw(address _sender, uint256 _amount);
/// @notice The XERC20 token of this contract
function XERC20() external view returns (address);
/// @notice The ERC20 token of this contract
function ERC20() external view returns (address);
/// @notice Deposit ERC20 tokens into the lockbox
/// @param _amount The amount of tokens to deposit
function deposit(uint256 _amount) external;
/// @notice Withdraw ERC20 tokens from the lockbox
/// @param _amount The amount of tokens to withdraw
function withdraw(uint256 _amount) external;
/// @notice Withdraw ERC20 tokens from the lockbox to a specific address
/// @param _to The address to withdraw to
/// @param _amount The amount of tokens to withdraw
function withdrawTo(address _to, uint256 _amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Pool} from "../libraries/Pool.sol";
import {IERC165} from "../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/introspection/IERC165.sol";
/// @notice Shared public interface for multiple V1 pool types.
/// Each pool type handles a different child token model e.g. lock/unlock, mint/burn.
interface IPoolV1 is IERC165 {
/// @notice Lock tokens into the pool or burn the tokens.
/// @param lockOrBurnIn Encoded data fields for the processing of tokens on the source chain.
/// @return lockOrBurnOut Encoded data fields for the processing of tokens on the destination chain.
function lockOrBurn(
Pool.LockOrBurnInV1 calldata lockOrBurnIn
) external returns (Pool.LockOrBurnOutV1 memory lockOrBurnOut);
/// @notice Releases or mints tokens to the receiver address.
/// @param releaseOrMintIn All data required to release or mint tokens.
/// @return releaseOrMintOut The amount of tokens released or minted on the local chain, denominated
/// in the local token's decimals.
/// @dev The offramp asserts that the balanceOf of the receiver has been incremented by exactly the number
/// of tokens that is returned in ReleaseOrMintOutV1.destinationAmount. If the amounts do not match, the tx reverts.
function releaseOrMint(
Pool.ReleaseOrMintInV1 calldata releaseOrMintIn
) external returns (Pool.ReleaseOrMintOutV1 memory);
/// @notice Checks whether a remote chain is supported in the token pool.
/// @param remoteChainSelector The selector of the remote chain.
/// @return true if the given chain is a permissioned remote chain.
function isSupportedChain(
uint64 remoteChainSelector
) external view returns (bool);
/// @notice Returns if the token pool supports the given token.
/// @param token The address of the token.
/// @return true if the token is supported by the pool.
function isSupportedToken(
address token
) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @notice This interface contains the only RMN-related functions that might be used on-chain by other CCIP contracts.
interface IRMN {
/// @notice A Merkle root tagged with the address of the commit store contract it is destined for.
struct TaggedRoot {
address commitStore;
bytes32 root;
}
/// @notice Callers MUST NOT cache the return value as a blessed tagged root could become unblessed.
function isBlessed(
TaggedRoot calldata taggedRoot
) external view returns (bool);
/// @notice Iff there is an active global or legacy curse, this function returns true.
function isCursed() external view returns (bool);
/// @notice Iff there is an active global curse, or an active curse for `subject`, this function returns true.
/// @param subject To check whether a particular chain is cursed, set to bytes16(uint128(chainSelector)).
function isCursed(
bytes16 subject
) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Client} from "../libraries/Client.sol";
interface IRouter {
error OnlyOffRamp();
/// @notice Route the message to its intended receiver contract.
/// @param message Client.Any2EVMMessage struct.
/// @param gasForCallExactCheck of params for exec.
/// @param gasLimit set of params for exec.
/// @param receiver set of params for exec.
/// @dev if the receiver is a contracts that signals support for CCIP execution through EIP-165.
/// the contract is called. If not, only tokens are transferred.
/// @return success A boolean value indicating whether the ccip message was received without errors.
/// @return retBytes A bytes array containing return data form CCIP receiver.
/// @return gasUsed the gas used by the external customer call. Does not include any overhead.
function routeMessage(
Client.Any2EVMMessage calldata message,
uint16 gasForCallExactCheck,
uint256 gasLimit,
address receiver
) external returns (bool success, bytes memory retBytes, uint256 gasUsed);
/// @notice Returns the configured onramp for a specific destination chain.
/// @param destChainSelector The destination chain Id to get the onRamp for.
/// @return onRampAddress The address of the onRamp.
function getOnRamp(
uint64 destChainSelector
) external view returns (address onRampAddress);
/// @notice Return true if the given offRamp is a configured offRamp for the given source chain.
/// @param sourceChainSelector The source chain selector to check.
/// @param offRamp The address of the offRamp to check.
function isOffRamp(uint64 sourceChainSelector, address offRamp) external view returns (bool isOffRamp);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import {Ownable2Step} from "./Ownable2Step.sol";
/// @notice Sets the msg.sender to be the owner of the contract and does not set a pending owner.
contract Ownable2StepMsgSender is Ownable2Step {
constructor() Ownable2Step(msg.sender, address(0)) {}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
/// @notice Implements Token Bucket rate limiting.
/// @dev uint128 is safe for rate limiter state.
/// - For USD value rate limiting, it can adequately store USD value in 18 decimals.
/// - For ERC20 token amount rate limiting, all tokens that will be listed will have at most a supply of uint128.max
/// tokens, and it will therefore not overflow the bucket. In exceptional scenarios where tokens consumed may be larger
/// than uint128, e.g. compromised issuer, an enabled RateLimiter will check and revert.
library RateLimiter {
error BucketOverfilled();
error OnlyCallableByAdminOrOwner();
error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);
error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);
error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested);
error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available);
error InvalidRateLimitRate(Config rateLimiterConfig);
error DisabledNonZeroRateLimit(Config config);
error RateLimitMustBeDisabled();
event TokensConsumed(uint256 tokens);
event ConfigChanged(Config config);
struct TokenBucket {
uint128 tokens; // ──────╮ Current number of tokens that are in the bucket.
uint32 lastUpdated; // │ Timestamp in seconds of the last token refill, good for 100+ years.
bool isEnabled; // ──────╯ Indication whether the rate limiting is enabled or not.
uint128 capacity; // ────╮ Maximum number of tokens that can be in the bucket.
uint128 rate; // ────────╯ Number of tokens per second that the bucket is refilled.
}
struct Config {
bool isEnabled; // Indication whether the rate limiting should be enabled.
uint128 capacity; // ────╮ Specifies the capacity of the rate limiter.
uint128 rate; // ───────╯ Specifies the rate of the rate limiter.
}
/// @notice _consume removes the given tokens from the pool, lowering the rate tokens allowed to be
/// consumed for subsequent calls.
/// @param requestTokens The total tokens to be consumed from the bucket.
/// @param tokenAddress The token to consume capacity for, use 0x0 to indicate aggregate value capacity.
/// @dev Reverts when requestTokens exceeds bucket capacity or available tokens in the bucket.
/// @dev emits removal of requestTokens if requestTokens is > 0.
function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal {
// If there is no value to remove or rate limiting is turned off, skip this step to reduce gas usage.
if (!s_bucket.isEnabled || requestTokens == 0) {
return;
}
uint256 tokens = s_bucket.tokens;
uint256 capacity = s_bucket.capacity;
uint256 timeDiff = block.timestamp - s_bucket.lastUpdated;
if (timeDiff != 0) {
if (tokens > capacity) revert BucketOverfilled();
// Refill tokens when arriving at a new block time.
tokens = _calculateRefill(capacity, tokens, timeDiff, s_bucket.rate);
s_bucket.lastUpdated = uint32(block.timestamp);
}
if (capacity < requestTokens) {
// Token address 0 indicates consuming aggregate value rate limit capacity.
if (tokenAddress == address(0)) revert AggregateValueMaxCapacityExceeded(capacity, requestTokens);
revert TokenMaxCapacityExceeded(capacity, requestTokens, tokenAddress);
}
if (tokens < requestTokens) {
uint256 rate = s_bucket.rate;
// Wait required until the bucket is refilled enough to accept this value, round up to next higher second.
// Consume is not guaranteed to succeed after wait time passes if there is competing traffic.
// This acts as a lower bound of wait time.
uint256 minWaitInSeconds = ((requestTokens - tokens) + (rate - 1)) / rate;
if (tokenAddress == address(0)) revert AggregateValueRateLimitReached(minWaitInSeconds, tokens);
revert TokenRateLimitReached(minWaitInSeconds, tokens, tokenAddress);
}
tokens -= requestTokens;
// Downcast is safe here, as tokens is not larger than capacity.
s_bucket.tokens = uint128(tokens);
emit TokensConsumed(requestTokens);
}
/// @notice Gets the token bucket with its values for the block it was requested at.
/// @return The token bucket.
function _currentTokenBucketState(
TokenBucket memory bucket
) internal view returns (TokenBucket memory) {
// We update the bucket to reflect the status at the exact time of the call. This means we might need to refill a
// part of the bucket based on the time that has passed since the last update.
bucket.tokens =
uint128(_calculateRefill(bucket.capacity, bucket.tokens, block.timestamp - bucket.lastUpdated, bucket.rate));
bucket.lastUpdated = uint32(block.timestamp);
return bucket;
}
/// @notice Sets the rate limited config.
/// @param s_bucket The token bucket.
/// @param config The new config.
function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal {
// First update the bucket to make sure the proper rate is used for all the time up until the config change.
uint256 timeDiff = block.timestamp - s_bucket.lastUpdated;
if (timeDiff != 0) {
s_bucket.tokens = uint128(_calculateRefill(s_bucket.capacity, s_bucket.tokens, timeDiff, s_bucket.rate));
s_bucket.lastUpdated = uint32(block.timestamp);
}
s_bucket.tokens = uint128(_min(config.capacity, s_bucket.tokens));
s_bucket.isEnabled = config.isEnabled;
s_bucket.capacity = config.capacity;
s_bucket.rate = config.rate;
emit ConfigChanged(config);
}
/// @notice Validates the token bucket config.
function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure {
if (config.isEnabled) {
if (config.rate >= config.capacity || config.rate == 0) {
revert InvalidRateLimitRate(config);
}
if (mustBeDisabled) {
revert RateLimitMustBeDisabled();
}
} else {
if (config.rate != 0 || config.capacity != 0) {
revert DisabledNonZeroRateLimit(config);
}
}
}
/// @notice Calculate refilled tokens.
/// @param capacity bucket capacity.
/// @param tokens current bucket tokens.
/// @param timeDiff block time difference since last refill.
/// @param rate bucket refill rate.
/// @return the value of tokens after refill.
function _calculateRefill(
uint256 capacity,
uint256 tokens,
uint256 timeDiff,
uint256 rate
) private pure returns (uint256) {
return _min(capacity, tokens + timeDiff * rate);
}
/// @notice Return the smallest of two integers.
/// @param a first int.
/// @param b second int.
/// @return smallest.
function _min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
}// 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 v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.20;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(bytes32 value => uint256) _positions;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._positions[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.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
pragma solidity ^0.8.0;
interface ITypeAndVersion {
function typeAndVersion() external pure returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// End consumer library.
library Client {
/// @dev RMN depends on this struct, if changing, please notify the RMN maintainers.
struct EVMTokenAmount {
address token; // token address on the local chain.
uint256 amount; // Amount of tokens.
}
struct Any2EVMMessage {
bytes32 messageId; // MessageId corresponding to ccipSend on source.
uint64 sourceChainSelector; // Source chain selector.
bytes sender; // abi.decode(sender) if coming from an EVM chain.
bytes data; // payload sent in original message.
EVMTokenAmount[] destTokenAmounts; // Tokens and their amounts in their destination chain representation.
}
// If extraArgs is empty bytes, the default is 200k gas limit.
struct EVM2AnyMessage {
bytes receiver; // abi.encode(receiver address) for dest EVM chains.
bytes data; // Data payload.
EVMTokenAmount[] tokenAmounts; // Token transfers.
address feeToken; // Address of feeToken. address(0) means you will send msg.value.
bytes extraArgs; // Populate this with _argsToBytes(EVMExtraArgsV2).
}
// bytes4(keccak256("CCIP EVMExtraArgsV1"));
bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;
struct EVMExtraArgsV1 {
uint256 gasLimit;
}
function _argsToBytes(
EVMExtraArgsV1 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(EVM_EXTRA_ARGS_V1_TAG, extraArgs);
}
// bytes4(keccak256("CCIP EVMExtraArgsV2"));
bytes4 public constant EVM_EXTRA_ARGS_V2_TAG = 0x181dcf10;
// bytes4(keccak256("CCIP SVMExtraArgsV1"));
bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;
/// @dev The maximum number of accounts that can be passed in SVMExtraArgs.
uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;
/// @param gasLimit: gas limit for the callback on the destination chain.
/// @param allowOutOfOrderExecution: if true, it indicates that the message can be executed in any order relative to
/// other messages from the same sender. This value's default varies by chain. On some chains, a particular value is
/// enforced, meaning if the expected value is not set, the message request will revert.
struct EVMExtraArgsV2 {
uint256 gasLimit;
bool allowOutOfOrderExecution;
}
struct SVMExtraArgsV1 {
uint32 computeUnits;
uint64 accountIsWritableBitmap;
bool allowOutOfOrderExecution;
bytes32 tokenReceiver;
bytes32[] accounts;
}
function _argsToBytes(
EVMExtraArgsV2 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(EVM_EXTRA_ARGS_V2_TAG, extraArgs);
}
function _svmArgsToBytes(
SVMExtraArgsV1 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(SVM_EXTRA_ARGS_V1_TAG, extraArgs);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import {IOwnable} from "../interfaces/IOwnable.sol";
/// @notice A minimal contract that implements 2-step ownership transfer and nothing more. It's made to be minimal
/// to reduce the impact of the bytecode size on any contract that inherits from it.
contract Ownable2Step is IOwnable {
/// @notice The pending owner is the address to which ownership may be transferred.
address private s_pendingOwner;
/// @notice The owner is the current owner of the contract.
/// @dev The owner is the second storage variable so any implementing contract could pack other state with it
/// instead of the much less used s_pendingOwner.
address private s_owner;
error OwnerCannotBeZero();
error MustBeProposedOwner();
error CannotTransferToSelf();
error OnlyCallableByOwner();
event OwnershipTransferRequested(address indexed from, address indexed to);
event OwnershipTransferred(address indexed from, address indexed to);
constructor(address newOwner, address pendingOwner) {
if (newOwner == address(0)) {
revert OwnerCannotBeZero();
}
s_owner = newOwner;
if (pendingOwner != address(0)) {
_transferOwnership(pendingOwner);
}
}
/// @notice Get the current owner
function owner() public view override returns (address) {
return s_owner;
}
/// @notice Allows an owner to begin transferring ownership to a new address. The new owner needs to call
/// `acceptOwnership` to accept the transfer before any permissions are changed.
/// @param to The address to which ownership will be transferred.
function transferOwnership(address to) public override onlyOwner {
_transferOwnership(to);
}
/// @notice validate, transfer ownership, and emit relevant events
/// @param to The address to which ownership will be transferred.
function _transferOwnership(address to) private {
if (to == msg.sender) {
revert CannotTransferToSelf();
}
s_pendingOwner = to;
emit OwnershipTransferRequested(s_owner, to);
}
/// @notice Allows an ownership transfer to be completed by the recipient.
function acceptOwnership() external override {
if (msg.sender != s_pendingOwner) {
revert MustBeProposedOwner();
}
address oldOwner = s_owner;
s_owner = msg.sender;
s_pendingOwner = address(0);
emit OwnershipTransferred(oldOwner, msg.sender);
}
/// @notice validate access
function _validateOwnership() internal view {
if (msg.sender != s_owner) {
revert OnlyCallableByOwner();
}
}
/// @notice Reverts if called by anyone other than the contract owner.
modifier onlyOwner() {
_validateOwnership();
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IOwnable {
function owner() external returns (address);
function transferOwnership(address recipient) external;
function acceptOwnership() external;
}{
"remappings": [
"forge-std/=lib/forge-std/src/",
"@openzeppelin5/contracts/=node_modules/@openzeppelin/contracts/",
"@arbitrum/=node_modules/@arbitrum/",
"@chainlink/=node_modules/@chainlink/",
"@eth-optimism/=node_modules/@eth-optimism/",
"@hyperlane-xyz/=node_modules/@hyperlane-xyz/",
"@offchainlabs/=node_modules/@offchainlabs/",
"@openzeppelin/=node_modules/@openzeppelin/",
"@scroll-tech/=node_modules/@scroll-tech/",
"@zksync/=node_modules/@zksync/"
],
"optimizer": {
"enabled": true,
"runs": 100000
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"lockbox","type":"address"},{"internalType":"uint8","name":"localTokenDecimals","type":"uint8"},{"internalType":"address[]","name":"allowlist","type":"address[]"},{"internalType":"address","name":"rmnProxy","type":"address"},{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"capacity","type":"uint256"},{"internalType":"uint256","name":"requested","type":"uint256"}],"name":"AggregateValueMaxCapacityExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"minWaitInSeconds","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"AggregateValueRateLimitReached","type":"error"},{"inputs":[],"name":"AllowListNotEnabled","type":"error"},{"inputs":[],"name":"BucketOverfilled","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotARampOnRouter","type":"error"},{"inputs":[],"name":"CannotTransferToSelf","type":"error"},{"inputs":[{"internalType":"uint64","name":"chainSelector","type":"uint64"}],"name":"ChainAlreadyExists","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"ChainNotAllowed","type":"error"},{"inputs":[],"name":"CursedByRMN","type":"error"},{"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"config","type":"tuple"}],"name":"DisabledNonZeroRateLimit","type":"error"},{"inputs":[{"internalType":"uint256","name":"lockboxBalance","type":"uint256"},{"internalType":"uint256","name":"localAmount","type":"uint256"}],"name":"InsufficientLockboxBalance","type":"error"},{"inputs":[{"internalType":"uint8","name":"expected","type":"uint8"},{"internalType":"uint8","name":"actual","type":"uint8"}],"name":"InvalidDecimalArgs","type":"error"},{"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"rateLimiterConfig","type":"tuple"}],"name":"InvalidRateLimitRate","type":"error"},{"inputs":[{"internalType":"bytes","name":"sourcePoolData","type":"bytes"}],"name":"InvalidRemoteChainDecimals","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"InvalidRemotePoolForChain","type":"error"},{"inputs":[{"internalType":"bytes","name":"sourcePoolAddress","type":"bytes"}],"name":"InvalidSourcePoolAddress","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"MismatchedArrayLengths","type":"error"},{"inputs":[],"name":"MustBeProposedOwner","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"NonExistentChain","type":"error"},{"inputs":[],"name":"OnlyCallableByOwner","type":"error"},{"inputs":[{"internalType":"uint8","name":"remoteDecimals","type":"uint8"},{"internalType":"uint8","name":"localDecimals","type":"uint8"},{"internalType":"uint256","name":"remoteAmount","type":"uint256"}],"name":"OverflowDetected","type":"error"},{"inputs":[],"name":"OwnerCannotBeZero","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"PoolAlreadyAdded","type":"error"},{"inputs":[],"name":"RateLimitMustBeDisabled","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderNotAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"capacity","type":"uint256"},{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenMaxCapacityExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"minWaitInSeconds","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenRateLimitReached","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AllowListAdd","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AllowListRemove","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remoteToken","type":"bytes"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"name":"ChainAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"name":"ChainConfigured","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"ChainRemoved","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"config","type":"tuple"}],"name":"ConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositedAndBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintedAndWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransferRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rateLimitAdmin","type":"address"}],"name":"RateLimitAdminSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"RemotePoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"RemotePoolRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRouter","type":"address"},{"indexed":false,"internalType":"address","name":"newRouter","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"TokensConsumed","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"addRemotePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"removes","type":"address[]"},{"internalType":"address[]","name":"adds","type":"address[]"}],"name":"applyAllowListUpdates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"remoteChainSelectorsToRemove","type":"uint64[]"},{"components":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes[]","name":"remotePoolAddresses","type":"bytes[]"},{"internalType":"bytes","name":"remoteTokenAddress","type":"bytes"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"internalType":"struct TokenPool.ChainUpdate[]","name":"chainsToAdd","type":"tuple[]"}],"name":"applyChainUpdates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllowList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllowListEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getCurrentInboundRateLimiterState","outputs":[{"components":[{"internalType":"uint128","name":"tokens","type":"uint128"},{"internalType":"uint32","name":"lastUpdated","type":"uint32"},{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.TokenBucket","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getCurrentOutboundRateLimiterState","outputs":[{"components":[{"internalType":"uint128","name":"tokens","type":"uint128"},{"internalType":"uint32","name":"lastUpdated","type":"uint32"},{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.TokenBucket","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLockbox","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRateLimitAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getRemotePools","outputs":[{"internalType":"bytes[]","name":"","type":"bytes[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getRemoteToken","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRmnProxy","outputs":[{"internalType":"address","name":"rmnProxy","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouter","outputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupportedChains","outputs":[{"internalType":"uint64[]","name":"","type":"uint64[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenDecimals","outputs":[{"internalType":"uint8","name":"decimals","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getXERC20","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"isRemotePool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"isSupportedChain","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isSupportedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"receiver","type":"bytes"},{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"address","name":"originalSender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"localToken","type":"address"}],"internalType":"struct Pool.LockOrBurnInV1","name":"lockOrBurnIn","type":"tuple"}],"name":"lockOrBurn","outputs":[{"components":[{"internalType":"bytes","name":"destTokenAddress","type":"bytes"},{"internalType":"bytes","name":"destPoolData","type":"bytes"}],"internalType":"struct Pool.LockOrBurnOutV1","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"originalSender","type":"bytes"},{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"localToken","type":"address"},{"internalType":"bytes","name":"sourcePoolAddress","type":"bytes"},{"internalType":"bytes","name":"sourcePoolData","type":"bytes"},{"internalType":"bytes","name":"offchainTokenData","type":"bytes"}],"internalType":"struct Pool.ReleaseOrMintInV1","name":"releaseOrMintIn","type":"tuple"}],"name":"releaseOrMint","outputs":[{"components":[{"internalType":"uint256","name":"destinationAmount","type":"uint256"}],"internalType":"struct Pool.ReleaseOrMintOutV1","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"removeRemotePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"outboundConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"inboundConfig","type":"tuple"}],"name":"setChainRateLimiterConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"remoteChainSelectors","type":"uint64[]"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config[]","name":"outboundConfigs","type":"tuple[]"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config[]","name":"inboundConfigs","type":"tuple[]"}],"name":"setChainRateLimiterConfigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rateLimitAdmin","type":"address"}],"name":"setRateLimitAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"typeAndVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]Contract Creation Code
61014060405234801562000011575f80fd5b506040516200529538038062005295833981016040819052620000349162000660565b846001600160a01b031663cc4aa2046040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000071573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000097919062000779565b84848484335f81620000bc57604051639b15e16f60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0384811691909117909155811615620000ef57620000ef81620002d6565b50506001600160a01b03851615806200010f57506001600160a01b038116155b806200012257506001600160a01b038216155b1562000141576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b03808616608081905290831660c0526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa925050508015620001b1575060408051601f3d908101601f19168201909252620001ae9181019062000795565b60015b15620001f1578060ff168560ff1614620001ef576040516332ad3e0760e11b815260ff80871660048301528216602482015260440160405180910390fd5b505b60ff841660a052600480546001600160a01b0319166001600160a01b038316179055825115801560e0526200023a57604080515f8152602081019091526200023a90846200034f565b5050505050846001600160a01b0316610100816001600160a01b031681525050846001600160a01b031663b20a0fb96040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000297573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002bd919062000779565b6001600160a01b03166101205250620007f99350505050565b336001600160a01b038216036200030057604051636d6c4ee560e11b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b03838116918217835560015460405192939116917fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12789190a350565b60e05162000370576040516335f4a7b360e01b815260040160405180910390fd5b5f5b8251811015620003f9575f838281518110620003925762000392620007b1565b60209081029190910101519050620003ac600282620004a7565b15620003ef576040516001600160a01b03821681527f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf75669060200160405180910390a15b5060010162000372565b505f5b8151811015620004a2575f8282815181106200041c576200041c620007b1565b602002602001015190505f6001600160a01b0316816001600160a01b03160362000447575062000499565b62000454600282620004c6565b1562000497576040516001600160a01b03821681527f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d89060200160405180910390a15b505b600101620003fc565b505050565b5f620004bd836001600160a01b038416620004dc565b90505b92915050565b5f620004bd836001600160a01b038416620005d0565b5f8181526001830160205260408120548015620005c6575f62000501600183620007c5565b85549091505f906200051690600190620007c5565b90508082146200057c575f865f018281548110620005385762000538620007b1565b905f5260205f200154905080875f0184815481106200055b576200055b620007b1565b5f918252602080832090910192909255918252600188019052604090208390555b8554869080620005905762000590620007e5565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f905560019350505050620004c0565b5f915050620004c0565b5f8181526001830160205260408120546200061757508154600181810184555f848152602080822090930184905584548482528286019093526040902091909155620004c0565b505f620004c0565b80516001600160a01b038116811462000636575f80fd5b919050565b805160ff8116811462000636575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f805f60a0868803121562000675575f80fd5b62000680866200061f565b94506020620006918188016200063b565b60408801519095506001600160401b0380821115620006ae575f80fd5b818901915089601f830112620006c2575f80fd5b815181811115620006d757620006d76200064c565b8060051b604051601f19603f83011681018181108582111715620006ff57620006ff6200064c565b60405291825284820192508381018501918c8311156200071d575f80fd5b938501935b82851015620007465762000736856200061f565b8452938501939285019262000722565b8098505050505050506200075d606087016200061f565b91506200076d608087016200061f565b90509295509295909350565b5f602082840312156200078a575f80fd5b620004bd826200061f565b5f60208284031215620007a6575f80fd5b620004bd826200063b565b634e487b7160e01b5f52603260045260245ffd5b81810381811115620004c057634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b60805160a05160c05160e05161010051610120516149a5620008f05f395f81816103a601528181611e7c01528181611f02015261275101525f818161025e01528181611d6c01528181611f2601528181611f620152818161265401526126af01525f81816105c5015281816121020152612fd301525f818161059f015281816118c401526124cc01525f818161031d01528181610bf101528181611a6901528181611b2101528181611b5501528181611b8701528181611bec01528181611c440152611ce601525f81816102a5015281816102d901528181611d960152818161263201528181612c1301526131bb01526149a55ff3fe608060405234801561000f575f80fd5b50600436106101e7575f3560e01c8063962d402011610109578063c0d786551161009e578063dc0bd9711161006e578063dc0bd9711461059d578063e0351e13146105c3578063e8a1da17146105e9578063f2fde38b146105fc575f80fd5b8063c0d786551461054f578063c4bffe2b14610562578063c75eea9c14610577578063cf7401f31461058a575f80fd5b8063acfecf91116100d9578063acfecf911461049c578063af58d59f146104af578063b0f479a11461051e578063b79465801461053c575f80fd5b8063962d4020146104345780639a4575b914610447578063a42a7b8b14610467578063a7cd63b714610487575f80fd5b806354c8a4f31161017f57806379ba50971161014f57806379ba5097146103e85780637d54534e146103f05780638926f54f146104035780638da5cb5b14610416575f80fd5b806354c8a4f31461037c57806362ddd3c41461039157806363be3632146103a45780636d3d1a58146103ca575f80fd5b8063240028e8116101ba578063240028e8146102c957806324f65ee71461031657806339077537146103475780634c5ef0ed14610369575f80fd5b806301ffc9a7146101eb578063181f5a77146102135780631e35c99a1461025c57806321df0da7146102a3575b5f80fd5b6101fe6101f9366004613a2d565b61060f565b60405190151581526020015b60405180910390f35b61024f6040518060400160405280601c81526020017f5845524332304c6f636b626f78546f6b656e506f6f6c20312e362e300000000081525081565b60405161020a9190613ad7565b7f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161020a565b7f000000000000000000000000000000000000000000000000000000000000000061027e565b6101fe6102d7366004613b0a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff90811691161490565b60405160ff7f000000000000000000000000000000000000000000000000000000000000000016815260200161020a565b61035a610355366004613b25565b6106f3565b6040519051815260200161020a565b6101fe610377366004613b79565b610781565b61038f61038a366004613c3d565b6107c9565b005b61038f61039f366004613b79565b610842565b7f000000000000000000000000000000000000000000000000000000000000000061027e565b60095473ffffffffffffffffffffffffffffffffffffffff1661027e565b61038f6108de565b61038f6103fe366004613b0a565b6109aa565b6101fe610411366004613ca4565b610a2b565b60015473ffffffffffffffffffffffffffffffffffffffff1661027e565b61038f610442366004613cfe565b610a41565b61045a610455366004613d91565b610b9a565b60405161020a9190613dc8565b61047a610475366004613ca4565b610c36565b60405161020a9190613e1e565b61048f610d9a565b60405161020a9190613e9e565b61038f6104aa366004613b79565b610dab565b6104c26104bd366004613ca4565b610ec2565b60405161020a919081516fffffffffffffffffffffffffffffffff908116825260208084015163ffffffff1690830152604080840151151590830152606080840151821690830152608092830151169181019190915260a00190565b60045473ffffffffffffffffffffffffffffffffffffffff1661027e565b61024f61054a366004613ca4565b610f95565b61038f61055d366004613b0a565b611042565b61056a61111d565b60405161020a9190613ef7565b6104c2610585366004613ca4565b6111d2565b61038f610598366004614078565b6112a2565b7f000000000000000000000000000000000000000000000000000000000000000061027e565b7f00000000000000000000000000000000000000000000000000000000000000006101fe565b61038f6105f7366004613c3d565b611326565b61038f61060a366004613b0a565b611827565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167faff2afbf0000000000000000000000000000000000000000000000000000000014806106a157507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e64dd2900000000000000000000000000000000000000000000000000000000145b806106ed57507fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a700000000000000000000000000000000000000000000000000000000145b92915050565b60408051602081019091525f815261070a8261183b565b5f610761606084013561075c61072360c08701876140ba565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250611a5d92505050565b611b1e565b905061076d8382611d2f565b604080516020810190915290815292915050565b5f6107c1838360405161079592919061411b565b604080519182900390912067ffffffffffffffff87165f90815260076020529190912060050190612093565b949350505050565b6107d16120ad565b61083c8484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506040805160208088028281018201909352878252909350879250869182918501908490808284375f9201919091525061210092505050565b50505050565b61084a6120ad565b61085383610a2b565b61089a576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff841660048201526024015b60405180910390fd5b6108d98383838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506122b192505050565b505050565b5f5473ffffffffffffffffffffffffffffffffffffffff16331461092e576040517f02b543c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000808216339081179093555f8054909116815560405173ffffffffffffffffffffffffffffffffffffffff909216929183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b6109b26120ad565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d091749060200160405180910390a150565b5f6106ed600567ffffffffffffffff8416612093565b60095473ffffffffffffffffffffffffffffffffffffffff163314801590610a81575060015473ffffffffffffffffffffffffffffffffffffffff163314155b15610aba576040517f8e4a23d6000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b8483141580610ac95750848114155b15610b00576040517f568efce200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b85811015610b9157610b89878783818110610b1f57610b1f61412a565b9050602002016020810190610b349190613ca4565b868684818110610b4657610b4661412a565b905060600201803603810190610b5c9190614157565b858585818110610b6e57610b6e61412a565b905060600201803603810190610b849190614157565b6123a8565b600101610b02565b50505050505050565b6040805180820190915260608082526020820152610bb78261248e565b610bc082612618565b6040518060400160405280610be184602001602081019061054a9190613ca4565b8152602001610c2e6040805160ff7f000000000000000000000000000000000000000000000000000000000000000016602082015260609101604051602081830303815290604052905090565b905292915050565b67ffffffffffffffff81165f90815260076020526040812060609190610c5e906005016127fb565b90505f815167ffffffffffffffff811115610c7b57610c7b613f38565b604051908082528060200260200182016040528015610cae57816020015b6060815260200190600190039081610c995790505b5090505f5b8251811015610d925760085f848381518110610cd157610cd161412a565b602002602001015181526020019081526020015f208054610cf190614171565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1d90614171565b8015610d685780601f10610d3f57610100808354040283529160200191610d68565b820191905f5260205f20905b815481529060010190602001808311610d4b57829003601f168201915b5050505050828281518110610d7f57610d7f61412a565b6020908102919091010152600101610cb3565b509392505050565b6060610da660026127fb565b905090565b610db36120ad565b610dbc83610a2b565b610dfe576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401610891565b610e3d8282604051610e1192919061411b565b604080519182900390912067ffffffffffffffff86165f90815260076020529190912060050190612807565b610e79578282826040517f74f23c7c00000000000000000000000000000000000000000000000000000000815260040161089193929190614209565b8267ffffffffffffffff167f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d768383604051610eb592919061422c565b60405180910390a2505050565b6040805160a0810182525f8082526020820181905291810182905260608101829052608081019190915267ffffffffffffffff82165f90815260076020908152604091829020825160a08101845260028201546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000080830463ffffffff16958401959095527401000000000000000000000000000000000000000090910460ff1615159482019490945260039091015480841660608301529190910490911660808201526106ed90612812565b67ffffffffffffffff81165f908152600760205260409020600401805460609190610fbf90614171565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb90614171565b80156110365780601f1061100d57610100808354040283529160200191611036565b820191905f5260205f20905b81548152906001019060200180831161101957829003601f168201915b50505050509050919050565b61104a6120ad565b73ffffffffffffffffffffffffffffffffffffffff8116611097576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f1684910160405180910390a15050565b60605f61112a60056127fb565b90505f815167ffffffffffffffff81111561114757611147613f38565b604051908082528060200260200182016040528015611170578160200160208202803683370190505b5090505f5b82518110156111cb578281815181106111905761119061412a565b60200260200101518282815181106111aa576111aa61412a565b67ffffffffffffffff90921660209283029190910190910152600101611175565b5092915050565b6040805160a0810182525f8082526020820181905291810182905260608101829052608081019190915267ffffffffffffffff82165f90815260076020908152604091829020825160a08101845281546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000080830463ffffffff16958401959095527401000000000000000000000000000000000000000090910460ff1615159482019490945260019091015480841660608301529190910490911660808201526106ed90612812565b60095473ffffffffffffffffffffffffffffffffffffffff1633148015906112e2575060015473ffffffffffffffffffffffffffffffffffffffff163314155b1561131b576040517f8e4a23d6000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b6108d98383836123a8565b61132e6120ad565b5f5b83811015611513575f85858381811061134b5761134b61412a565b90506020020160208101906113609190613ca4565b9050611377600567ffffffffffffffff8316612807565b6113b9576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401610891565b67ffffffffffffffff81165f9081526007602052604081206113dd906005016127fb565b90505f5b81518110156114465761143d8282815181106113ff576113ff61412a565b602002602001015160075f8667ffffffffffffffff1667ffffffffffffffff1681526020019081526020015f2060050161280790919063ffffffff16565b506001016113e1565b5067ffffffffffffffff82165f90815260076020526040812080547fffffffffffffffffffffff000000000000000000000000000000000000000000908116825560018201839055600282018054909116905560038101829055906114ae60048301826139c7565b600582015f81816114bf82826139fe565b505060405167ffffffffffffffff871681527f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d85991694506020019250611501915050565b60405180910390a15050600101611330565b505f5b81811015611820575f8383838181106115315761153161412a565b9050602002810190611543919061423f565b61154c90614305565b905061155c81606001515f6128c2565b61156a81608001515f6128c2565b8060400151515f036115a8576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80516115c09060059067ffffffffffffffff166129ff565b6116055780516040517f1d5ad3c500000000000000000000000000000000000000000000000000000000815267ffffffffffffffff9091166004820152602401610891565b805167ffffffffffffffff165f90815260076020908152604091829020825160a08082018552606080870180518601516fffffffffffffffffffffffffffffffff90811680865263ffffffff42168689018190528351511515878b0181905284518a0151841686890181905294518b0151841660809889018190528954740100000000000000000000000000000000000000009283027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff7001000000000000000000000000000000008087027fffffffffffffffffffffffff000000000000000000000000000000000000000094851690981788178216929092178d5592810290971760018c01558c519889018d52898e0180518d01518716808b528a8e019590955280515115158a8f018190528151909d01518716988a01899052518d0151909516979098018790526002890180549a9091029990931617179094169590951790925590920290911760038201559082015160048201906117879082614468565b505f5b8260200151518110156117c9576117c1835f0151846020015183815181106117b4576117b461412a565b60200260200101516122b1565b60010161178a565b507f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c2825f015183604001518460600151856080015160405161180e9493929190614584565b60405180910390a15050600101611516565b5050505050565b61182f6120ad565b61183881612a0a565b50565b61184e6102d760a0830160808401613b0a565b6118ad5761186260a0820160808301613b0a565b6040517f961c9a4f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401610891565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016632cbc26bb6118f96040840160208501613ca4565b60405160e083901b7fffffffff0000000000000000000000000000000000000000000000000000000016815260809190911b77ffffffffffffffff00000000000000000000000000000000166004820152602401602060405180830381865afa158015611968573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061198c919061461c565b156119c3576040517f53ad11d800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119db6119d66040830160208401613ca4565b612acd565b6119fb6119ee6040830160208401613ca4565b61037760a08401846140ba565b611a4057611a0c60a08201826140ba565b6040517f24eb47e500000000000000000000000000000000000000000000000000000000815260040161089192919061422c565b611838611a536040830160208401613ca4565b8260600135612bf1565b5f81515f03611a8d57507f0000000000000000000000000000000000000000000000000000000000000000919050565b8151602014611aca57816040517f953576f70000000000000000000000000000000000000000000000000000000081526004016108919190613ad7565b5f82806020019051810190611adf9190614637565b905060ff8111156106ed57826040517f953576f70000000000000000000000000000000000000000000000000000000081526004016108919190613ad7565b5f7f000000000000000000000000000000000000000000000000000000000000000060ff168260ff1603611b535750816106ed565b7f000000000000000000000000000000000000000000000000000000000000000060ff168260ff161115611c3d575f611bac7f00000000000000000000000000000000000000000000000000000000000000008461467b565b9050604d8160ff161115611c20576040517fa9cb113d00000000000000000000000000000000000000000000000000000000815260ff80851660048301527f000000000000000000000000000000000000000000000000000000000000000016602482015260448101859052606401610891565b611c2b81600a6147b2565b611c3590856147c0565b9150506106ed565b5f611c68837f000000000000000000000000000000000000000000000000000000000000000061467b565b9050604d8160ff161180611caf5750611c8281600a6147b2565b611cac907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6147c0565b84115b15611d1a576040517fa9cb113d00000000000000000000000000000000000000000000000000000000815260ff80851660048301527f000000000000000000000000000000000000000000000000000000000000000016602482015260448101859052606401610891565b611d2581600a6147b2565b6107c190856147f8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301525f917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015611ddd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e019190614637565b905081811015611e47576040517f5551f1980000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401610891565b6040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906340c10f19906044015f604051808303815f87803b158015611ed2575f80fd5b505af1158015611ee4573d5f803e3d5ffd5b50611f4b92505073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690507f000000000000000000000000000000000000000000000000000000000000000084612c37565b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001663205c2878611f976060860160408701613b0a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018590526044015f604051808303815f87803b158015612001575f80fd5b505af1158015612013573d5f803e3d5ffd5b50612028925050506060840160408501613b0a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f5fe4b61c5a5d6f2ef46ddd953c30e428426505791c333f8bc5dbf1976f2fb6228460405161208691815260200190565b60405180910390a3505050565b5f81815260018301602052604081205415155b9392505050565b60015473ffffffffffffffffffffffffffffffffffffffff1633146120fe576040517f2b5c74de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b7f0000000000000000000000000000000000000000000000000000000000000000612157576040517f35f4a7b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b82518110156121eb575f8382815181106121755761217561412a565b60200260200101519050612193816002612dee90919063ffffffff16565b156121e25760405173ffffffffffffffffffffffffffffffffffffffff821681527f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf75669060200160405180910390a15b50600101612159565b505f5b81518110156108d9575f82828151811061220a5761220a61412a565b602002602001015190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361224d57506122a9565b612258600282612e0f565b156122a75760405173ffffffffffffffffffffffffffffffffffffffff821681527f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d89060200160405180910390a15b505b6001016121ee565b80515f036122eb576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805160208083019190912067ffffffffffffffff84165f9081526007909252604090912061231c90600501826129ff565b6123565782826040517f393b8ad200000000000000000000000000000000000000000000000000000000815260040161089192919061480f565b5f81815260086020526040902061236d8382614468565b508267ffffffffffffffff167f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea83604051610eb59190613ad7565b6123b183610a2b565b6123f3576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401610891565b6123fd825f6128c2565b67ffffffffffffffff83165f90815260076020526040902061241f9083612e30565b612429815f6128c2565b67ffffffffffffffff83165f90815260076020526040902061244e9060020182612e30565b7f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b83838360405161248193929190614831565b60405180910390a1505050565b6124a16102d760a0830160808401613b0a565b6124b55761186260a0820160808301613b0a565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016632cbc26bb6125016040840160208501613ca4565b60405160e083901b7fffffffff0000000000000000000000000000000000000000000000000000000016815260809190911b77ffffffffffffffff00000000000000000000000000000000166004820152602401602060405180830381865afa158015612570573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612594919061461c565b156125cb576040517f53ad11d800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e36125de6060830160408401613b0a565b612fd1565b6125fb6125f66040830160208401613ca4565b613050565b61183861260e6040830160208401613ca4565b826060013561319c565b61267d73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000006060840135612c37565b6040517fb6b55f25000000000000000000000000000000000000000000000000000000008152606082013560048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063b6b55f25906024015f604051808303815f87803b158015612705575f80fd5b505af1158015612717573d5f803e3d5ffd5b50506040517f9dc29fac000000000000000000000000000000000000000000000000000000008152306004820152606084013560248201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169250639dc29fac91506044015f604051808303815f87803b1580156127a9575f80fd5b505af11580156127bb573d5f803e3d5ffd5b5050604051606084013581523392507f9cd6812a7547a12546fc8a2f0855780edffe2690b009e3f7abcd0f7dda3fff55915060200160405180910390a250565b60605f6120a6836131df565b5f6120a68383613237565b6040805160a0810182525f8082526020820181905291810182905260608101829052608081019190915261289e82606001516fffffffffffffffffffffffffffffffff16835f01516fffffffffffffffffffffffffffffffff16846020015163ffffffff164261288291906148b4565b85608001516fffffffffffffffffffffffffffffffff1661331a565b6fffffffffffffffffffffffffffffffff1682525063ffffffff4216602082015290565b81511561298d5781602001516fffffffffffffffffffffffffffffffff1682604001516fffffffffffffffffffffffffffffffff16101580612918575060408201516fffffffffffffffffffffffffffffffff16155b1561295157816040517f8020d12400000000000000000000000000000000000000000000000000000000815260040161089191906148c7565b8015612989576040517f433fc33d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b60408201516fffffffffffffffffffffffffffffffff161515806129c6575060208201516fffffffffffffffffffffffffffffffff1615155b1561298957816040517fd68af9cc00000000000000000000000000000000000000000000000000000000815260040161089191906148c7565b5f6120a68383613341565b3373ffffffffffffffffffffffffffffffffffffffff821603612a59576040517fdad89dca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff838116918217835560015460405192939116917fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12789190a350565b612ad681610a2b565b612b18576040517fa9902c7e00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401610891565b600480546040517f83826b2b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84169281019290925233602483015273ffffffffffffffffffffffffffffffffffffffff16906383826b2b90604401602060405180830381865afa158015612b95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bb9919061461c565b611838576040517f728fe07b000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b67ffffffffffffffff82165f90815260076020526040902061298990600201827f000000000000000000000000000000000000000000000000000000000000000061338d565b801580612cd557506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612caf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd39190614637565b155b612d61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610891565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790526108d990849061370e565b5f6120a68373ffffffffffffffffffffffffffffffffffffffff8416613237565b5f6120a68373ffffffffffffffffffffffffffffffffffffffff8416613341565b81545f90612e5890700100000000000000000000000000000000900463ffffffff16426148b4565b90508015612efa5760018301548354612ea0916fffffffffffffffffffffffffffffffff8082169281169185917001000000000000000000000000000000009091041661331a565b83546fffffffffffffffffffffffffffffffff919091167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116177001000000000000000000000000000000004263ffffffff16021783555b60208201518354612f20916fffffffffffffffffffffffffffffffff9081169116613819565b83548351151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffff000000000000000000000000000000009091166fffffffffffffffffffffffffffffffff92831617178455602083015160408085015183167001000000000000000000000000000000000291909216176001850155517f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c19906124819084906148c7565b7f0000000000000000000000000000000000000000000000000000000000000000156118385761300260028261382e565b611838576040517fd0d2597600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82166004820152602401610891565b61305981610a2b565b61309b576040517fa9902c7e00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401610891565b600480546040517fa8d87a3b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84169281019290925273ffffffffffffffffffffffffffffffffffffffff169063a8d87a3b90602401602060405180830381865afa158015613112573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131369190614903565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611838576040517f728fe07b000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b67ffffffffffffffff82165f90815260076020526040902061298990827f000000000000000000000000000000000000000000000000000000000000000061338d565b6060815f0180548060200260200160405190810160405280929190818152602001828054801561103657602002820191905f5260205f20905b8154815260200190600101908083116132185750505050509050919050565b5f8181526001830160205260408120548015613311575f6132596001836148b4565b85549091505f9061326c906001906148b4565b90508082146132cb575f865f01828154811061328a5761328a61412a565b905f5260205f200154905080875f0184815481106132aa576132aa61412a565b5f918252602080832090910192909255918252600188019052604090208390555b85548690806132dc576132dc61491e565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506106ed565b5f9150506106ed565b5f6133388561332984866147f8565b613333908761494b565b613819565b95945050505050565b5f81815260018301602052604081205461338657508154600181810184555f8481526020808220909301849055845484825282860190935260409020919091556106ed565b505f6106ed565b825474010000000000000000000000000000000000000000900460ff1615806133b4575081155b156133be57505050565b825460018401546fffffffffffffffffffffffffffffffff808316929116905f9061340390700100000000000000000000000000000000900463ffffffff16426148b4565b905080156134c35781831115613445576040517f9725942a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600186015461347f9083908590849070010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1661331a565b86547fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff167001000000000000000000000000000000004263ffffffff160217875592505b8482101561357a5773ffffffffffffffffffffffffffffffffffffffff8416613522576040517ff94ebcd10000000000000000000000000000000000000000000000000000000081526004810183905260248101869052604401610891565b6040517f1a76572a000000000000000000000000000000000000000000000000000000008152600481018390526024810186905273ffffffffffffffffffffffffffffffffffffffff85166044820152606401610891565b8483101561368c5760018681015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff16905f9082906135bd90826148b4565b6135c7878a6148b4565b6135d1919061494b565b6135db91906147c0565b905073ffffffffffffffffffffffffffffffffffffffff8616613634576040517f15279c080000000000000000000000000000000000000000000000000000000081526004810182905260248101869052604401610891565b6040517fd0c8d23a000000000000000000000000000000000000000000000000000000008152600481018290526024810186905273ffffffffffffffffffffffffffffffffffffffff87166044820152606401610891565b61369685846148b4565b86547fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff82161787556040518681529093507f1871cdf8010e63f2eb8384381a68dfa7416dc571a5517e66e88b2d2d0c0a690a9060200160405180910390a1505050505050565b5f61376f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661385c9092919063ffffffff16565b8051909150156108d9578080602001905181019061378d919061461c565b6108d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610891565b5f81831061382757816120a6565b5090919050565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260018301602052604081205415156120a6565b60606107c184845f85855f808673ffffffffffffffffffffffffffffffffffffffff16858760405161388e919061495e565b5f6040518083038185875af1925050503d805f81146138c8576040519150601f19603f3d011682016040523d82523d5f602084013e6138cd565b606091505b50915091506138de878383876138e9565b979650505050505050565b6060831561397e5782515f036139775773ffffffffffffffffffffffffffffffffffffffff85163b613977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610891565b50816107c1565b6107c183838151156139935781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108919190613ad7565b5080546139d390614171565b5f825580601f106139e2575050565b601f0160209004905f5260205f20908101906118389190613a15565b5080545f8255905f5260205f209081019061183891905b5b80821115613a29575f8155600101613a16565b5090565b5f60208284031215613a3d575f80fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146120a6575f80fd5b5f5b83811015613a86578181015183820152602001613a6e565b50505f910152565b5f8151808452613aa5816020860160208601613a6c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081525f6120a66020830184613a8e565b73ffffffffffffffffffffffffffffffffffffffff81168114611838575f80fd5b5f60208284031215613b1a575f80fd5b81356120a681613ae9565b5f60208284031215613b35575f80fd5b813567ffffffffffffffff811115613b4b575f80fd5b820161010081850312156120a6575f80fd5b803567ffffffffffffffff81168114613b74575f80fd5b919050565b5f805f60408486031215613b8b575f80fd5b613b9484613b5d565b9250602084013567ffffffffffffffff80821115613bb0575f80fd5b818601915086601f830112613bc3575f80fd5b813581811115613bd1575f80fd5b876020828501011115613be2575f80fd5b6020830194508093505050509250925092565b5f8083601f840112613c05575f80fd5b50813567ffffffffffffffff811115613c1c575f80fd5b6020830191508360208260051b8501011115613c36575f80fd5b9250929050565b5f805f8060408587031215613c50575f80fd5b843567ffffffffffffffff80821115613c67575f80fd5b613c7388838901613bf5565b90965094506020870135915080821115613c8b575f80fd5b50613c9887828801613bf5565b95989497509550505050565b5f60208284031215613cb4575f80fd5b6120a682613b5d565b5f8083601f840112613ccd575f80fd5b50813567ffffffffffffffff811115613ce4575f80fd5b602083019150836020606083028501011115613c36575f80fd5b5f805f805f8060608789031215613d13575f80fd5b863567ffffffffffffffff80821115613d2a575f80fd5b613d368a838b01613bf5565b90985096506020890135915080821115613d4e575f80fd5b613d5a8a838b01613cbd565b90965094506040890135915080821115613d72575f80fd5b50613d7f89828a01613cbd565b979a9699509497509295939492505050565b5f60208284031215613da1575f80fd5b813567ffffffffffffffff811115613db7575f80fd5b820160a081850312156120a6575f80fd5b602081525f825160406020840152613de36060840182613a8e565b905060208401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08483030160408501526133388282613a8e565b5f60208083016020845280855180835260408601915060408160051b8701019250602087015f5b82811015613e91577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452613e7f858351613a8e565b94509285019290850190600101613e45565b5092979650505050505050565b602080825282518282018190525f9190848201906040850190845b81811015613eeb57835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101613eb9565b50909695505050505050565b602080825282518282018190525f9190848201906040850190845b81811015613eeb57835167ffffffffffffffff1683529284019291840191600101613f12565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b60405160a0810167ffffffffffffffff81118282101715613f8857613f88613f38565b60405290565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613fd557613fd5613f38565b604052919050565b8015158114611838575f80fd5b80356fffffffffffffffffffffffffffffffff81168114613b74575f80fd5b5f60608284031215614019575f80fd5b6040516060810181811067ffffffffffffffff8211171561403c5761403c613f38565b604052905080823561404d81613fdd565b815261405b60208401613fea565b602082015261406c60408401613fea565b60408201525092915050565b5f805f60e0848603121561408a575f80fd5b61409384613b5d565b92506140a28560208601614009565b91506140b18560808601614009565b90509250925092565b5f8083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126140ed575f80fd5b83018035915067ffffffffffffffff821115614107575f80fd5b602001915036819003821315613c36575f80fd5b818382375f9101908152919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60608284031215614167575f80fd5b6120a68383614009565b600181811c9082168061418557607f821691505b6020821081036141bc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b81835281816020850137505f602082840101525f60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b67ffffffffffffffff84168152604060208201525f6133386040830184866141c2565b602081525f6107c16020830184866141c2565b5f82357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffee1833603018112614271575f80fd5b9190910192915050565b5f82601f83011261428a575f80fd5b813567ffffffffffffffff8111156142a4576142a4613f38565b6142d560207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613f8e565b8181528460208386010111156142e9575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6101208236031215614316575f80fd5b61431e613f65565b61432783613b5d565b815260208084013567ffffffffffffffff80821115614344575f80fd5b9085019036601f830112614356575f80fd5b81358181111561436857614368613f38565b8060051b614377858201613f8e565b9182528381018501918581019036841115614390575f80fd5b86860192505b838310156143ca578235858111156143ac575f80fd5b6143ba3689838a010161427b565b8352509186019190860190614396565b80878901525050505060408601359250808311156143e6575f80fd5b50506143f43682860161427b565b6040830152506144073660608501614009565b60608201526144193660c08501614009565b608082015292915050565b601f8211156108d957805f5260205f20601f840160051c810160208510156144495750805b601f840160051c820191505b81811015611820575f8155600101614455565b815167ffffffffffffffff81111561448257614482613f38565b614496816144908454614171565b84614424565b602080601f8311600181146144e8575f84156144b25750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561457c565b5f858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561453457888601518255948401946001909101908401614515565b508582101561457057878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f61010067ffffffffffffffff871683528060208401526145a781840187613a8e565b8551151560408581019190915260208701516fffffffffffffffffffffffffffffffff90811660608701529087015116608085015291506145e59050565b8251151560a083015260208301516fffffffffffffffffffffffffffffffff90811660c084015260408401511660e0830152613338565b5f6020828403121561462c575f80fd5b81516120a681613fdd565b5f60208284031215614647575f80fd5b5051919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b60ff82811682821603908111156106ed576106ed61464e565b600181815b808511156146ed57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156146d3576146d361464e565b808516156146e057918102915b93841c9390800290614699565b509250929050565b5f82614703575060016106ed565b8161470f57505f6106ed565b8160018114614725576002811461472f5761474b565b60019150506106ed565b60ff8411156147405761474061464e565b50506001821b6106ed565b5060208310610133831016604e8410600b841016171561476e575081810a6106ed565b6147788383614694565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156147aa576147aa61464e565b029392505050565b5f6120a660ff8416836146f5565b5f826147f3577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820281158282048414176106ed576106ed61464e565b67ffffffffffffffff83168152604060208201525f6107c16040830184613a8e565b67ffffffffffffffff8416815260e0810161487d60208301858051151582526020808201516fffffffffffffffffffffffffffffffff9081169184019190915260409182015116910152565b82511515608083015260208301516fffffffffffffffffffffffffffffffff90811660a084015260408401511660c08301526107c1565b818103818111156106ed576106ed61464e565b606081016106ed82848051151582526020808201516fffffffffffffffffffffffffffffffff9081169184019190915260409182015116910152565b5f60208284031215614913575f80fd5b81516120a681613ae9565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b808201808211156106ed576106ed61464e565b5f8251614271818460208701613a6c56fea26469706673582212203c4dbe8d4b06b05757176a78e612b4d36cb67c098bd1db70c4c76778092a032064736f6c634300081800330000000000000000000000000797c6f55f5c9005996a55959a341018cf69a963000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e8100000000000000000000000080226fc0ee2b096224eeac085bb9a8cba1146f7d0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101e7575f3560e01c8063962d402011610109578063c0d786551161009e578063dc0bd9711161006e578063dc0bd9711461059d578063e0351e13146105c3578063e8a1da17146105e9578063f2fde38b146105fc575f80fd5b8063c0d786551461054f578063c4bffe2b14610562578063c75eea9c14610577578063cf7401f31461058a575f80fd5b8063acfecf91116100d9578063acfecf911461049c578063af58d59f146104af578063b0f479a11461051e578063b79465801461053c575f80fd5b8063962d4020146104345780639a4575b914610447578063a42a7b8b14610467578063a7cd63b714610487575f80fd5b806354c8a4f31161017f57806379ba50971161014f57806379ba5097146103e85780637d54534e146103f05780638926f54f146104035780638da5cb5b14610416575f80fd5b806354c8a4f31461037c57806362ddd3c41461039157806363be3632146103a45780636d3d1a58146103ca575f80fd5b8063240028e8116101ba578063240028e8146102c957806324f65ee71461031657806339077537146103475780634c5ef0ed14610369575f80fd5b806301ffc9a7146101eb578063181f5a77146102135780631e35c99a1461025c57806321df0da7146102a3575b5f80fd5b6101fe6101f9366004613a2d565b61060f565b60405190151581526020015b60405180910390f35b61024f6040518060400160405280601c81526020017f5845524332304c6f636b626f78546f6b656e506f6f6c20312e362e300000000081525081565b60405161020a9190613ad7565b7f0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a9635b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161020a565b7f00000000000000000000000068749665ff8d2d112fa859aa293f07a622782f3861027e565b6101fe6102d7366004613b0a565b7f00000000000000000000000068749665ff8d2d112fa859aa293f07a622782f3873ffffffffffffffffffffffffffffffffffffffff90811691161490565b60405160ff7f000000000000000000000000000000000000000000000000000000000000000616815260200161020a565b61035a610355366004613b25565b6106f3565b6040519051815260200161020a565b6101fe610377366004613b79565b610781565b61038f61038a366004613c3d565b6107c9565b005b61038f61039f366004613b79565b610842565b7f00000000000000000000000030974f73a4ac9e606ed80da928e454977ac486d261027e565b60095473ffffffffffffffffffffffffffffffffffffffff1661027e565b61038f6108de565b61038f6103fe366004613b0a565b6109aa565b6101fe610411366004613ca4565b610a2b565b60015473ffffffffffffffffffffffffffffffffffffffff1661027e565b61038f610442366004613cfe565b610a41565b61045a610455366004613d91565b610b9a565b60405161020a9190613dc8565b61047a610475366004613ca4565b610c36565b60405161020a9190613e1e565b61048f610d9a565b60405161020a9190613e9e565b61038f6104aa366004613b79565b610dab565b6104c26104bd366004613ca4565b610ec2565b60405161020a919081516fffffffffffffffffffffffffffffffff908116825260208084015163ffffffff1690830152604080840151151590830152606080840151821690830152608092830151169181019190915260a00190565b60045473ffffffffffffffffffffffffffffffffffffffff1661027e565b61024f61054a366004613ca4565b610f95565b61038f61055d366004613b0a565b611042565b61056a61111d565b60405161020a9190613ef7565b6104c2610585366004613ca4565b6111d2565b61038f610598366004614078565b6112a2565b7f000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e8161027e565b7f00000000000000000000000000000000000000000000000000000000000000006101fe565b61038f6105f7366004613c3d565b611326565b61038f61060a366004613b0a565b611827565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167faff2afbf0000000000000000000000000000000000000000000000000000000014806106a157507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e64dd2900000000000000000000000000000000000000000000000000000000145b806106ed57507fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a700000000000000000000000000000000000000000000000000000000145b92915050565b60408051602081019091525f815261070a8261183b565b5f610761606084013561075c61072360c08701876140ba565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250611a5d92505050565b611b1e565b905061076d8382611d2f565b604080516020810190915290815292915050565b5f6107c1838360405161079592919061411b565b604080519182900390912067ffffffffffffffff87165f90815260076020529190912060050190612093565b949350505050565b6107d16120ad565b61083c8484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506040805160208088028281018201909352878252909350879250869182918501908490808284375f9201919091525061210092505050565b50505050565b61084a6120ad565b61085383610a2b565b61089a576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff841660048201526024015b60405180910390fd5b6108d98383838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506122b192505050565b505050565b5f5473ffffffffffffffffffffffffffffffffffffffff16331461092e576040517f02b543c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000808216339081179093555f8054909116815560405173ffffffffffffffffffffffffffffffffffffffff909216929183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b6109b26120ad565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d091749060200160405180910390a150565b5f6106ed600567ffffffffffffffff8416612093565b60095473ffffffffffffffffffffffffffffffffffffffff163314801590610a81575060015473ffffffffffffffffffffffffffffffffffffffff163314155b15610aba576040517f8e4a23d6000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b8483141580610ac95750848114155b15610b00576040517f568efce200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b85811015610b9157610b89878783818110610b1f57610b1f61412a565b9050602002016020810190610b349190613ca4565b868684818110610b4657610b4661412a565b905060600201803603810190610b5c9190614157565b858585818110610b6e57610b6e61412a565b905060600201803603810190610b849190614157565b6123a8565b600101610b02565b50505050505050565b6040805180820190915260608082526020820152610bb78261248e565b610bc082612618565b6040518060400160405280610be184602001602081019061054a9190613ca4565b8152602001610c2e6040805160ff7f000000000000000000000000000000000000000000000000000000000000000616602082015260609101604051602081830303815290604052905090565b905292915050565b67ffffffffffffffff81165f90815260076020526040812060609190610c5e906005016127fb565b90505f815167ffffffffffffffff811115610c7b57610c7b613f38565b604051908082528060200260200182016040528015610cae57816020015b6060815260200190600190039081610c995790505b5090505f5b8251811015610d925760085f848381518110610cd157610cd161412a565b602002602001015181526020019081526020015f208054610cf190614171565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1d90614171565b8015610d685780601f10610d3f57610100808354040283529160200191610d68565b820191905f5260205f20905b815481529060010190602001808311610d4b57829003601f168201915b5050505050828281518110610d7f57610d7f61412a565b6020908102919091010152600101610cb3565b509392505050565b6060610da660026127fb565b905090565b610db36120ad565b610dbc83610a2b565b610dfe576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401610891565b610e3d8282604051610e1192919061411b565b604080519182900390912067ffffffffffffffff86165f90815260076020529190912060050190612807565b610e79578282826040517f74f23c7c00000000000000000000000000000000000000000000000000000000815260040161089193929190614209565b8267ffffffffffffffff167f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d768383604051610eb592919061422c565b60405180910390a2505050565b6040805160a0810182525f8082526020820181905291810182905260608101829052608081019190915267ffffffffffffffff82165f90815260076020908152604091829020825160a08101845260028201546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000080830463ffffffff16958401959095527401000000000000000000000000000000000000000090910460ff1615159482019490945260039091015480841660608301529190910490911660808201526106ed90612812565b67ffffffffffffffff81165f908152600760205260409020600401805460609190610fbf90614171565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb90614171565b80156110365780601f1061100d57610100808354040283529160200191611036565b820191905f5260205f20905b81548152906001019060200180831161101957829003601f168201915b50505050509050919050565b61104a6120ad565b73ffffffffffffffffffffffffffffffffffffffff8116611097576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f1684910160405180910390a15050565b60605f61112a60056127fb565b90505f815167ffffffffffffffff81111561114757611147613f38565b604051908082528060200260200182016040528015611170578160200160208202803683370190505b5090505f5b82518110156111cb578281815181106111905761119061412a565b60200260200101518282815181106111aa576111aa61412a565b67ffffffffffffffff90921660209283029190910190910152600101611175565b5092915050565b6040805160a0810182525f8082526020820181905291810182905260608101829052608081019190915267ffffffffffffffff82165f90815260076020908152604091829020825160a08101845281546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000080830463ffffffff16958401959095527401000000000000000000000000000000000000000090910460ff1615159482019490945260019091015480841660608301529190910490911660808201526106ed90612812565b60095473ffffffffffffffffffffffffffffffffffffffff1633148015906112e2575060015473ffffffffffffffffffffffffffffffffffffffff163314155b1561131b576040517f8e4a23d6000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b6108d98383836123a8565b61132e6120ad565b5f5b83811015611513575f85858381811061134b5761134b61412a565b90506020020160208101906113609190613ca4565b9050611377600567ffffffffffffffff8316612807565b6113b9576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401610891565b67ffffffffffffffff81165f9081526007602052604081206113dd906005016127fb565b90505f5b81518110156114465761143d8282815181106113ff576113ff61412a565b602002602001015160075f8667ffffffffffffffff1667ffffffffffffffff1681526020019081526020015f2060050161280790919063ffffffff16565b506001016113e1565b5067ffffffffffffffff82165f90815260076020526040812080547fffffffffffffffffffffff000000000000000000000000000000000000000000908116825560018201839055600282018054909116905560038101829055906114ae60048301826139c7565b600582015f81816114bf82826139fe565b505060405167ffffffffffffffff871681527f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d85991694506020019250611501915050565b60405180910390a15050600101611330565b505f5b81811015611820575f8383838181106115315761153161412a565b9050602002810190611543919061423f565b61154c90614305565b905061155c81606001515f6128c2565b61156a81608001515f6128c2565b8060400151515f036115a8576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80516115c09060059067ffffffffffffffff166129ff565b6116055780516040517f1d5ad3c500000000000000000000000000000000000000000000000000000000815267ffffffffffffffff9091166004820152602401610891565b805167ffffffffffffffff165f90815260076020908152604091829020825160a08082018552606080870180518601516fffffffffffffffffffffffffffffffff90811680865263ffffffff42168689018190528351511515878b0181905284518a0151841686890181905294518b0151841660809889018190528954740100000000000000000000000000000000000000009283027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff7001000000000000000000000000000000008087027fffffffffffffffffffffffff000000000000000000000000000000000000000094851690981788178216929092178d5592810290971760018c01558c519889018d52898e0180518d01518716808b528a8e019590955280515115158a8f018190528151909d01518716988a01899052518d0151909516979098018790526002890180549a9091029990931617179094169590951790925590920290911760038201559082015160048201906117879082614468565b505f5b8260200151518110156117c9576117c1835f0151846020015183815181106117b4576117b461412a565b60200260200101516122b1565b60010161178a565b507f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c2825f015183604001518460600151856080015160405161180e9493929190614584565b60405180910390a15050600101611516565b5050505050565b61182f6120ad565b61183881612a0a565b50565b61184e6102d760a0830160808401613b0a565b6118ad5761186260a0820160808301613b0a565b6040517f961c9a4f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401610891565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e8116632cbc26bb6118f96040840160208501613ca4565b60405160e083901b7fffffffff0000000000000000000000000000000000000000000000000000000016815260809190911b77ffffffffffffffff00000000000000000000000000000000166004820152602401602060405180830381865afa158015611968573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061198c919061461c565b156119c3576040517f53ad11d800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119db6119d66040830160208401613ca4565b612acd565b6119fb6119ee6040830160208401613ca4565b61037760a08401846140ba565b611a4057611a0c60a08201826140ba565b6040517f24eb47e500000000000000000000000000000000000000000000000000000000815260040161089192919061422c565b611838611a536040830160208401613ca4565b8260600135612bf1565b5f81515f03611a8d57507f0000000000000000000000000000000000000000000000000000000000000006919050565b8151602014611aca57816040517f953576f70000000000000000000000000000000000000000000000000000000081526004016108919190613ad7565b5f82806020019051810190611adf9190614637565b905060ff8111156106ed57826040517f953576f70000000000000000000000000000000000000000000000000000000081526004016108919190613ad7565b5f7f000000000000000000000000000000000000000000000000000000000000000660ff168260ff1603611b535750816106ed565b7f000000000000000000000000000000000000000000000000000000000000000660ff168260ff161115611c3d575f611bac7f00000000000000000000000000000000000000000000000000000000000000068461467b565b9050604d8160ff161115611c20576040517fa9cb113d00000000000000000000000000000000000000000000000000000000815260ff80851660048301527f000000000000000000000000000000000000000000000000000000000000000616602482015260448101859052606401610891565b611c2b81600a6147b2565b611c3590856147c0565b9150506106ed565b5f611c68837f000000000000000000000000000000000000000000000000000000000000000661467b565b9050604d8160ff161180611caf5750611c8281600a6147b2565b611cac907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6147c0565b84115b15611d1a576040517fa9cb113d00000000000000000000000000000000000000000000000000000000815260ff80851660048301527f000000000000000000000000000000000000000000000000000000000000000616602482015260448101859052606401610891565b611d2581600a6147b2565b6107c190856147f8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a963811660048301525f917f00000000000000000000000068749665ff8d2d112fa859aa293f07a622782f38909116906370a0823190602401602060405180830381865afa158015611ddd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e019190614637565b905081811015611e47576040517f5551f1980000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401610891565b6040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390527f00000000000000000000000030974f73a4ac9e606ed80da928e454977ac486d273ffffffffffffffffffffffffffffffffffffffff16906340c10f19906044015f604051808303815f87803b158015611ed2575f80fd5b505af1158015611ee4573d5f803e3d5ffd5b50611f4b92505073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000030974f73a4ac9e606ed80da928e454977ac486d21690507f0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a96384612c37565b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a9631663205c2878611f976060860160408701613b0a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018590526044015f604051808303815f87803b158015612001575f80fd5b505af1158015612013573d5f803e3d5ffd5b50612028925050506060840160408501613b0a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f5fe4b61c5a5d6f2ef46ddd953c30e428426505791c333f8bc5dbf1976f2fb6228460405161208691815260200190565b60405180910390a3505050565b5f81815260018301602052604081205415155b9392505050565b60015473ffffffffffffffffffffffffffffffffffffffff1633146120fe576040517f2b5c74de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b7f0000000000000000000000000000000000000000000000000000000000000000612157576040517f35f4a7b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b82518110156121eb575f8382815181106121755761217561412a565b60200260200101519050612193816002612dee90919063ffffffff16565b156121e25760405173ffffffffffffffffffffffffffffffffffffffff821681527f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf75669060200160405180910390a15b50600101612159565b505f5b81518110156108d9575f82828151811061220a5761220a61412a565b602002602001015190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361224d57506122a9565b612258600282612e0f565b156122a75760405173ffffffffffffffffffffffffffffffffffffffff821681527f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d89060200160405180910390a15b505b6001016121ee565b80515f036122eb576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805160208083019190912067ffffffffffffffff84165f9081526007909252604090912061231c90600501826129ff565b6123565782826040517f393b8ad200000000000000000000000000000000000000000000000000000000815260040161089192919061480f565b5f81815260086020526040902061236d8382614468565b508267ffffffffffffffff167f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea83604051610eb59190613ad7565b6123b183610a2b565b6123f3576040517f1e670e4b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401610891565b6123fd825f6128c2565b67ffffffffffffffff83165f90815260076020526040902061241f9083612e30565b612429815f6128c2565b67ffffffffffffffff83165f90815260076020526040902061244e9060020182612e30565b7f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b83838360405161248193929190614831565b60405180910390a1505050565b6124a16102d760a0830160808401613b0a565b6124b55761186260a0820160808301613b0a565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e8116632cbc26bb6125016040840160208501613ca4565b60405160e083901b7fffffffff0000000000000000000000000000000000000000000000000000000016815260809190911b77ffffffffffffffff00000000000000000000000000000000166004820152602401602060405180830381865afa158015612570573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612594919061461c565b156125cb576040517f53ad11d800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e36125de6060830160408401613b0a565b612fd1565b6125fb6125f66040830160208401613ca4565b613050565b61183861260e6040830160208401613ca4565b826060013561319c565b61267d73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000068749665ff8d2d112fa859aa293f07a622782f38167f0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a9636060840135612c37565b6040517fb6b55f25000000000000000000000000000000000000000000000000000000008152606082013560048201527f0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a96373ffffffffffffffffffffffffffffffffffffffff169063b6b55f25906024015f604051808303815f87803b158015612705575f80fd5b505af1158015612717573d5f803e3d5ffd5b50506040517f9dc29fac000000000000000000000000000000000000000000000000000000008152306004820152606084013560248201527f00000000000000000000000030974f73a4ac9e606ed80da928e454977ac486d273ffffffffffffffffffffffffffffffffffffffff169250639dc29fac91506044015f604051808303815f87803b1580156127a9575f80fd5b505af11580156127bb573d5f803e3d5ffd5b5050604051606084013581523392507f9cd6812a7547a12546fc8a2f0855780edffe2690b009e3f7abcd0f7dda3fff55915060200160405180910390a250565b60605f6120a6836131df565b5f6120a68383613237565b6040805160a0810182525f8082526020820181905291810182905260608101829052608081019190915261289e82606001516fffffffffffffffffffffffffffffffff16835f01516fffffffffffffffffffffffffffffffff16846020015163ffffffff164261288291906148b4565b85608001516fffffffffffffffffffffffffffffffff1661331a565b6fffffffffffffffffffffffffffffffff1682525063ffffffff4216602082015290565b81511561298d5781602001516fffffffffffffffffffffffffffffffff1682604001516fffffffffffffffffffffffffffffffff16101580612918575060408201516fffffffffffffffffffffffffffffffff16155b1561295157816040517f8020d12400000000000000000000000000000000000000000000000000000000815260040161089191906148c7565b8015612989576040517f433fc33d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b60408201516fffffffffffffffffffffffffffffffff161515806129c6575060208201516fffffffffffffffffffffffffffffffff1615155b1561298957816040517fd68af9cc00000000000000000000000000000000000000000000000000000000815260040161089191906148c7565b5f6120a68383613341565b3373ffffffffffffffffffffffffffffffffffffffff821603612a59576040517fdad89dca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff838116918217835560015460405192939116917fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12789190a350565b612ad681610a2b565b612b18576040517fa9902c7e00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401610891565b600480546040517f83826b2b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84169281019290925233602483015273ffffffffffffffffffffffffffffffffffffffff16906383826b2b90604401602060405180830381865afa158015612b95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bb9919061461c565b611838576040517f728fe07b000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b67ffffffffffffffff82165f90815260076020526040902061298990600201827f00000000000000000000000068749665ff8d2d112fa859aa293f07a622782f3861338d565b801580612cd557506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612caf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd39190614637565b155b612d61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610891565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790526108d990849061370e565b5f6120a68373ffffffffffffffffffffffffffffffffffffffff8416613237565b5f6120a68373ffffffffffffffffffffffffffffffffffffffff8416613341565b81545f90612e5890700100000000000000000000000000000000900463ffffffff16426148b4565b90508015612efa5760018301548354612ea0916fffffffffffffffffffffffffffffffff8082169281169185917001000000000000000000000000000000009091041661331a565b83546fffffffffffffffffffffffffffffffff919091167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116177001000000000000000000000000000000004263ffffffff16021783555b60208201518354612f20916fffffffffffffffffffffffffffffffff9081169116613819565b83548351151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffff000000000000000000000000000000009091166fffffffffffffffffffffffffffffffff92831617178455602083015160408085015183167001000000000000000000000000000000000291909216176001850155517f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c19906124819084906148c7565b7f0000000000000000000000000000000000000000000000000000000000000000156118385761300260028261382e565b611838576040517fd0d2597600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82166004820152602401610891565b61305981610a2b565b61309b576040517fa9902c7e00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401610891565b600480546040517fa8d87a3b00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84169281019290925273ffffffffffffffffffffffffffffffffffffffff169063a8d87a3b90602401602060405180830381865afa158015613112573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131369190614903565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611838576040517f728fe07b000000000000000000000000000000000000000000000000000000008152336004820152602401610891565b67ffffffffffffffff82165f90815260076020526040902061298990827f00000000000000000000000068749665ff8d2d112fa859aa293f07a622782f3861338d565b6060815f0180548060200260200160405190810160405280929190818152602001828054801561103657602002820191905f5260205f20905b8154815260200190600101908083116132185750505050509050919050565b5f8181526001830160205260408120548015613311575f6132596001836148b4565b85549091505f9061326c906001906148b4565b90508082146132cb575f865f01828154811061328a5761328a61412a565b905f5260205f200154905080875f0184815481106132aa576132aa61412a565b5f918252602080832090910192909255918252600188019052604090208390555b85548690806132dc576132dc61491e565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506106ed565b5f9150506106ed565b5f6133388561332984866147f8565b613333908761494b565b613819565b95945050505050565b5f81815260018301602052604081205461338657508154600181810184555f8481526020808220909301849055845484825282860190935260409020919091556106ed565b505f6106ed565b825474010000000000000000000000000000000000000000900460ff1615806133b4575081155b156133be57505050565b825460018401546fffffffffffffffffffffffffffffffff808316929116905f9061340390700100000000000000000000000000000000900463ffffffff16426148b4565b905080156134c35781831115613445576040517f9725942a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600186015461347f9083908590849070010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1661331a565b86547fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff167001000000000000000000000000000000004263ffffffff160217875592505b8482101561357a5773ffffffffffffffffffffffffffffffffffffffff8416613522576040517ff94ebcd10000000000000000000000000000000000000000000000000000000081526004810183905260248101869052604401610891565b6040517f1a76572a000000000000000000000000000000000000000000000000000000008152600481018390526024810186905273ffffffffffffffffffffffffffffffffffffffff85166044820152606401610891565b8483101561368c5760018681015470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff16905f9082906135bd90826148b4565b6135c7878a6148b4565b6135d1919061494b565b6135db91906147c0565b905073ffffffffffffffffffffffffffffffffffffffff8616613634576040517f15279c080000000000000000000000000000000000000000000000000000000081526004810182905260248101869052604401610891565b6040517fd0c8d23a000000000000000000000000000000000000000000000000000000008152600481018290526024810186905273ffffffffffffffffffffffffffffffffffffffff87166044820152606401610891565b61369685846148b4565b86547fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff82161787556040518681529093507f1871cdf8010e63f2eb8384381a68dfa7416dc571a5517e66e88b2d2d0c0a690a9060200160405180910390a1505050505050565b5f61376f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661385c9092919063ffffffff16565b8051909150156108d9578080602001905181019061378d919061461c565b6108d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610891565b5f81831061382757816120a6565b5090919050565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260018301602052604081205415156120a6565b60606107c184845f85855f808673ffffffffffffffffffffffffffffffffffffffff16858760405161388e919061495e565b5f6040518083038185875af1925050503d805f81146138c8576040519150601f19603f3d011682016040523d82523d5f602084013e6138cd565b606091505b50915091506138de878383876138e9565b979650505050505050565b6060831561397e5782515f036139775773ffffffffffffffffffffffffffffffffffffffff85163b613977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610891565b50816107c1565b6107c183838151156139935781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108919190613ad7565b5080546139d390614171565b5f825580601f106139e2575050565b601f0160209004905f5260205f20908101906118389190613a15565b5080545f8255905f5260205f209081019061183891905b5b80821115613a29575f8155600101613a16565b5090565b5f60208284031215613a3d575f80fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146120a6575f80fd5b5f5b83811015613a86578181015183820152602001613a6e565b50505f910152565b5f8151808452613aa5816020860160208601613a6c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081525f6120a66020830184613a8e565b73ffffffffffffffffffffffffffffffffffffffff81168114611838575f80fd5b5f60208284031215613b1a575f80fd5b81356120a681613ae9565b5f60208284031215613b35575f80fd5b813567ffffffffffffffff811115613b4b575f80fd5b820161010081850312156120a6575f80fd5b803567ffffffffffffffff81168114613b74575f80fd5b919050565b5f805f60408486031215613b8b575f80fd5b613b9484613b5d565b9250602084013567ffffffffffffffff80821115613bb0575f80fd5b818601915086601f830112613bc3575f80fd5b813581811115613bd1575f80fd5b876020828501011115613be2575f80fd5b6020830194508093505050509250925092565b5f8083601f840112613c05575f80fd5b50813567ffffffffffffffff811115613c1c575f80fd5b6020830191508360208260051b8501011115613c36575f80fd5b9250929050565b5f805f8060408587031215613c50575f80fd5b843567ffffffffffffffff80821115613c67575f80fd5b613c7388838901613bf5565b90965094506020870135915080821115613c8b575f80fd5b50613c9887828801613bf5565b95989497509550505050565b5f60208284031215613cb4575f80fd5b6120a682613b5d565b5f8083601f840112613ccd575f80fd5b50813567ffffffffffffffff811115613ce4575f80fd5b602083019150836020606083028501011115613c36575f80fd5b5f805f805f8060608789031215613d13575f80fd5b863567ffffffffffffffff80821115613d2a575f80fd5b613d368a838b01613bf5565b90985096506020890135915080821115613d4e575f80fd5b613d5a8a838b01613cbd565b90965094506040890135915080821115613d72575f80fd5b50613d7f89828a01613cbd565b979a9699509497509295939492505050565b5f60208284031215613da1575f80fd5b813567ffffffffffffffff811115613db7575f80fd5b820160a081850312156120a6575f80fd5b602081525f825160406020840152613de36060840182613a8e565b905060208401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08483030160408501526133388282613a8e565b5f60208083016020845280855180835260408601915060408160051b8701019250602087015f5b82811015613e91577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452613e7f858351613a8e565b94509285019290850190600101613e45565b5092979650505050505050565b602080825282518282018190525f9190848201906040850190845b81811015613eeb57835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101613eb9565b50909695505050505050565b602080825282518282018190525f9190848201906040850190845b81811015613eeb57835167ffffffffffffffff1683529284019291840191600101613f12565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b60405160a0810167ffffffffffffffff81118282101715613f8857613f88613f38565b60405290565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613fd557613fd5613f38565b604052919050565b8015158114611838575f80fd5b80356fffffffffffffffffffffffffffffffff81168114613b74575f80fd5b5f60608284031215614019575f80fd5b6040516060810181811067ffffffffffffffff8211171561403c5761403c613f38565b604052905080823561404d81613fdd565b815261405b60208401613fea565b602082015261406c60408401613fea565b60408201525092915050565b5f805f60e0848603121561408a575f80fd5b61409384613b5d565b92506140a28560208601614009565b91506140b18560808601614009565b90509250925092565b5f8083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126140ed575f80fd5b83018035915067ffffffffffffffff821115614107575f80fd5b602001915036819003821315613c36575f80fd5b818382375f9101908152919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60608284031215614167575f80fd5b6120a68383614009565b600181811c9082168061418557607f821691505b6020821081036141bc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b81835281816020850137505f602082840101525f60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b67ffffffffffffffff84168152604060208201525f6133386040830184866141c2565b602081525f6107c16020830184866141c2565b5f82357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffee1833603018112614271575f80fd5b9190910192915050565b5f82601f83011261428a575f80fd5b813567ffffffffffffffff8111156142a4576142a4613f38565b6142d560207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613f8e565b8181528460208386010111156142e9575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6101208236031215614316575f80fd5b61431e613f65565b61432783613b5d565b815260208084013567ffffffffffffffff80821115614344575f80fd5b9085019036601f830112614356575f80fd5b81358181111561436857614368613f38565b8060051b614377858201613f8e565b9182528381018501918581019036841115614390575f80fd5b86860192505b838310156143ca578235858111156143ac575f80fd5b6143ba3689838a010161427b565b8352509186019190860190614396565b80878901525050505060408601359250808311156143e6575f80fd5b50506143f43682860161427b565b6040830152506144073660608501614009565b60608201526144193660c08501614009565b608082015292915050565b601f8211156108d957805f5260205f20601f840160051c810160208510156144495750805b601f840160051c820191505b81811015611820575f8155600101614455565b815167ffffffffffffffff81111561448257614482613f38565b614496816144908454614171565b84614424565b602080601f8311600181146144e8575f84156144b25750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561457c565b5f858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561453457888601518255948401946001909101908401614515565b508582101561457057878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f61010067ffffffffffffffff871683528060208401526145a781840187613a8e565b8551151560408581019190915260208701516fffffffffffffffffffffffffffffffff90811660608701529087015116608085015291506145e59050565b8251151560a083015260208301516fffffffffffffffffffffffffffffffff90811660c084015260408401511660e0830152613338565b5f6020828403121561462c575f80fd5b81516120a681613fdd565b5f60208284031215614647575f80fd5b5051919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b60ff82811682821603908111156106ed576106ed61464e565b600181815b808511156146ed57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156146d3576146d361464e565b808516156146e057918102915b93841c9390800290614699565b509250929050565b5f82614703575060016106ed565b8161470f57505f6106ed565b8160018114614725576002811461472f5761474b565b60019150506106ed565b60ff8411156147405761474061464e565b50506001821b6106ed565b5060208310610133831016604e8410600b841016171561476e575081810a6106ed565b6147788383614694565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156147aa576147aa61464e565b029392505050565b5f6120a660ff8416836146f5565b5f826147f3577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820281158282048414176106ed576106ed61464e565b67ffffffffffffffff83168152604060208201525f6107c16040830184613a8e565b67ffffffffffffffff8416815260e0810161487d60208301858051151582526020808201516fffffffffffffffffffffffffffffffff9081169184019190915260409182015116910152565b82511515608083015260208301516fffffffffffffffffffffffffffffffff90811660a084015260408401511660c08301526107c1565b818103818111156106ed576106ed61464e565b606081016106ed82848051151582526020808201516fffffffffffffffffffffffffffffffff9081169184019190915260409182015116910152565b5f60208284031215614913575f80fd5b81516120a681613ae9565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b808201808211156106ed576106ed61464e565b5f8251614271818460208701613a6c56fea26469706673582212203c4dbe8d4b06b05757176a78e612b4d36cb67c098bd1db70c4c76778092a032064736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a963000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e8100000000000000000000000080226fc0ee2b096224eeac085bb9a8cba1146f7d0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : lockbox (address): 0x0797c6f55f5c9005996A55959A341018cF69A963
Arg [1] : localTokenDecimals (uint8): 6
Arg [2] : allowlist (address[]):
Arg [3] : rmnProxy (address): 0x411dE17f12D1A34ecC7F45f49844626267c75e81
Arg [4] : router (address): 0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000797c6f55f5c9005996a55959a341018cf69a963
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e81
Arg [4] : 00000000000000000000000080226fc0ee2b096224eeac085bb9a8cba1146f7d
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.